Merge version_1 into main #3

Merged
bender merged 2 commits from version_1 into main 2026-03-12 12:09:02 +00:00
2 changed files with 2 additions and 3 deletions

View File

@@ -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"
/>
</div>

View File

@@ -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 (
<svg