Update src/app/reservations/page.tsx

This commit is contained in:
2026-05-11 17:23:17 +00:00
parent a16152ee9c
commit fbc7ead56e

View File

@@ -2,11 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Instagram, Facebook } from "lucide-react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function LandingPage() {
export default function ReservationsPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -24,30 +25,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Reservations",
id: "/reservations",
},
{
name: "Events",
id: "/events",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Reservations", id: "/reservations" },
{ name: "Events", id: "/events" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="MASSILIA"
/>
@@ -56,18 +39,11 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Reservations"
title="Secure Your Spot"
description="Book a table and join us for an exquisite dining experience."
buttons={[
{
text: "Book via OpenTable",
href: "#",
},
]}
buttons={[{ text: "Book via OpenTable", href: "#" }]}
/>
</div>
@@ -76,18 +52,12 @@ export default function LandingPage() {
logoText="MASSILIA"
copyrightText="© 2025 Massilia DTLA. All rights reserved."
socialLinks={[
{
href: "https://instagram.com",
ariaLabel: "Instagram",
},
{
href: "https://facebook.com",
ariaLabel: "Facebook",
},
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Instagram" },
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Facebook" },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}