Spaces:
Build error
Build error
| import Head from 'next/head'; | |
| import Navbar from '@/components/Navbar'; | |
| import Hero from '@/components/Hero'; | |
| import RobotShowcase from '@/components/RobotShowcase'; | |
| import ContactForm from '@/components/ContactForm'; | |
| import Footer from '@/components/Footer'; | |
| export default function Home() { | |
| return ( | |
| <> | |
| <Head> | |
| <title>Nexus Robotics | Future of AI</title> | |
| <meta name="description" content="Next generation humanoid robotics for home and industry." /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <link rel="icon" href="/favicon.ico" /> | |
| </Head> | |
| <main className="min-h-screen bg-dark text-white selection:bg-primary selection:text-dark"> | |
| <Navbar /> | |
| <Hero /> | |
| <RobotShowcase /> | |
| <ContactForm /> | |
| <Footer /> | |
| </main> | |
| </> | |
| ); | |
| } |