Update src/app/menu/page.tsx

This commit is contained in:
2026-04-01 01:34:00 +00:00
parent f1e05707f2
commit ffcf9ec5ef

View File

@@ -2,24 +2,23 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import ContactCTA from '@/components/sections/contact/ContactCTA';
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="large"
background="floatingGradient"
cardStyle="solid"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="light"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
@@ -28,12 +27,11 @@ export default function MenuPage() {
{ name: "Home", id: "/" },
{ name: "Our Story", id: "/story" },
{ name: "Menu", id: "/menu" },
{ name: "Reserve", id: "/reserve" },
{ name: "Reserve", id: "/reserve" }
]}
brandName="Borgo C"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyFour
animationType="slide-up"
@@ -42,16 +40,11 @@ export default function MenuPage() {
title="Signature Menu"
description="Curated selection of our finest dishes."
features={[
{
id: "menu1", title: "Main Courses", author: "Kitchen", description: "Home-style fusion prepared fresh daily.", imageSrc: "http://img.b2bpic.net/free-photo/salmon-tartare_1203-9349.jpg", tags: ["Fusion"]
},
{
id: "menu2", title: "Dessert Bar", author: "Pastry Chef", description: "Legendary rotation of creative treats.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-muffin-wooden-background_23-2148718736.jpg", tags: ["Sweet"]
}
{ id: "menu1", title: "Main Courses", author: "Kitchen", description: "Home-style fusion prepared fresh daily.", imageSrc: "http://img.b2bpic.net/free-photo/salmon-tartare_1203-9349.jpg", tags: ["Fusion"] },
{ id: "menu2", title: "Dessert Bar", author: "Pastry Chef", description: "Legendary rotation of creative treats.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-muffin-wooden-background_23-2148718736.jpg", tags: ["Sweet"] }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}