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} /> 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;