From 6eedb1fb7de7bc5c5316fa5ad968c16e95886cb1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 10:18:01 +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 d707593..ac99dea 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="mediumSmall" sizing="largeSizeMediumTitles" - background="blurBottom" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="radial-glow" secondaryButtonStyle="layered" @@ -48,7 +48,7 @@ export default function LandingPage() { tag="8K Experience" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "blurBottom" }} + background={{ variant: "radial-gradient" }} mediaItems={[ { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3At0zDD0yO1RcNC3umNB6gNJL5I/premium-tech-gadget-product-showcase-fea-1773396938459-1f9e63a9.png", imageAlt: "Premium smartphone with neon accents" @@ -198,7 +198,7 @@ export default function LandingPage() { tagIcon={Mail} title="Stay Updated on Latest Tech" description="Subscribe to our newsletter for exclusive deals, new product launches, and expert tech reviews delivered to your inbox weekly." - background={{ variant: "blurBottom" }} + background={{ variant: "radial-gradient" }} useInvertedBackground={false} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3At0zDD0yO1RcNC3umNB6gNJL5I/tech-gadget-collection-showcase-on-dark--1773396938765-e08b790f.png" imageAlt="Tech gadget collection" -- 2.49.1 From c6465cff8b765967a94cca64724c0b658513ad2b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 10:18:01 +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 bcd8a4d..97be4b3 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -7,7 +7,7 @@ interface SvgTextLogoProps { fontWeight?: string; fill?: string; textAnchor?: 'start' | 'middle' | 'end'; - dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'hanging' | 'mathematical'; + dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } const SvgTextLogo: React.FC = ({ -- 2.49.1