File size: 809 Bytes
12a97f9
4adfc03
 
 
 
 
 
 
12a97f9
 
 
 
 
 
4adfc03
 
 
 
 
 
 
12a97f9
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { Navbar } from "@/components/Navbar";
import { HeroSection } from "@/components/home/HeroSection";
import { StatsBar } from "@/components/home/StatsBar";
import { FeaturesSection } from "@/components/home/FeaturesSection";
import { HowItWorks } from "@/components/home/HowItWorks";
import { BentoShowcase } from "@/components/home/BentoShowcase";
import { TestimonialsSection } from "@/components/home/TestimonialsSection";
import { CTASection } from "@/components/home/CTASection";
import { Footer } from "@/components/Footer";

export default function Home() {
  return (
    <main>
      <Navbar />
      <HeroSection />
      <StatsBar />
      <FeaturesSection />
      <HowItWorks />
      <BentoShowcase />
      <TestimonialsSection />
      <CTASection />
      <Footer />
    </main>
  );
}