muthuk1 commited on
Commit
4adfc03
·
verified ·
1 Parent(s): e56ae2e

🎨 New multi-section home page

Browse files
Files changed (1) hide show
  1. web/src/app/page.tsx +14 -4
web/src/app/page.tsx CHANGED
@@ -1,14 +1,24 @@
1
  import { Navbar } from "@/components/Navbar";
2
- import { Hero } from "@/components/Hero";
3
- import { DashboardTabs } from "@/components/DashboardTabs";
 
 
 
 
 
4
  import { Footer } from "@/components/Footer";
5
 
6
  export default function Home() {
7
  return (
8
  <main>
9
  <Navbar />
10
- <Hero />
11
- <DashboardTabs />
 
 
 
 
 
12
  <Footer />
13
  </main>
14
  );
 
1
  import { Navbar } from "@/components/Navbar";
2
+ import { HeroSection } from "@/components/home/HeroSection";
3
+ import { StatsBar } from "@/components/home/StatsBar";
4
+ import { FeaturesSection } from "@/components/home/FeaturesSection";
5
+ import { HowItWorks } from "@/components/home/HowItWorks";
6
+ import { BentoShowcase } from "@/components/home/BentoShowcase";
7
+ import { TestimonialsSection } from "@/components/home/TestimonialsSection";
8
+ import { CTASection } from "@/components/home/CTASection";
9
  import { Footer } from "@/components/Footer";
10
 
11
  export default function Home() {
12
  return (
13
  <main>
14
  <Navbar />
15
+ <HeroSection />
16
+ <StatsBar />
17
+ <FeaturesSection />
18
+ <HowItWorks />
19
+ <BentoShowcase />
20
+ <TestimonialsSection />
21
+ <CTASection />
22
  <Footer />
23
  </main>
24
  );