From 18c8e444d81e36b56ca9f3b058952682560589d2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 11:12:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 147 ++++++++++++++++++++++------------------------- 1 file changed, 69 insertions(+), 78 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f9dcf65..ba330dd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,19 +2,19 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import { ArrowRight } from "lucide-react"; -import HeroSplit from '@/components/sections/hero/HeroSplit'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import { ArrowRight, CheckCircle, HelpCircle } from "lucide-react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterCard from '@/components/sections/footer/FooterCard'; -import LegalSection from '@/components/legal/LegalSection'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import LegalSection from '@/components/legal/LegalSection'; export default function LandingPage() { return ( @@ -36,7 +36,7 @@ export default function LandingPage() { navItems={[ { name: "Shop", id: "products" }, { name: "About", id: "about" }, - { name: "Reviews", id: "testimonials" }, + { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" }, ]} brandName="KOOLKY" @@ -45,124 +45,115 @@ export default function LandingPage() {
-
- +
+
-
- +
+
- +
+ ); -- 2.49.1