ColdSlim commited on
Commit
ec92847
·
verified ·
1 Parent(s): 5f8af39

Upload pages/index.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/index.js +27 -0
pages/index.js ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import Head from 'next/head';
2
+ import Navbar from '@/components/Navbar';
3
+ import Hero from '@/components/Hero';
4
+ import RobotShowcase from '@/components/RobotShowcase';
5
+ import ContactForm from '@/components/ContactForm';
6
+ import Footer from '@/components/Footer';
7
+
8
+ export default function Home() {
9
+ return (
10
+ <>
11
+ <Head>
12
+ <title>Nexus Robotics | Future of AI</title>
13
+ <meta name="description" content="Next generation humanoid robotics for home and industry." />
14
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
15
+ <link rel="icon" href="/favicon.ico" />
16
+ </Head>
17
+
18
+ <main className="min-h-screen bg-dark text-white selection:bg-primary selection:text-dark">
19
+ <Navbar />
20
+ <Hero />
21
+ <RobotShowcase />
22
+ <ContactForm />
23
+ <Footer />
24
+ </main>
25
+ </>
26
+ );
27
+ }