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" 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