diff --git a/src/app/page.tsx b/src/app/page.tsx index 8f8fb7e..cc68b8d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -168,7 +168,6 @@ export default function LandingPage() { { value: "3.2x", label: "Average Conversion Lift" } ]} containerClassName="w-full" - titleClassName="text-4xl md:text-5xl font-bold" descriptionClassName="text-base md:text-lg" carouselMode="buttons" /> diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 0c11fdf..70fc1fe 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -7,7 +7,7 @@ interface SvgTextLogoProps { fontFamily?: string; fontWeight?: number; letterSpacing?: number; - dominantBaseline?: 'auto' | 'text-top' | 'hanging' | 'middle' | 'central' | 'text-bottom' | 'ideographic' | 'mathematical' | 'inherit'; + dominantBaseline?: 'auto' | 'text-top' | 'hanging' | 'middle' | 'central' | 'ideographic' | 'mathematical' | 'inherit'; textAnchor?: 'start' | 'middle' | 'end' | 'inherit'; }