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