From 7b7fe30a89521d8c5777dd8ad39b559913eac2d8 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 13:28:53 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 147 ++++++++++++++++++----------------------------- 1 file changed, 57 insertions(+), 90 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 162a303..a968eb3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import { Heart, Activity, BrainCircuit } from "lucide-react"; export default function LandingPage() { return ( @@ -32,6 +33,7 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Features", id: "features" }, { name: "Testimonials", id: "testimonials" }, + { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" } ]} brandName="VitaHealth" @@ -39,131 +41,96 @@ export default function LandingPage() {
-
-
-
-
-
-
); -} +} \ No newline at end of file -- 2.49.1