Add src/app/chefs-table/page.tsx
This commit is contained in:
25
src/app/chefs-table/page.tsx
Normal file
25
src/app/chefs-table/page.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function ChefsTablePage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarStyleCentered
|
||||
brandName="Kuro Gyu"
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "Chef's Table", id: "/chefs-table" }, { name: "Private Dining", id: "/private-dining" }, { name: "Private Hire", id: "/private-hire" }]}
|
||||
/>
|
||||
<ContactSplit
|
||||
tag="Experience"
|
||||
title="Chef's Table"
|
||||
description="An exclusive, intimate culinary journey where our executive chef prepares a bespoke multi-course tasting menu right before your eyes. Perfect for true connoisseurs."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterBase logoText="Kuro Gyu" columns={[]} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user