From 57bcfd5767e7a6b022e8ecbdec58e270a43b2a8b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Feb 2026 07:24:19 +0000 Subject: [PATCH] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 264 ++++++++++++++---------------------------- 1 file changed, 84 insertions(+), 180 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index c36fa07..8f013b1 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -1,19 +1,52 @@ -"use client" +"use client"; +import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import TextAbout from '@/components/sections/about/TextAbout'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; -import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Sparkles, Heart, ChefHat } from "lucide-react"; +import { ChefHat } from "lucide-react"; export default function MenuPage() { + const menuItems = [ + { + id: "1", name: "Pad Thai", price: "$16.95", imageSrc: "http://img.b2bpic.net/free-photo/stir-noodles-fry-green-chinese_1203-5877.jpg", imageAlt: "Pad Thai - Stir-fried noodles" + }, + { + id: "2", name: "Green Curry", price: "$18.95", imageSrc: "http://img.b2bpic.net/free-photo/curry-pork-spicy_1388-222.jpg", imageAlt: "Green Curry with chicken" + }, + { + id: "3", name: "Tom Yum Soup", price: "$14.95", imageSrc: "http://img.b2bpic.net/free-photo/tom-yum-kung-thai-hot-spicy-soup-shrimp-with-lemon-grass-lemon-galangal-chilli-wooden-table-thailand-food_1150-21062.jpg", imageAlt: "Tom Yum - Hot and sour soup" + }, + { + id: "4", name: "Pad Krapow Moo", price: "$17.95", imageSrc: "http://img.b2bpic.net/free-photo/stir-fried-meat-with-basil-leaves-thai-food_1203-5877.jpg", imageAlt: "Pad Krapow Moo - Basil pork stir-fry" + }, + { + id: "5", name: "Massaman Curry", price: "$19.95", imageSrc: "http://img.b2bpic.net/free-photo/thai-massaman-curry-with-beef-peanuts_1203-5877.jpg", imageAlt: "Massaman Curry - Rich and aromatic" + }, + { + id: "6", name: "Pad See Ew", price: "$16.95", imageSrc: "http://img.b2bpic.net/free-photo/dark-soy-noodles-thai-stir-fry_1203-5877.jpg", imageAlt: "Pad See Ew - Dark soy noodles" + }, + { + id: "7", name: "Larb Gai", price: "$15.95", imageSrc: "http://img.b2bpic.net/free-photo/spicy-minced-chicken-salad_1203-5877.jpg", imageAlt: "Larb Gai - Spicy minced chicken" + }, + { + id: "8", name: "Satay Skewers", price: "$12.95", imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-skewers-peanut-sauce_1203-5877.jpg", imageAlt: "Satay Skewers - Grilled with peanut sauce" + }, + { + id: "9", name: "Spring Rolls", price: "$8.95", imageSrc: "http://img.b2bpic.net/free-photo/crispy-spring-rolls-sweet-sauce_1203-5877.jpg", imageAlt: "Spring Rolls - Crispy appetizer" + }, + { + id: "10", name: "Green Papaya Salad", price: "$13.95", imageSrc: "http://img.b2bpic.net/free-photo/som-tam-green-papaya-salad_1203-5877.jpg", imageAlt: "Green Papaya Salad - Som Tam" + }, + { + id: "11", name: "Mango Sticky Rice", price: "$9.95", imageSrc: "http://img.b2bpic.net/free-photo/mango-sticky-rice-dessert_1203-5877.jpg", imageAlt: "Mango Sticky Rice - Thai dessert" + }, + { + id: "12", name: "Thai Iced Tea", price: "$5.95", imageSrc: "http://img.b2bpic.net/free-photo/thai-iced-tea-traditional_1203-5877.jpg", imageAlt: "Thai Iced Tea - Refreshing beverage" + } + ]; + return ( - + + -
- -
+ -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - + +
); }