diff --git a/src/app/page.tsx b/src/app/page.tsx index 23ce916..833e031 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,8 +12,39 @@ import FaqDouble from '@/components/sections/faq/FaqDouble'; import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import { ChefHat, Fish, Heart, Sparkles, Star } from "lucide-react"; +import { useState } from "react"; export default function LandingPage() { + const [selectedReview, setSelectedReview] = useState(null); + const [selectedMenuItem, setSelectedMenuItem] = useState(null); + + const menuItems = [ + { + id: "dish-1", name: "Seafood Boil Combo", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/uncooked-meat-piece-with-vegetables-blue-table_114579-14748.jpg", imageAlt: "Cajun-style seafood boil with shrimp, lobster, mussels" + }, + { + id: "dish-2", name: "Garlic Butter Shrimp Pasta", price: "$38", imageSrc: "http://img.b2bpic.net/free-psd/delicious-garlic-shrimp-pasta-with-herbs-parmesan_84443-59503.jpg", imageAlt: "Creamy garlic shrimp pasta with fresh herbs" + }, + { + id: "dish-3", name: "Butter-Poached Lobster Tail", price: "$52", imageSrc: "http://img.b2bpic.net/free-photo/grilled-lobster-with-butter-garlic_1203-9963.jpg", imageAlt: "Premium lobster tail with drawn butter and lemon" + } + ]; + + const reviews = [ + { + id: "testimonial-1", name: "Sarah Mitchell", imageSrc: "http://img.b2bpic.net/free-photo/teen-age-youth-style-self-expression-concept-portrait-positive-happy-teenage-girl-with-bob-pinkish-hairstyle-facial-piercing-relaxing-indoors_343059-3781.jpg", imageAlt: "Sarah Mitchell, satisfied restaurant customer" + }, + { + id: "testimonial-2", name: "James Chen", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-attractive-adult-male-with-beard-sitting-open-terrace-typing-laptop-looking-screen-with-interested-smile-using-wi-fi-communicate-online-while-away-vacations_273609-6597.jpg", imageAlt: "James Chen, happy diner" + }, + { + id: "testimonial-3", name: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-library_23-2149204737.jpg", imageAlt: "Emily Rodriguez, loyal customer" + }, + { + id: "testimonial-4", name: "Michael Johnson", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-with-bright-smile_23-2148563438.jpg", imageAlt: "Michael Johnson, premium diner" + } + ]; + return (