From 14c15ae183daddf7727666739fe03214100b134d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 21:30:29 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 149a371..9a822f5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -43,7 +43,7 @@ export default function MegaPizzaPage() { -- 2.49.1 From 0c2d0b5b5cd9fe068748ba065abc0c1d5ba0415a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 21:30:29 +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 86923cc..cd8d00c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -4,7 +4,7 @@ interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; - dominantBaseline?: SVGTextElementAttributes['dominantBaseline']; + dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit'; } export const SvgTextLogo: React.FC = ({ -- 2.49.1