Add src/app/chefs-table/page.tsx

This commit is contained in:
2026-05-12 00:48:34 +00:00
parent 65da71c761
commit 1943980eb0

View 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>
);
}