From 525e85e128437f71300de11c42132844325558a4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 12:08:58 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7992f50..2f66452 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -183,7 +183,6 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/close-up-restaurant-table-with-pink-velvet-chairs-grey-painted-hall-with-classic-paintings_140725-8705.jpg" imageAlt="Peaceful and welcoming dining space at Jardín Chino" useInvertedBackground={false} - mediaAnimation="slide-up" /> -- 2.49.1 From 92f29119c43cfe26d2e1dddd36ed9a8ab2a89eba Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 12:08:58 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 8d6aaaf..d67c6d1 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -8,7 +8,7 @@ interface SvgTextLogoProps { fontFamily?: string; fill?: string; textAnchor?: 'start' | 'middle' | 'end'; - dominantBaseline?: 'auto' | 'baseline' | 'central' | 'hanging' | 'ideographic' | 'mathematical'; + dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } export default function SvgTextLogo({ @@ -19,7 +19,7 @@ export default function SvgTextLogo({ fontFamily = 'system-ui, -apple-system, sans-serif', fill = 'currentColor', textAnchor = 'start', - dominantBaseline = 'hanging', + dominantBaseline = 'middle', }: SvgTextLogoProps) { return (