Update src/app/menu/page.tsx

This commit is contained in:
2026-03-30 08:11:09 +00:00
parent c85c56359e
commit d2c01a5b68

View File

@@ -7,7 +7,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import { Coffee, Leaf, Star, Wine, Zap } from "lucide-react";
export default function LandingPage() {
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -25,22 +25,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Story",
id: "/story",
},
{
name: "Reserve",
id: "/reserve",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Story", id: "/story" },
{ name: "Reserve", id: "/reserve" },
{ name: "Contact", id: "/contact" }
]}
brandName="Elysium"
/>
@@ -51,96 +40,12 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{
title: "Winter Roots",
description: "Earth-focused textures.",
icon: Zap,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-red-dessert-with-white-cream-berries-nuts-black-bowl_181624-7081.jpg?_wi=2",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-sauce-fried-eggplant_140725-2972.jpg?_wi=2",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/fairytale-image-burning-candles-dark_8353-10607.jpg?_wi=2",
imageAlt: "fine dining table atmosphere dark",
},
{
title: "Deep Sea",
description: "Cold water bounty.",
icon: Star,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/mulled-wine-glintwine-served-glasses-christmas-table-with-orange-spices_114579-4113.jpg?_wi=2",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/view-food-professional-kitchen_23-2149728021.jpg?_wi=2",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/view-food-professional-kitchen_23-2149728021.jpg?_wi=3",
imageAlt: "wagyu rice gourmet food plating",
},
{
title: "Foraged Earth",
description: "Micro-seasonal findings.",
icon: Leaf,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/view-food-professional-kitchen_23-2149728021.jpg?_wi=4",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/mulled-wine-glintwine-served-glasses-christmas-table-with-orange-spices_114579-4113.jpg?_wi=3",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/mulled-wine-glintwine-served-glasses-christmas-table-with-orange-spices_114579-4113.jpg?_wi=4",
imageAlt: "abalone seafood gourmet luxury",
},
]}
title="The Seasonal Rotation"
description="Our menu shifts with the cadence of the seasons, honoring local purity."
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyFive
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Beverage Pairing"
description="Expertly curated wines and teas to accompany your progression."
features={[
{
title: "Reserve Cellar",
description: "Vintage expressions.",
icon: Wine,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/mulled-wine-glintwine-served-glasses-christmas-table-with-orange-spices_114579-4113.jpg?_wi=5",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-sauce-fried-eggplant_140725-2972.jpg?_wi=3",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-sauce-fried-eggplant_140725-2972.jpg?_wi=4",
imageAlt: "wagyu beef dish close-up",
},
{
title: "Ceremonial Tea",
description: "Rare hand-picked leaves.",
icon: Coffee,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-red-dessert-with-white-cream-berries-nuts-black-bowl_181624-7081.jpg?_wi=3",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/view-food-professional-kitchen_23-2149728021.jpg?_wi=5",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-red-dessert-with-white-cream-berries-nuts-black-bowl_181624-7081.jpg?_wi=4",
imageAlt: "sweet potato ice cream dessert",
},
{ title: "Winter Roots", description: "Earth-focused textures.", icon: Zap, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-red-dessert-with-white-cream-berries-nuts-black-bowl_181624-7081.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-sauce-fried-eggplant_140725-2972.jpg" }] },
{ title: "Deep Sea", description: "Cold water bounty.", icon: Star, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/mulled-wine-glintwine-served-glasses-christmas-table-with-orange-spices_114579-4113.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/view-food-professional-kitchen_23-2149728021.jpg" }] },
{ title: "Foraged Earth", description: "Micro-seasonal findings.", icon: Leaf, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/view-food-professional-kitchen_23-2149728021.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/mulled-wine-glintwine-served-glasses-christmas-table-with-orange-spices_114579-4113.jpg" }] }
]}
/>
</div>
@@ -149,32 +54,8 @@ export default function LandingPage() {
<FooterBaseCard
logoText="Elysium"
columns={[
{
title: "Experience",
items: [
{
label: "Reserve",
href: "/reserve",
},
{
label: "Menu",
href: "/menu",
},
],
},
{
title: "Identity",
items: [
{
label: "Story",
href: "/story",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ title: "Experience", items: [{ label: "Reserve", href: "/reserve" }, { label: "Menu", href: "/menu" }] },
{ title: "Identity", items: [{ label: "Story", href: "/story" }, { label: "Contact", href: "/contact" }] }
]}
copyrightText="© 2025 Elysium Fine Dining. All rights reserved."
/>