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 +}