diff --git a/src/app/page.tsx b/src/app/page.tsx index 32eb295..b73aa98 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -63,11 +63,14 @@ export default function LandingPage() { tagAnimation="slide-up" products={[ { - id: "1", name: "California Roll", price: "$8.50", imageAlt: "California Roll"}, + id: "1", name: "California Roll", price: "$8.50", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "California Roll" + }, { - id: "2", name: "Fresh Sashimi Platter", price: "$15.00", imageAlt: "Fresh Sashimi Platter"}, + id: "2", name: "Fresh Sashimi Platter", price: "$15.00", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Fresh Sashimi Platter" + }, { - id: "3", name: "Nigiri Selection", price: "$12.00", imageAlt: "Nigiri Selection"}, + id: "3", name: "Nigiri Selection", price: "$12.00", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Nigiri Selection" + }, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -83,12 +86,14 @@ export default function LandingPage() {