From 5b30355695f3ed284fbbf78abc053b0b4c7ea876 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:02:25 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ccccdcc..3eb1d7f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -47,7 +47,7 @@ export default function LandingPage() { tag="Study Smart" tagIcon={BookOpen} tagAnimation="slide-up" - background={{ variant: "glowing-orb" }} + background={{ variant: "fluid" }} useInvertedBackground={false} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Angoy2QVuRBJK0K90pnHPyoD0r/a-modern-study-dashboard-interface-with--1773234004473-3dd0706c.png" imageAlt="Study Flow Dashboard" @@ -235,7 +235,7 @@ export default function LandingPage() { description="Join thousands of learners using StudyFlow to track their progress and stay motivated. Sign up today and get instant access to beautiful study tracking." tagIcon={Mail} tagAnimation="slide-up" - background={{ variant: "glowing-orb" }} + background={{ variant: "fluid" }} useInvertedBackground={false} inputPlaceholder="Enter your email" buttonText="Start Free Trial" -- 2.49.1 From a263795df50ee4dcac6e6ac01c9e6e6f37756b60 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:02:26 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index e2c1cd5..9f8524c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -4,11 +4,10 @@ interface SvgTextLogoProps { text?: string; className?: string; textClassName?: string; - dominantBaseline?: SVGTextElement['dominantBaseline']; } const SvgTextLogo = React.forwardRef(( - { text = 'Webild', className = 'w-24 h-auto', textClassName = 'text-2xl font-bold', dominantBaseline = 'middle' }, + { text = 'Webild', className = 'w-24 h-auto', textClassName = 'text-2xl font-bold' }, ref ) => { return ( @@ -21,7 +20,7 @@ const SvgTextLogo = React.forwardRef((