From b974bb4573ef0322d0009c7527ef8771911cc263 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 09:32:13 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 351 ++++------------------------------------------- 1 file changed, 30 insertions(+), 321 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 640b7cf..d0f44fa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,326 +1,35 @@ -"use client"; - +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import { Award, FileText, Home } from "lucide-react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]; + +export default function Home() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1