"use client"; import dynamic from 'next/dynamic'; import { Suspense } from 'react'; import { ArrowRight } from 'lucide-react'; import Link from 'next/link'; import { Button } from '@/components/ui/button'; // Dynamically import the 3D component to avoid SSR issues const HeroModel = dynamic(() => import('@/components/3d/HeroModel'), { ssr: false, loading: () =>
Loading 3D model...
}); export default function HeroSection() { return (

Streamlined E-commerce Management

Ember provides everything you need to manage your e-commerce business efficiently in one place, with secure cryptocurrency payments.

{/* 3D Model */}
}>
); }