5 Commits

Author SHA1 Message Date
142acadc03 Update src/app/menu/page.tsx 2026-05-12 20:30:46 +00:00
eb15506e86 Update src/app/menu/page.tsx 2026-05-12 20:30:19 +00:00
bf290c52cd Update src/app/menu/page.tsx 2026-05-12 20:29:54 +00:00
5ee11ad143 Merge version_2 into main
Merge version_2 into main
2026-05-12 20:26:06 +00:00
11cd7b4599 Merge version_2 into main
Merge version_2 into main
2026-05-12 20:25:34 +00:00

View File

@@ -3,11 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Coffee } from 'lucide-react';
export default function LandingPage() {
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -36,16 +37,18 @@ export default function LandingPage() {
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyNine
<FeatureCardTen
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
textboxLayout="split"
useInvertedBackground={false}
title="Our Signature Dishes"
description="Savor the flavors of our most cherished recipes."
title="Our Culinary Selection"
description="Discover our curated menu, featuring locally sourced ingredients and masterfully crafted flavors."
tag="Daily Menu"
tagIcon={Coffee}
features={[
{ title: "Signature Steak", description: "Prime aged beef with seasonal herbs.", imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-cutlet-with-sauce-spicy-pepper-zucchini-tomatoes_140725-10844.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/chef-showing-his-fine-cuisine-professional-food-decoration_482257-10348.jpg", buttonText: "View Dish" },
{ title: "Delicate Dessert", description: "Masterfully crafted chocolate delights.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-fork-delicious-fresh-chocolate-dessert-restaurant_23-2148001620.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg", buttonText: "View Dessert" },
{ title: "Signature Steak", description: "Prime aged beef with seasonal herbs.", media: { imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-cutlet-with-sauce-spicy-pepper-zucchini-tomatoes_140725-10844.jpg" }, items: [{ icon: Coffee, text: "Main Course" }], reverse: false },
{ title: "Delicate Dessert", description: "Masterfully crafted chocolate delights.", media: { imageSrc: "http://img.b2bpic.net/free-photo/woman-with-fork-delicious-fresh-chocolate-dessert-restaurant_23-2148001620.jpg" }, items: [{ icon: Coffee, text: "Dessert" }], reverse: true },
{ title: "Artisanal Cocktails", description: "Handcrafted drinks for a perfect evening.", media: { imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-blond-hair-holding-cocktail_273609-15687.jpg" }, items: [{ icon: Coffee, text: "Beverage" }], reverse: false }
]}
/>
</div>