From 1e9faef12bb89756f50fa462ce7ccc8a785c94b8 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 05:30:03 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 319 +++++++++++++++++++---------------------------- 1 file changed, 129 insertions(+), 190 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6c1f20e..970b051 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,8 +1,4 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import { Coffee, Wifi, Award } from "lucide-react"; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; @@ -12,192 +8,135 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia import TeamCardFive from '@/components/sections/team/TeamCardFive'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Coffee, Wifi, Award } from 'lucide-react'; + +export default function Page() { + const navItems = [ + { name: 'Menu', id: '#menu' }, + { name: 'About', id: '#about' }, + { name: 'Visit', id: '#visit' } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
); -} \ No newline at end of file +}