diff --git a/src/app/reserve-table/page.tsx b/src/app/reserve-table/page.tsx new file mode 100644 index 0000000..e525b16 --- /dev/null +++ b/src/app/reserve-table/page.tsx @@ -0,0 +1,85 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Calendar, MapPin, Phone } from 'lucide-react'; + +export default function ReserveTablePage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file