Update src/app/menu/page.tsx

This commit is contained in:
2026-04-08 18:21:36 +00:00
parent 2e76b242e3
commit 570a8832c7

View File

@@ -1,130 +1,41 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import ProductCartItem from '@/components/ecommerce/cart/ProductCartItem';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterCard from '@/components/sections/footer/FooterCard';
import ReactLenis from "lenis/react";
export default function LandingPage() {
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="blurBottom"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ThemeProvider>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Contact",
id: "/contact",
},
]}
button={{
text: "Book a Table",
href: "/contact",
}}
brandName="Aura Bistro"
/>
</div>
<div id="menu-grid" data-section="menu-grid">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "1",
name: "Truffle Infused Risotto",
price: "$32",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529835.jpg?_wi=4",
},
{
id: "2",
name: "Seared Scallops",
price: "$38",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529835.jpg?_wi=5",
},
{
id: "3",
name: "Signature Old Fashioned",
price: "$18",
imageSrc: "http://img.b2bpic.net/free-photo/wine-bar-interior-with-bottle-counter_23-2152024848.jpg?_wi=2",
},
{
id: "4",
name: "Braised Short Rib",
price: "$45",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529835.jpg?_wi=6",
},
{
id: "5",
name: "Chocolate Hazelnut Tart",
price: "$16",
imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-tasty-healthy-round-cake-plate_23-2148161581.jpg?_wi=1",
},
{
id: "6",
name: "Seasonal Vegetable Medley",
price: "$24",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529835.jpg?_wi=7",
},
]}
title="Culinary Delights"
description="Explore our curated menu featuring seasonal specialties."
/>
</div>
<div id="ecommerce" data-section="ecommerce">
<ProductCartItem
item={{
id: "c1",
name: "Truffle Risotto",
price: "$32",
quantity: 1,
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529835.jpg?_wi=8",
}}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Aura Bistro"
copyrightText="© 2025 Aura Bistro. All rights reserved."
/>
</div>
<NavbarStyleCentered
brandName="Aura Bistro"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Book a Table", href: "/contact" }}
/>
<ProductCardFour
title="Our Seasonal Menu"
description="A curation of fresh, locally sourced ingredients prepared with modern culinary techniques."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
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" }
]}
/>
<FooterCard logoText="Aura Bistro" />
</ReactLenis>
</ThemeProvider>
);