From b417ddad583bdeec7ee3725dc7a99fc21ea6f7d6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:48:46 +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 58ad4a8..b1a1c93 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -48,7 +48,7 @@ export default function LandingPage() { tagAnimation="slide-up" title="Make Money Online with AI in Minutes, Not Years" description="Join thousands of teenagers and beginners earning real income through AI-powered music creation, content generation, and automation. Start your journey to financial freedom today." - background={{ variant: "circleGradient" }} + background={{ variant: "plain" }} mediaItems={[ { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AqMNTCJ3tyizEmyXtS1vYAjOIT/a-futuristic-ai-earnings-dashboard-inter-1773315799951-db3fc3f4.png", imageAlt: "AI earnings dashboard showing real-time income tracking" @@ -193,7 +193,7 @@ export default function LandingPage() { { text: "Schedule a Call", href: "https://example.com/calendar" } ]} buttonAnimation="slide-up" - background={{ variant: "circleGradient" }} + background={{ variant: "plain" }} useInvertedBackground={false} /> From 31f118d16309022cbc83a35441466490964b80e5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:48:46 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 59 ++++++++----------- 1 file changed, 23 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..579e325 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,38 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; +import React from 'react'; interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; + text?: string; + fontSize?: number; + fontWeight?: string; + fill?: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text = 'LOGO', + fontSize = 48, + fontWeight = '700', + fill = '#000000', + className = '', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file