From 8aa3d1fb7d21a099f6752b138e474394429449b2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 04:13:57 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ceabeae..a9f566e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -75,15 +75,14 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} products={[ - { id: "p1", brand: "Especial", name: "Taco al Pastor", price: "$25", rating: 5, reviewCount: "1.2k", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tortilla-with-meat-vegetables_23-2148750445.jpg" }, - { id: "p2", brand: "Especial", name: "Taco de Arrachera", price: "$35", rating: 5, reviewCount: "980", imageSrc: "http://img.b2bpic.net/free-photo/mexican-quesadilla-wrap-with-chicken-corn-sweet-pepper-salsa_2829-11819.jpg" }, - { id: "p3", brand: "Especial", name: "Gringa de Pastor", price: "$45", rating: 5, reviewCount: "850", imageSrc: "http://img.b2bpic.net/free-photo/healthy-mexican-taco_23-2147640350.jpg" }, - { id: "p4", brand: "Especial", name: "Taco de Carnitas", price: "$25", rating: 4, reviewCount: "670", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tacos-beer-arrangement_23-2148764343.jpg" }, - { id: "p5", brand: "Especial", name: "Quesadilla Especial", price: "$30", rating: 5, reviewCount: "540", imageSrc: "http://img.b2bpic.net/free-photo/black-tray-mixed-vegetable-salad-garnished-with-potato-chips-marble-background_114579-52585.jpg" }, - { id: "p6", brand: "Especial", name: "Taco Campechano", price: "$28", rating: 5, reviewCount: "420", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-beer-tacos-arrangement_23-2148764336.jpg" }, + { id: "m1", brand: "Hamburguesas", name: "Clásica Santo Cielo", price: "$95", rating: 5, reviewCount: "1.2k", imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-burger_144627-18631.jpg" }, + { id: "m2", brand: "Hot Dogs", name: "Doggo Chilango", price: "$55", rating: 4, reviewCount: "850", imageSrc: "http://img.b2bpic.net/free-photo/top-view-hot-dog-with-mustard-ketchup_23-2148530364.jpg" }, + { id: "m3", brand: "Papas", name: "Papas de la Casa", price: "$45", rating: 5, reviewCount: "2.1k", imageSrc: "http://img.b2bpic.net/free-photo/crispy-french-fries-with-ketchup-mayonnaise_1150-26581.jpg" }, + { id: "m4", brand: "Alitas", name: "Alitas BBQ Fuego", price: "$110", rating: 5, reviewCount: "980", imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-wings-with-bbq-sauce_23-2148455644.jpg" }, + { id: "m5", brand: "Brochetas", name: "Brocheta de Arrachera", price: "$85", rating: 5, reviewCount: "640", imageSrc: "http://img.b2bpic.net/free-photo/skewers-grilled-meat-vegetables-plate_23-2148154687.jpg" } ]} - title="Nuestros Favoritos" - description="Una selección de los tacos y especialidades que han conquistado las calles. Recetas auténticas hechas al momento." + title="Nuestro Menú" + description="Lo mejor de la comida urbana en un solo lugar. Ingredientes frescos y el sabor que nos distingue." /> @@ -126,7 +125,7 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} metrics={[ - { id: "m1", value: "10k+", description: "Tacos servidos" }, + { id: "m1", value: "10k+", description: "Platillos servidos" }, { id: "m2", value: "5+", description: "Años de tradición" }, { id: "m3", value: "100%", description: "Ingredientes frescos" }, ]} -- 2.49.1 From fefe3c6651379564dec19e6f9f7d9315dfc5017c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 04:13:57 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d12c3c0..c75d614 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f7f6f7; - --card: #ffffff; - --foreground: #250c0d; - --primary-cta: #b82b40; + --background: #fbf9f4; + --card: #fdfdfd; + --foreground: #1a1a1a; + --primary-cta: #c8102e; --primary-cta-text: #f7f6f7; - --secondary-cta: #ffffff; + --secondary-cta: #1a1a1a; --secondary-cta-text: #250c0d; - --accent: #b90941; - --background-accent: #e8a8b6; + --accent: #f39c12; + --background-accent: #fdf5e6; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1