From fd513864ad8efb61df75bbf073fa622fa7969f99 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:43:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 114 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 87 insertions(+), 27 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bed7d36..685f917 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,55 @@ import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Flame, Star, Heart, MessageCircle, Mail } from 'lucide-react'; +import { Flame, Star, Heart, MessageCircle, Mail, ChevronDown } from 'lucide-react'; +import { useState } from 'react'; export default function LandingPage() { + const [expandedCategory, setExpandedCategory] = useState(null); + + const menuCategories = [ + { + id: 'tacos', + name: 'Tacos', + items: [ + { id: 't1', name: 'Carnitas Tacos', price: '$6.99' }, + { id: 't2', name: 'Al Pastor Tacos', price: '$6.99' }, + { id: 't3', name: 'Fish Tacos', price: '$7.99' }, + { id: 't4', name: 'Crispy Tacos', price: '$5.99' }, + ] + }, + { + id: 'burritos', + name: 'Burritos', + items: [ + { id: 'b1', name: 'Chicken Burrito', price: '$8.99' }, + { id: 'b2', name: 'Beef Burrito', price: '$9.99' }, + { id: 'b3', name: 'Veggie Burrito', price: '$7.99' }, + { id: 'b4', name: 'Super Burrito', price: '$10.99' }, + ] + }, + { + id: 'bowls', + name: 'Bowls', + items: [ + { id: 'bo1', name: 'Chicken Bowl', price: '$8.99' }, + { id: 'bo2', name: 'Beef Bowl', price: '$9.99' }, + { id: 'bo3', name: 'Veggie Bowl', price: '$7.99' }, + { id: 'bo4', name: 'Seafood Bowl', price: '$10.99' }, + ] + }, + { + id: 'sides', + name: 'Sides', + items: [ + { id: 's1', name: 'Guacamole', price: '$2.99' }, + { id: 's2', name: 'Chips & Salsa', price: '$3.99' }, + { id: 's3', name: 'Elote', price: '$4.99' }, + { id: 's4', name: 'Churros', price: '$3.99' }, + ] + }, + ]; + return (
-- 2.49.1