Update src/app/page.tsx

This commit is contained in:
2026-05-28 11:43:16 +00:00
parent 2bdf52cbf4
commit 02bdd4364b

View File

@@ -63,7 +63,6 @@ export default function HomePage() {
imageSrc="http://img.b2bpic.net/free-photo/happy-friends-sitting-cafe_23-2148422400.jpg"
imageAlt="Vibrant Mexican restaurant interior with delicious food and drinks"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
tagAnimation="opacity"
buttonAnimation="opacity"
/>
@@ -99,7 +98,6 @@ export default function HomePage() {
mediaPosition="right"
tagAnimation="opacity"
buttonAnimation="opacity"
faqsAnimation="opacity"
/>
</div>
@@ -108,12 +106,12 @@ export default function HomePage() {
title="Our Signature Flavors"
description="Explore a world of taste with our beloved classics and innovative dishes. Each item on our menu is a celebration of Mexican culinary tradition."
products={[
{ id: "1", name: "Al Pastor Tacos", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/three-fish-tacos-with-cabbage-lime-dark-plate_84443-94440.jpg?_wi=1", imageAlt: "Al Pastor Tacos" },
{ id: "2", name: "Classic Margarita", price: "$10.50", imageSrc: "http://img.b2bpic.net/free-photo/daiquiri-cocktails-with-lime-slices_23-2149486837.jpg?_wi=1", imageAlt: "Classic Margarita" },
{ id: "3", name: "Carne Asada Burrito", price: "$15.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-vegetarian-burrito-wrap-plate-table_23-2148165544.jpg?_wi=1", imageAlt: "Carne Asada Burrito" },
{ id: "4", name: "Chicken Enchiladas", price: "$14.75", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mexican-food_23-2148140192.jpg?_wi=1", imageAlt: "Chicken Enchiladas" },
{ id: "5", name: "Quesadilla Suprema", price: "$11.99", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pita-pancake-with-melted-cheese_23-2149342898.jpg?_wi=1", imageAlt: "Quesadilla Suprema" },
{ id: "6", name: "Fresh Guacamole", price: "$8.00", imageSrc: "http://img.b2bpic.net/free-photo/side-view-various-sauces-salads-with-vegetables-wooden-board-olive-oil-middle_140725-12939.jpg?_wi=1", imageAlt: "Fresh Guacamole" }
{ id: "1", name: "Al Pastor Tacos", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/three-fish-tacos-with-cabbage-lime-dark-plate_84443-94440.jpg", imageAlt: "Al Pastor Tacos" },
{ id: "2", name: "Classic Margarita", price: "$10.50", imageSrc: "http://img.b2bpic.net/free-photo/daiquiri-cocktails-with-lime-slices_23-2149486837.jpg", imageAlt: "Classic Margarita" },
{ id: "3", name: "Carne Asada Burrito", price: "$15.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-vegetarian-burrito-wrap-plate-table_23-2148165544.jpg", imageAlt: "Carne Asada Burrito" },
{ id: "4", name: "Chicken Enchiladas", price: "$14.75", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mexican-food_23-2148140192.jpg", imageAlt: "Chicken Enchiladas" },
{ id: "5", name: "Quesadilla Suprema", price: "$11.99", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pita-pancake-with-melted-cheese_23-2149342898.jpg", imageAlt: "Quesadilla Suprema" },
{ id: "6", name: "Fresh Guacamole", price: "$8.00", imageSrc: "http://img.b2bpic.net/free-photo/side-view-various-sauces-salads-with-vegetables-wooden-board-olive-oil-middle_140725-12939.jpg", imageAlt: "Fresh Guacamole" }
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -155,7 +153,6 @@ export default function HomePage() {
buttonText="Subscribe"
termsText="By clicking Subscribe you're confirming that you agree with our Terms and Conditions."
tagAnimation="opacity"
buttonAnimation="opacity"
/>
</div>
@@ -169,7 +166,6 @@ export default function HomePage() {
{ items: footerNavItems.filter(item => ["Reviews", "Contact Us", "Order Online"].includes(item.label)).map(item => ({ label: item.label, href: item.href })) },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
useInvertedBackground={false}
/>
</div>
</ThemeProvider>