Spaces:
Sleeping
Sleeping
Upload pages/index.js with huggingface_hub
Browse files- pages/index.js +32 -0
pages/index.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Head from 'next/head';
|
| 2 |
+
import Header from '../components/Header';
|
| 3 |
+
import Hero from '../components/Hero';
|
| 4 |
+
import Features from '../components/Features';
|
| 5 |
+
import Specifications from '../components/Specifications';
|
| 6 |
+
import Applications from '../components/Applications';
|
| 7 |
+
import CTA from '../components/CTA';
|
| 8 |
+
import Footer from '../components/Footer';
|
| 9 |
+
|
| 10 |
+
export default function Home() {
|
| 11 |
+
return (
|
| 12 |
+
<>
|
| 13 |
+
<Head>
|
| 14 |
+
<title>Reachy Mini - Compact Robotic Arm</title>
|
| 15 |
+
<meta name="description" content="Reachy Mini - A compact, affordable robotic arm for education and research" />
|
| 16 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 17 |
+
<link rel="icon" href="/favicon.ico" />
|
| 18 |
+
</Head>
|
| 19 |
+
|
| 20 |
+
<main>
|
| 21 |
+
<Header />
|
| 22 |
+
<Hero />
|
| 23 |
+
<Features />
|
| 24 |
+
<Specifications />
|
| 25 |
+
<Applications />
|
| 26 |
+
<CTA />
|
| 27 |
+
</main>
|
| 28 |
+
|
| 29 |
+
<Footer />
|
| 30 |
+
</>
|
| 31 |
+
);
|
| 32 |
+
}
|