From abb645f45069b36999fe6630726df08b3e8029a6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 20 May 2026 19:03:34 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 159 ++++++++--------------------------------- 1 file changed, 28 insertions(+), 131 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index bdf819f..e79619d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,140 +2,37 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import SplitAbout from '@/components/sections/about/SplitAbout'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import TextAbout from '@/components/sections/about/TextAbout'; -export default function LandingPage() { +export default function AboutPage() { return ( - + - - -
- -
- -
- -
- - + +
+ +
+
); -} +} \ No newline at end of file -- 2.49.1 From 90f5e15ed8e25c12696b209d85041f89b70c2473 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 20 May 2026 19:03:35 +0000 Subject: [PATCH 2/4] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 178 ++++++++---------------------------------- 1 file changed, 32 insertions(+), 146 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 0347d58..5d537c3 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -2,155 +2,41 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; -import SplitAbout from '@/components/sections/about/SplitAbout'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; -export default function LandingPage() { +export default function MenuPage() { return ( - + - - -
- -
- -
- -
- - + +
+ +
+
); -} +} \ No newline at end of file -- 2.49.1 From d80ae04207ab707dda616e763fff207d15650bfb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 20 May 2026 19:03:35 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 332 ++++++++++------------------------------------- 1 file changed, 71 insertions(+), 261 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4c5ee69..5d089fc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import TextAbout from '@/components/sections/about/TextAbout'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; export default function LandingPage() { return ( @@ -25,266 +25,76 @@ export default function LandingPage() { headingFontWeight="medium" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -} +} \ No newline at end of file -- 2.49.1 From 1a3ff3d05488ed0a7d6021e529fec08936c6d290 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 20 May 2026 19:03:36 +0000 Subject: [PATCH 4/4] Update src/app/reservations/page.tsx --- src/app/reservations/page.tsx | 60 ++++++++++------------------------- 1 file changed, 16 insertions(+), 44 deletions(-) diff --git a/src/app/reservations/page.tsx b/src/app/reservations/page.tsx index 7285303..6a6b40d 100644 --- a/src/app/reservations/page.tsx +++ b/src/app/reservations/page.tsx @@ -2,27 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; -import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; export default function ReservationsPage() { return ( - + - -
- +
- -
- +
); -} +} \ No newline at end of file -- 2.49.1