app/pages.jsx
1import Navbar from "@/components/Navbar";
2import CardSection from "@/components/CardSection";
3import FAQ from "@/components/FAQ";
4import Footer from "@/components/Footer";
5import Stats from "@/components/Stats";
6
7export default function Home() {
8 return (
9 <>
10 <Navbar />
11 <main>
12 <Stats />
13 <FAQ />
14 <CardSection />
15 <Footer />
16 </main>
17 </>
18 );
19}