🎨 New multi-section home page
Browse files- 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 {
|
| 3 |
-
import {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
import { Footer } from "@/components/Footer";
|
| 5 |
|
| 6 |
export default function Home() {
|
| 7 |
return (
|
| 8 |
<main>
|
| 9 |
<Navbar />
|
| 10 |
-
<
|
| 11 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
);
|