From a7fb3988c585876d5cc9818a7b65bce45a730c95 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 03:10:31 +0000 Subject: [PATCH 1/3] Update src/app/generator/page.tsx --- src/app/generator/page.tsx | 53 ++++++++++---------------------------- 1 file changed, 13 insertions(+), 40 deletions(-) diff --git a/src/app/generator/page.tsx b/src/app/generator/page.tsx index 8093d0b..c558d2e 100644 --- a/src/app/generator/page.tsx +++ b/src/app/generator/page.tsx @@ -19,8 +19,7 @@ export default function GeneratorPage() { const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Idea Generator", href: "/generator" }, { label: "Creator Tools", href: "#tools" }, { label: "Categories", href: "#categories" }, @@ -28,8 +27,7 @@ export default function GeneratorPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Creator Tips Blog", href: "/blog" }, { label: "Documentation", href: "#" }, { label: "API Reference", href: "#" }, @@ -37,8 +35,7 @@ export default function GeneratorPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#" }, { label: "Contact", href: "#" }, { label: "Privacy Policy", href: "#" }, @@ -54,7 +51,7 @@ export default function GeneratorPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="medium" - background="noise" + background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="radial-glow" @@ -64,9 +61,7 @@ export default function GeneratorPage() { @@ -75,7 +70,7 @@ export default function GeneratorPage() { Date: Wed, 11 Mar 2026 03:10:31 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 209 +++++++++++------------------------------------ 1 file changed, 48 insertions(+), 161 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bd65a3d..3ec2364 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -23,8 +23,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Idea Generator", href: "/generator" }, { label: "Creator Tools", href: "#tools" }, { label: "Categories", href: "#categories" }, @@ -32,8 +31,7 @@ export default function HomePage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Creator Tips Blog", href: "/blog" }, { label: "Documentation", href: "#" }, { label: "API Reference", href: "#" }, @@ -41,8 +39,7 @@ export default function HomePage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#" }, { label: "Contact", href: "#" }, { label: "Privacy Policy", href: "#" }, @@ -58,7 +55,7 @@ export default function HomePage() { borderRadius="soft" contentWidth="mediumLarge" sizing="medium" - background="noise" + background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="radial-glow" @@ -68,9 +65,7 @@ export default function HomePage() { @@ -79,13 +74,13 @@ export default function HomePage() { Date: Wed, 11 Mar 2026 03:10:32 +0000 Subject: [PATCH 3/3] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 59 +++++++------------ 1 file changed, 22 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..3e646e5 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,36 @@ -"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; className?: string; + fontSize?: number; + fontWeight?: string | number; + dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging"; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + className = "", fontSize = 48, + fontWeight = "bold", dominantBaseline = "middle"}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1