From 0b2a36036be2843600b690dad1faf1c2666e5a4c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 00:40:36 +0000 Subject: [PATCH 1/2] Add src/app/location/page.tsx --- src/app/location/page.tsx | 59 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/app/location/page.tsx diff --git a/src/app/location/page.tsx b/src/app/location/page.tsx new file mode 100644 index 0000000..3a51ca1 --- /dev/null +++ b/src/app/location/page.tsx @@ -0,0 +1,59 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function LocationPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 81b586970836a88a96ad24d62c9847dec19b0f52 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 00:40:36 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cc6d7c2..c00e94c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,7 +35,7 @@ export default function LandingPage() { { name: "Story", id: "#story"}, { - name: "Find Us", id: "#location"}, + name: "Location", id: "/location"}, ]} brandName="Chouchou Crepes" /> @@ -75,7 +75,7 @@ export default function LandingPage() { { text: "View Our Menu", href: "#menu"}, { - text: "Find Us", href: "#location"}, + text: "Find Us", href: "/location"}, ]} avatars={[ { @@ -204,17 +204,6 @@ export default function LandingPage() { /> -
- -
-
); -} \ No newline at end of file +} -- 2.49.1