From 62704ce104a4e5dab8458675378df111ef531b94 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 08:26:02 +0000 Subject: [PATCH 1/2] Add src/app/experience/page.tsx --- src/app/experience/page.tsx | 88 +++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 src/app/experience/page.tsx diff --git a/src/app/experience/page.tsx b/src/app/experience/page.tsx new file mode 100644 index 0000000..9da0af0 --- /dev/null +++ b/src/app/experience/page.tsx @@ -0,0 +1,88 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; + +export default function ExperiencePage() { + const globalNavItems = [ + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "Experience", id: "/experience" }, + { name: "Journey", id: "/coffee-journey" }, + { name: "Reviews", id: "/reviews" }, + { name: "Gallery", id: "/gallery" } + ]; + + const globalFooterColumns = [ + { + title: "Explore", items: [ + { label: "Home", href: "/" }, + { label: "Menu", href: "/menu" }, + { label: "Experience", href: "/experience" }, + { label: "Coffee Journey", href: "/coffee-journey" } + ] + }, + { + title: "Connect", items: [ + { label: "Reviews", href: "/reviews" }, + { label: "Gallery", href: "/gallery" }, + { label: "Reserve", href: "/contact" }, + { label: "WhatsApp", href: "https://wa.me/916303572811" } + ] + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ] + } + ]; + + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1 From fe02d427932a38fc7a5991870bb6324fab8af698 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 08:26:02 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 346 ++++++++++++----------------------------------- 1 file changed, 84 insertions(+), 262 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 200cc52..7421d85 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,274 +13,96 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; export default function LandingPage() { + const globalNavItems = [ + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "Experience", id: "/experience" }, + { name: "Journey", id: "/coffee-journey" }, + { name: "Reviews", id: "/reviews" }, + { name: "Gallery", id: "/gallery" } + ]; + + const globalFooterColumns = [ + { + title: "Explore", items: [ + { label: "Home", href: "/" }, + { label: "Menu", href: "/menu" }, + { label: "Experience", href: "/experience" }, + { label: "Coffee Journey", href: "/coffee-journey" } + ] + }, + { + title: "Connect", items: [ + { label: "Reviews", href: "/reviews" }, + { label: "Gallery", href: "/gallery" }, + { label: "Reserve", href: "/contact" }, + { label: "WhatsApp", href: "https://wa.me/916303572811" } + ] + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ] + } + ]; + return ( - + -
- -
+
+ +
-
- -
- -
- -
- - - -
- -
- -
- -
- - - -
- -
- - +
); -- 2.49.1