From 6b24125c753019708873018f8b68c36ad36f47bb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 23:37:37 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 684c15f..8bee7a2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -69,28 +69,43 @@ export default function LandingPage() { animationType="slide-up" products={[ { - id: "espresso-ristretto", name: "Espresso Ristretto", price: "$2.50", variant: "Shot Concentrado", imageSrc: "http://img.b2bpic.net/free-photo/cup-hot-coffee-coffee-beans-dark-plate_114579-52739.jpg", imageAlt: "espresso ristretto shot dark coffee" + id: "americano-small", name: "Americano Pequeño", price: "$18", variant: "Con o Sin Leche", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-tea-inside-cup-plate-light-white-surface_140725-62152.jpg", imageAlt: "americano coffee black espresso water small" }, { - id: "espresso-doble", name: "Espresso Doble", price: "$3.00", variant: "Dos Shots", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-plant-table_140725-8126.jpg", imageAlt: "double espresso two shots dark" + id: "americano-large", name: "Americano Grande", price: "$30", variant: "Con o Sin Leche", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-tea-inside-cup-plate-light-white-surface_140725-62152.jpg", imageAlt: "americano coffee black espresso water large" }, { - id: "americano", name: "Americano", price: "$3.50", variant: "Con o Sin Leche", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-tea-inside-cup-plate-light-white-surface_140725-62152.jpg", imageAlt: "americano coffee black espresso water" + id: "espresso-ristretto", name: "Espresso Ristretto", price: "$27", variant: "Shot Concentrado", imageSrc: "http://img.b2bpic.net/free-photo/cup-hot-coffee-coffee-beans-dark-plate_114579-52739.jpg", imageAlt: "espresso ristretto shot dark coffee" }, { - id: "cappuccino", name: "Cappuccino", price: "$4.00", variant: "Espuma Cremosa", imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup_74190-3806.jpg", imageAlt: "cappuccino latte foam milk coffee" + id: "espresso-doble", name: "Espresso Doble", price: "$22", variant: "Dos Shots", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-plant-table_140725-8126.jpg", imageAlt: "double espresso two shots dark" }, { - id: "latte", name: "Latte", price: "$4.00", variant: "Suave y Cremoso", imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-coffee-weekend_53876-20772.jpg", imageAlt: "latte coffee smooth milk creamy" + id: "cappuccino-small", name: "Cappuccino Pequeño", price: "$25", variant: "Espuma Cremosa", imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup_74190-3806.jpg", imageAlt: "cappuccino latte foam milk coffee small" }, { - id: "chocolate-caliente", name: "Chocolate Caliente", price: "$3.50", variant: "Rico y Reconfortante", imageSrc: "http://img.b2bpic.net/free-photo/cup-with-hot-chocolate-cinnamon_23-2148633152.jpg", imageAlt: "hot chocolate drink cocoa warm" + id: "cappuccino-large", name: "Cappuccino Grande", price: "$39", variant: "Espuma Cremosa", imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup_74190-3806.jpg", imageAlt: "cappuccino latte foam milk coffee large" + }, + { + id: "chocolate-con-leche-small", name: "Chocolate con Leche Pequeño", price: "$25", variant: "Rico y Reconfortante", imageSrc: "http://img.b2bpic.net/free-photo/cup-with-hot-chocolate-cinnamon_23-2148633152.jpg", imageAlt: "hot chocolate with milk drink cocoa warm small" + }, + { + id: "chocolate-con-leche-large", name: "Chocolate con Leche Grande", price: "$39", variant: "Rico y Reconfortante", imageSrc: "http://img.b2bpic.net/free-photo/cup-with-hot-chocolate-cinnamon_23-2148633152.jpg", imageAlt: "hot chocolate with milk drink cocoa warm large" + }, + { + id: "te-chai-small", name: "Té Chai Pequeño", price: "$25", variant: "Especiado y Aromático", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-glass-with-coffee_23-2148633236.jpg", imageAlt: "chai tea latte spiced warm small" + }, + { + id: "te-chai-large", name: "Té Chai Grande", price: "$39", variant: "Especiado y Aromático", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-glass-with-coffee_23-2148633236.jpg", imageAlt: "chai tea latte spiced warm large" + }, + { + id: "vaso-de-leche", name: "Vaso de Leche", price: "$20", variant: "Pura y Fresca", imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-coffee-weekend_53876-20772.jpg", imageAlt: "vaso de leche milk drink fresh" }, { id: "chocolate-frio", name: "Chocolate Frío", price: "$4.00", variant: "Refrescante", imageSrc: "http://img.b2bpic.net/free-photo/iced-chocolate_1339-4953.jpg", imageAlt: "cold chocolate drink iced cocoa" }, { - id: "te-chai", name: "Té Chai", price: "$3.75", variant: "Especiado y Aromático", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-glass-with-coffee_23-2148633236.jpg", imageAlt: "chai tea latte spiced warm" + id: "latte", name: "Latte", price: "$4.00", variant: "Suave y Cremoso", imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-coffee-weekend_53876-20772.jpg", imageAlt: "latte coffee smooth milk creamy" } ]} /> @@ -164,4 +179,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file