From 7e43ca6a7617701f583f4b2d56f76def844d6171 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 15:57:49 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 457 +++++++++++++---------------------------------- 1 file changed, 122 insertions(+), 335 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 69af8e3..2b4230d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,343 +1,130 @@ -"use client"; - +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import { Award, CheckCircle, Star } from "lucide-react"; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { CheckCircle, Star, Award } from 'lucide-react'; -export default function LandingPage() { +export default function HomePage() { + const navItems = [{ name: "Home", id: "/" }]; return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1