From 31eac8b86dbe5a09bdbc1b71b297b56a468fa948 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 11:52:49 +0000 Subject: [PATCH] Add src/app/reservation/page.tsx --- src/app/reservation/page.tsx | 98 ++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 src/app/reservation/page.tsx diff --git a/src/app/reservation/page.tsx b/src/app/reservation/page.tsx new file mode 100644 index 0000000..f04ce63 --- /dev/null +++ b/src/app/reservation/page.tsx @@ -0,0 +1,98 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import ContactText from '@/components/sections/contact/ContactText'; + +export default function ReservationPage() { + const navItems = [ + { name: "Home", id: "#home" }, + { name: "About", id: "#about" }, + { name: "Features", id: "#features" }, + { name: "Solutions", id: "#solutions" }, + { name: "Reservation", id: "/reservation" }, + { name: "Pricing", id: "#pricing" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "Contact", id: "#contact" }, + ]; + + const footerColumns = [ + { + title: "Platform", items: [ + { label: "Reservation Management", href: "/reservation" }, + { label: "Online Ordering", href: "#features" }, + { label: "Loyalty Programs", href: "#features" }, + { label: "Admin Analytics", href: "#features" }, + ], + }, + { + title: "Solutions", items: [ + { label: "Fine Dining", href: "#solutions" }, + { label: "Hotels & Resorts", href: "#solutions" }, + { label: "Cafés & Casual", href: "#solutions" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "#about" }, + { label: "Pricing", href: "#pricing" }, + { label: "Testimonials", href: "#testimonials" }, + { label: "Contact", href: "#contact" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Cookie Policy", href: "#" }, + ], + }, + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +}