diff --git a/src/app/page.tsx b/src/app/page.tsx index 10429a4..8a7df7b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -54,7 +54,6 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064698.jpg" imageAlt="Mimi Cafe & Bistro cozy interior ambience" frameStyle="card" - mediaAnimation="opacity" /> @@ -104,7 +103,6 @@ export default function LandingPage() { buttons={[{ text: "View Full Menu", href: "#menu" }]} tagAnimation="slide-up" buttonAnimation="slide-up" - mediaAnimation="opacity" /> diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index d46450a..ea81a5b 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -5,7 +5,7 @@ interface SvgTextLogoProps { className?: string; textClassName?: string; preserveAspectRatio?: string; - dominantBaseline?: 'auto' | 'text-top' | 'hanging' | 'text-before-edge' | 'ideographic' | 'middle' | 'central' | 'mathematical' | 'text-after-edge' | 'text-bottom' | 'baseline' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; + dominantBaseline?: 'auto' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; } const SvgTextLogo = React.forwardRef(