From 1028f0aea334d6f7660a5d8bea0d6d35af792e6e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 17:15:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 481 +++++++++++------------------------------------ 1 file changed, 112 insertions(+), 369 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ee24477..ecb495e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,387 +1,130 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import FooterCard from '@/components/sections/footer/FooterCard'; -import HeroCentered from '@/components/sections/hero/HeroCentered'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import { Award, Building, CheckCircle, Heart, Instagram, Leaf, MessageCircle, ShieldCheck, Smile, Star, Target, Users } from "lucide-react"; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Award, Heart, Star, Users, CheckCircle, Smile, Building, Leaf, Target, ShieldCheck, Instagram, MessageCircle } from 'lucide-react'; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }]; + +export default function Page() { return ( - - - + + +
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- - -
+
); -} +} \ No newline at end of file -- 2.49.1