From 71d23e6abf2fcd8e632f7d08fb82f68b45d7e179 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 3 Apr 2026 23:49:14 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 252 +++++++++++++++++++++-------------------------- 1 file changed, 114 insertions(+), 138 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4886a9d..e5e6d0c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,161 +2,137 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { Droplets, Flame, Shield, Wrench } from "lucide-react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Droplets, Flame, Shield, Wrench, ChevronRight } from "lucide-react"; export default function LandingPage() { + const navItems = [ + { name: "Home", id: "hero" }, + { name: "About", id: "about" }, + { name: "Services", id: "features" }, + { name: "Reviews", id: "testimonials" }, + { name: "Contact", id: "contact" }, + ]; + return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -} +} \ No newline at end of file -- 2.49.1