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 +}