Spaces:
Build error
Build error
Upload pages/index.js with huggingface_hub
Browse files- pages/index.js +54 -0
pages/index.js
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Navbar from '../components/Navbar'
|
| 2 |
+
import Hero from '../components/Hero'
|
| 3 |
+
import Features from '../components/Features'
|
| 4 |
+
import Footer from '../components/Footer'
|
| 5 |
+
|
| 6 |
+
export default function Home() {
|
| 7 |
+
return (
|
| 8 |
+
<div className="min-h-screen bg-brand-dark text-white selection:bg-brand-accent selection:text-white">
|
| 9 |
+
<Navbar />
|
| 10 |
+
<main>
|
| 11 |
+
<Hero />
|
| 12 |
+
<Features />
|
| 13 |
+
{/* Pricing Section Placeholder */}
|
| 14 |
+
<section className="py-24 border-t border-gray-800 bg-brand-gray">
|
| 15 |
+
<div className="max-w-7xl mx-auto px-4 text-center">
|
| 16 |
+
<h2 className="text-3xl font-bold mb-6">Simple Pricing</h2>
|
| 17 |
+
<div className="grid md:grid-cols-3 gap-6 max-w-4xl mx-auto">
|
| 18 |
+
<div className="glass-panel p-8 rounded-xl text-left">
|
| 19 |
+
<h3 className="text-lg font-bold text-gray-300">Hobby</h3>
|
| 20 |
+
<div className="text-3xl font-bold text-white mt-2">$0<span className="text-sm text-gray-500">/mo</span></div>
|
| 21 |
+
<ul className="mt-6 space-y-3 text-sm text-gray-400">
|
| 22 |
+
<li>β 5 Projects</li>
|
| 23 |
+
<li>β Community Support</li>
|
| 24 |
+
<li>β Basic AI Models</li>
|
| 25 |
+
</ul>
|
| 26 |
+
</div>
|
| 27 |
+
<div className="glass-panel p-8 rounded-xl text-left border-brand-accent/30 relative overflow-hidden">
|
| 28 |
+
<div className="absolute top-0 right-0 bg-brand-accent text-xs px-2 py-1 text-white font-bold rounded-bl">POPULAR</div>
|
| 29 |
+
<h3 className="text-lg font-bold text-white">Pro</h3>
|
| 30 |
+
<div className="text-3xl font-bold text-white mt-2">$20<span className="text-sm text-gray-500">/mo</span></div>
|
| 31 |
+
<ul className="mt-6 space-y-3 text-sm text-gray-300">
|
| 32 |
+
<li>β Unlimited Projects</li>
|
| 33 |
+
<li>β Priority Support</li>
|
| 34 |
+
<li>β Advanced AI Models</li>
|
| 35 |
+
<li>β Team Collaboration</li>
|
| 36 |
+
</ul>
|
| 37 |
+
</div>
|
| 38 |
+
<div className="glass-panel p-8 rounded-xl text-left">
|
| 39 |
+
<h3 className="text-lg font-bold text-gray-300">Enterprise</h3>
|
| 40 |
+
<div className="text-3xl font-bold text-white mt-2">Custom</div>
|
| 41 |
+
<ul className="mt-6 space-y-3 text-sm text-gray-400">
|
| 42 |
+
<li>β SSO & Audit Logs</li>
|
| 43 |
+
<li>β Dedicated Support</li>
|
| 44 |
+
<li>β Custom Infrastructure</li>
|
| 45 |
+
</ul>
|
| 46 |
+
</div>
|
| 47 |
+
</div>
|
| 48 |
+
</div>
|
| 49 |
+
</section>
|
| 50 |
+
</main>
|
| 51 |
+
<Footer />
|
| 52 |
+
</div>
|
| 53 |
+
)
|
| 54 |
+
}
|