Spaces:
Sleeping
Sleeping
Upload pages/index.js with huggingface_hub
Browse files- pages/index.js +17 -0
pages/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Hero from '../components/Hero';
|
| 2 |
+
import Services from '../components/Services';
|
| 3 |
+
import CompetitiveAdvantage from '../components/CompetitiveAdvantage';
|
| 4 |
+
import TechnicalDemo from '../components/TechnicalDemo';
|
| 5 |
+
import Contact from '../components/Contact';
|
| 6 |
+
|
| 7 |
+
export default function Home() {
|
| 8 |
+
return (
|
| 9 |
+
<>
|
| 10 |
+
<Hero />
|
| 11 |
+
<Services />
|
| 12 |
+
<CompetitiveAdvantage />
|
| 13 |
+
<TechnicalDemo />
|
| 14 |
+
<Contact />
|
| 15 |
+
</>
|
| 16 |
+
);
|
| 17 |
+
}
|