From 1e92c9b5171ef7d18cf3c9cc9a4127d950ce80e6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 21:24:16 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 338 +++++++++++++++++------------------------------ 1 file changed, 123 insertions(+), 215 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a86d99..d9175ac 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,230 +1,138 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import HeroSplit from '@/components/sections/hero/HeroSplit'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import { Briefcase, Building, CheckCircle, FileText, Headphones, LineChart, MessageSquare, PieChart } from "lucide-react"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { CheckCircle, Briefcase, Building, PieChart, MessageSquare, FileText, LineChart, Headphones } from "lucide-react"; +import Link from "next/link"; + +export default function Page() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "#services" }, + { name: "Contact", id: "#contact" } + ]; -export default function LandingPage() { return ( - - - + + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- -
+
); -} \ No newline at end of file +}