Spaces:
Build error
Build error
| import Hero from '../components/Hero'; | |
| import Features from '../components/Features'; | |
| import InteractiveDemo from '../components/InteractiveDemo'; | |
| import Stats from '../components/Stats'; | |
| import Pricing from '../components/Pricing'; | |
| import Newsletter from '../components/Newsletter'; | |
| import Footer from '../components/Footer'; | |
| export default function Home() { | |
| return ( | |
| <div className="min-h-screen bg-slate-900 text-white"> | |
| <main> | |
| <Hero /> | |
| <Features /> | |
| <InteractiveDemo /> | |
| <Stats /> | |
| <Pricing /> | |
| <Newsletter /> | |
| </main> | |
| <Footer /> | |
| </div> | |
| ); | |
| } |