// SufiHost Ultra Premium Theme (Next.js + Tailwind + Framer Motion + Three.js Ready) import { useEffect, useRef, useState } from "react"; import { motion } from "framer-motion"; import * as THREE from "three"; export default function SufiHost() { const mountRef = useRef(null); const [open, setOpen] = useState(null); // 3D Background (Three.js) useEffect(() => { const scene = new THREE.Scene(); const camera = new THREE.PerspectiveCamera(75, window.innerWidth/window.innerHeight, 0.1, 1000); const renderer = new THREE.WebGLRenderer({ alpha: true }); renderer.setSize(window.innerWidth, window.innerHeight); mountRef.current.appendChild(renderer.domElement); const geometry = new THREE.TorusKnotGeometry(10, 3, 100, 16); const material = new THREE.MeshBasicMaterial({ color: 0xff00cc, wireframe: true }); const knot = new THREE.Mesh(geometry, material); scene.add(knot); camera.position.z = 30; const animate = () => { requestAnimationFrame(animate); knot.rotation.x += 0.01; knot.rotation.y += 0.01; renderer.render(scene, camera); }; animate(); }, []); const faq = [ { q: "How do I get started?", a: "Choose a plan and sign up." }, { q: "Do you offer backups?", a: "Yes, daily backups included." }, { q: "Is support available?", a: "24/7 support available." } ]; return (
{/* 3D Background */}
{/* Header */}

SufiHost

{/* Hero */}

High Performance Hosting

Fast • Secure • Global Servers

{/* Server Locations */}
🇩🇪 Germany
🇳🇱 Netherlands
{/* Pricing */}
{["Shared","VPS","Dedicated"].map((plan,i)=>(

{plan} Hosting

${i===0?"0.99":i===1?"4.99":"49"}/mo

))}
{/* Testimonials Slider */}
{[1,2,3,4].map(i=>(
⭐⭐⭐⭐⭐

Excellent hosting service!

))}
{/* FAQ */}

FAQ

{faq.map((item,i)=>(
{open===i &&
{item.a}
}
))}
{/* Payments (SVG style text) */}

Payments

💳 Visa 💳 MasterCard 🅿️ PayPal ₿ Crypto
{/* Footer */}
© 2026 SufiHost - All rights reserved
); } /* STEP BY STEP SETUP: 1. Install Node.js 2. npx create-next-app sufi-host 3. cd sufi-host 4. npm install tailwindcss framer-motion three 5. Replace page.jsx with this code 6. npm run dev WHMCS Integration: - Use WHMCS client area link in Buy buttons - Example: href="https://yourdomain.com/whmcs/cart.php" */