Add src/app/reservations/page.tsx

This commit is contained in:
2026-04-15 00:48:53 +00:00
parent f6790a6d35
commit ac4d21ec00

View File

@@ -0,0 +1,28 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactCenter from '@/components/sections/contact/ContactCenter';
export default function ReservationsPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reservations", id: "/reservations" },
]}
brandName="Lumière Dining"
button={{ text: "Book Table", href: "/reservations" }}
/>
<ContactCenter
tag="Reservations"
title="Book Your Table"
description="Please select your preferred date and time to reserve a table at our restaurant."
buttonText="Confirm Reservation"
/>
</ThemeProvider>
);
}