Merge version_1 into main #3

Merged
bender merged 2 commits from version_1 into main 2026-03-12 10:41:35 +00:00
2 changed files with 4 additions and 4 deletions

View File

@@ -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" }}
/>
</div>
@@ -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}
/>
</div>

View File

@@ -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;