From f3d811c19619dbbb50bde51b10171415c991cf0d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 12:43:28 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 242 ++++++++++++++++++----------------------------- 1 file changed, 94 insertions(+), 148 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d19d1dc..8495569 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,6 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; @@ -10,154 +9,101 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar import MediaAbout from '@/components/sections/about/MediaAbout'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Utensils, Fish, Soup, Camera, Heart, ChefHat } from "lucide-react"; +import { Zap, Shield, Star, Heart, Smile, Users } from 'lucide-react'; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" } +]; + +export default function Page() { return ( - - - - -
- -
- -
- -
- - - -
- -
- - - -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+ +
+ +
+ +
+ +
+
+ +
+
); } \ No newline at end of file