From dfdb40bcbcffed26ffc9d57317632c41dcca552e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 17:06:31 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index cc68b8d..8f8fb7e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -168,6 +168,7 @@ 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" /> From 5e33e3f67d33f45f4f69668b881a8da4962a42a4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 17:06:32 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 70fc1fe..a692acc 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' | 'ideographic' | 'mathematical' | 'inherit'; + dominantBaseline?: 'auto' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'central' | 'text-before-edge' | 'text-after-edge' | 'inherit'; textAnchor?: 'start' | 'middle' | 'end' | 'inherit'; }