BSJ2004's picture
Upload pages/index.js with huggingface_hub
aa6b87f verified
raw
history blame contribute delete
619 Bytes
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>
);
}