From 8368a3b633de07ce4826352e6c8d88a40c1c6249 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 23:55:05 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2428f58..3afa5eb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,7 +35,7 @@ export default function LandingPage() { { name: "Menu", id: "products" }, { name: "Contact", id: "contact" } ]} - button={{ text: "Reserve Table", href: "#contact" }} + button={{ text: "Reserve Table", href: "/reserve-table" }} animateOnLoad={true} /> @@ -49,7 +49,7 @@ export default function LandingPage() { tagIcon={Utensils} tagAnimation="slide-up" buttons={[ - { text: "Reserve Now", href: "#contact" }, + { text: "Reserve Now", href: "/reserve-table" }, { text: "View Menu", href: "#products" } ]} buttonAnimation="slide-up" @@ -77,7 +77,7 @@ export default function LandingPage() { tagIcon={Flame} tagAnimation="slide-up" buttons={[ - { text: "Full Menu", href: "#contact" } + { text: "Full Menu", href: "/reserve-table" } ]} buttonAnimation="slide-up" textboxLayout="default" -- 2.49.1 From 4ebde6da90fc5ac05b5b9830cc52c53a7d003d54 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 23:55:06 +0000 Subject: [PATCH 2/2] Add src/app/reserve-table/page.tsx --- src/app/reserve-table/page.tsx | 85 ++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 src/app/reserve-table/page.tsx diff --git a/src/app/reserve-table/page.tsx b/src/app/reserve-table/page.tsx new file mode 100644 index 0000000..e525b16 --- /dev/null +++ b/src/app/reserve-table/page.tsx @@ -0,0 +1,85 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Calendar, MapPin, Phone } from 'lucide-react'; + +export default function ReserveTablePage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1