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" /> 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 (