From eb2c7b390b29579f337ae4bd092162d07f594927 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 19:20:19 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 237 ++++++++++++++++------------------------------- 1 file changed, 82 insertions(+), 155 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 86df6ee..b8a8ae2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,165 +1,92 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FeatureBento from '@/components/sections/feature/FeatureBento'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; -import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; +import MediaAbout from '@/components/sections/about/MediaAbout'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Shield, Wind, Flame, Home } from "lucide-react"; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Zap, Shield, ArrowRight, Star } from 'lucide-react'; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, +]; + +export default function Page() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); } -- 2.49.1