Update src/app/reservations/page.tsx

This commit is contained in:
2026-05-12 20:04:30 +00:00
parent a71f113fbc
commit 0ea4114fce

View File

@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Reservations",
id: "/reservations",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Reservations", id: "/reservations" },
{ name: "Contact", id: "/contact" },
]}
brandName="THE WISEMEN"
button={{ text: "Reserve", href: "/reservations" }}
/>
</div>
@@ -52,16 +41,8 @@ export default function LandingPage() {
title="Book Your Table"
description="Secure your spot at The Wisemen."
inputs={[
{
name: "name",
type: "text",
placeholder: "Name",
},
{
name: "date",
type: "date",
placeholder: "Date",
},
{ name: "name", type: "text", placeholder: "Name" },
{ name: "date", type: "date", placeholder: "Date" },
]}
imageSrc="http://img.b2bpic.net/free-photo/stylish-room-with-blurred-effect_1203-554.jpg"
/>
@@ -76,20 +57,8 @@ export default function LandingPage() {
title="Private Events"
description="Elegant spaces for your milestone celebrations."
features={[
{
title: "Ballroom",
description: "Grand space for large gatherings.",
imageSrc: "http://img.b2bpic.net/free-photo/luxury-restaurant-grill-bar-interior-with-chandeliers-furniture_114579-2341.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683401.jpg",
buttonText: "Book Now",
},
{
title: "Lounge",
description: "Cozy space for intimate groups.",
imageSrc: "http://img.b2bpic.net/free-photo/luxurious-hotel-bar-lounge_23-2151933842.jpg",
titleImageSrc: "http://img.b2bpic.net/free-photo/classic-old-fashioned-library-space-with-elegant-wooden-interiors_482257-125296.jpg",
buttonText: "Book Now",
},
{ title: "Ballroom", description: "Grand space for large gatherings.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-restaurant-grill-bar-interior-with-chandeliers-furniture_114579-2341.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683401.jpg", buttonText: "Book Now" },
{ title: "Lounge", description: "Cozy space for intimate groups.", imageSrc: "http://img.b2bpic.net/free-photo/luxurious-hotel-bar-lounge_23-2151933842.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/classic-old-fashioned-library-space-with-elegant-wooden-interiors_482257-125296.jpg", buttonText: "Book Now" },
]}
/>
</div>
@@ -98,28 +67,8 @@ export default function LandingPage() {
<FooterBaseCard
logoText="THE WISEMEN"
columns={[
{
title: "Navigate",
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
],
},
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }] },
]}
/>
</div>