Update src/app/menu/page.tsx

This commit is contained in:
2026-04-08 18:23:51 +00:00
parent 3e819474d2
commit bf68e1d6ec

View File

@@ -8,7 +8,7 @@ import ReactLenis from "lenis/react";
export default function MenuPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleCentered
brandName="Aura Bistro"
@@ -20,7 +20,6 @@ export default function MenuPage() {
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Book a Table", href: "/contact" }}
/>
<ProductCardFour
title="Our Seasonal Menu"
@@ -30,13 +29,13 @@ export default function MenuPage() {
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", name: "Wild Mushroom Risotto", price: "$28", variant: "Vegetarian", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529835.jpg?_wi=1" },
{ id: "2", name: "Seared Scallops", price: "$34", variant: "Seafood", imageSrc: "http://img.b2bpic.net/free-photo/close-up-group-friends-restaurant_23-2148395396.jpg?_wi=1" },
{ id: "3", name: "Herb-Crusted Lamb", price: "$42", variant: "Meat", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-668.jpg" }
{ id: "1", name: "Wild Mushroom Risotto", price: "$28", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529835.jpg?_wi=1" },
{ id: "2", name: "Seared Scallops", price: "$34", imageSrc: "http://img.b2bpic.net/free-photo/close-up-group-friends-restaurant_23-2148395396.jpg?_wi=1" },
{ id: "3", name: "Herb-Crusted Lamb", price: "$42", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-668.jpg" }
]}
/>
<FooterCard logoText="Aura Bistro" />
</ReactLenis>
</ThemeProvider>
);
}
}