Add src/app/reservations/page.tsx
This commit is contained in:
28
src/app/reservations/page.tsx
Normal file
28
src/app/reservations/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user