Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-03-11 13:02:29 +00:00
2 changed files with 4 additions and 5 deletions

View File

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

View File

@@ -4,11 +4,10 @@ interface SvgTextLogoProps {
text?: string;
className?: string;
textClassName?: string;
dominantBaseline?: SVGTextElement['dominantBaseline'];
}
const SvgTextLogo = React.forwardRef<SVGSVGElement, SvgTextLogoProps>((
{ 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<SVGSVGElement, SvgTextLogoProps>((
<text
x="50%"
y="50%"
dominantBaseline={dominantBaseline}
dominantBaseline="middle"
textAnchor="middle"
className={textClassName}
fill="currentColor"