From faa877726f9731376ffcd3eb74664f696eb84f9f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 12:40:23 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7addee6..6a0e3b0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -101,10 +101,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { id: "1", title: "Pizzas Artesanales", description: "Pizza Margherita, Pepperoni, Prosciutto e Funghi, 4 Quesos — elaboradas en horno tradicional con masa fresca", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-fresh-cheese_23-2150096956.jpg", imageAlt: "Pizza Margherita" }, - { id: "2", title: "Pastas Frescas", description: "Spaghetti Bolognese, Fettuccine Alfredo, Pasta Carbonara, Lasagna — recetas auténticas con salsa casera", imageSrc: "http://img.b2bpic.net/free-photo/pasta-filled-with-cream-topped-with-pepper_140725-1828.jpg", imageAlt: "Pasta fresca" }, - { id: "3", title: "Postres Clásicos", description: "Tiramisú casero, Panna Cotta, Cannoli — desserts tradicionales que finalizan perfectamente tu comida", imageSrc: "http://img.b2bpic.net/free-photo/tiramisu-cakes-cup-tea-white-surface-with-spoon_114579-40356.jpg", imageAlt: "Tiramisú" }, - { id: "4", title: "Bebidas Selectas", description: "Refrescos, Agua mineral, Café espresso, Cappuccino — bebidas que complementan tu experiencia italiana", imageSrc: "http://img.b2bpic.net/free-photo/rice-with-chicken-mushrooms-creamy-sauce_140725-6787.jpg", imageAlt: "Bebidas" } + { id: 1, title: "Pizzas Artesanales", description: "Pizza Margherita, Pepperoni, Prosciutto e Funghi, 4 Quesos — elaboradas en horno tradicional con masa fresca", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-fresh-cheese_23-2150096956.jpg", imageAlt: "Pizza Margherita" }, + { id: 2, title: "Pastas Frescas", description: "Spaghetti Bolognese, Fettuccine Alfredo, Pasta Carbonara, Lasagna — recetas auténticas con salsa casera", imageSrc: "http://img.b2bpic.net/free-photo/pasta-filled-with-cream-topped-with-pepper_140725-1828.jpg", imageAlt: "Pasta fresca" }, + { id: 3, title: "Postres Clásicos", description: "Tiramisú casero, Panna Cotta, Cannoli — desserts tradicionales que finalizan perfectamente tu comida", imageSrc: "http://img.b2bpic.net/free-photo/tiramisu-cakes-cup-tea-white-surface-with-spoon_114579-40356.jpg", imageAlt: "Tiramisú" }, + { id: 4, title: "Bebidas Selectas", description: "Refrescos, Agua mineral, Café espresso, Cappuccino — bebidas que complementan tu experiencia italiana", imageSrc: "http://img.b2bpic.net/free-photo/rice-with-chicken-mushrooms-creamy-sauce_140725-6787.jpg", imageAlt: "Bebidas" } ]} buttonAnimation="slide-up" ariaLabel="Menu categories section" -- 2.49.1 From e5f1ea37ee31ba92ef9c3e60996e013594038cd6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 12:40:23 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 10269df..7cf82f6 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -3,7 +3,7 @@ import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; - dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'hanging' | 'mathematical' | 'central'; + dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } const SvgTextLogo: React.FC = ({ -- 2.49.1