From cd3ed7caa3f7cb92365a0edfb5726e9a8a05e9f5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 10:41:30 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 22587d0..455cf7e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -21,7 +21,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="mediumSizeLargeTitles" - background="noise" + background="circleGradient" cardStyle="gradient-bordered" primaryButtonStyle="flat" secondaryButtonStyle="solid" @@ -71,7 +71,7 @@ export default function LandingPage() { ]} testimonialRotationInterval={5000} useInvertedBackground={false} - background={{ variant: "noise" }} + background={{ variant: "glowing-orb" }} /> @@ -240,7 +240,7 @@ export default function LandingPage() { { text: "Shop Now", href: "#products" }, { text: "Contact Support", href: "mailto:support@fortnitehub.com" } ]} - background={{ variant: "noise" }} + background={{ variant: "glowing-orb" }} useInvertedBackground={true} /> -- 2.49.1 From 0d932ffd106756cd731ba6be471b91eea83dee53 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 10:41:31 +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 7094c83..93f07e1 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; textClassName?: string; - dominantBaseline?: 'auto' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'hanging' | 'mathematical' | 'inherit'; + dominantBaseline?: 'auto' | 'text-before-edge' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'hanging' | 'mathematical' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; textAnchor?: 'start' | 'middle' | 'end' | 'inherit'; fontSize?: number; fontWeight?: string | number; -- 2.49.1