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