ColdSlim's picture
Upload pages/index.js with huggingface_hub
ec92847 verified
raw
history blame contribute delete
854 Bytes
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>
</>
);
}