diff --git a/src/app/page.tsx b/src/app/page.tsx index 83bf867..f68e845 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -54,7 +54,6 @@ export default function LandingPage() { ]} buttonAnimation="slide-up" className="relative" - useInvertedBackground={false} /> diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 2772b3e..bf20394 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -10,7 +10,7 @@ interface SvgTextLogoProps { fontFamily?: string; letterSpacing?: number; textAnchor?: 'start' | 'middle' | 'end'; - dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'central' | 'hanging'; + dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; className?: string; }