Spaces:
Build error
Build error
Upload pages/index.js with huggingface_hub
Browse files- pages/index.js +23 -0
pages/index.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Hero from '../components/Hero';
|
| 2 |
+
import Features from '../components/Features';
|
| 3 |
+
import InteractiveDemo from '../components/InteractiveDemo';
|
| 4 |
+
import Stats from '../components/Stats';
|
| 5 |
+
import Pricing from '../components/Pricing';
|
| 6 |
+
import Newsletter from '../components/Newsletter';
|
| 7 |
+
import Footer from '../components/Footer';
|
| 8 |
+
|
| 9 |
+
export default function Home() {
|
| 10 |
+
return (
|
| 11 |
+
<div className="min-h-screen bg-slate-900 text-white">
|
| 12 |
+
<main>
|
| 13 |
+
<Hero />
|
| 14 |
+
<Features />
|
| 15 |
+
<InteractiveDemo />
|
| 16 |
+
<Stats />
|
| 17 |
+
<Pricing />
|
| 18 |
+
<Newsletter />
|
| 19 |
+
</main>
|
| 20 |
+
<Footer />
|
| 21 |
+
</div>
|
| 22 |
+
);
|
| 23 |
+
}
|