From 8b783cb26e2a9efd29937014b5c5d051a5c45b29 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:23:32 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 158 ++++++++++++----------------------------- 1 file changed, 45 insertions(+), 113 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 84dd184..d8a2d84 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -44,42 +44,26 @@ const AboutPage = () => { { { { -- 2.49.1 From 2ec842367eb6c19c81d8d25772a10e6df236146d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:23:33 +0000 Subject: [PATCH 2/3] Update src/app/collections/page.tsx --- src/app/collections/page.tsx | 122 ++++++++++------------------------- 1 file changed, 33 insertions(+), 89 deletions(-) diff --git a/src/app/collections/page.tsx b/src/app/collections/page.tsx index a1562b2..ceb2c76 100644 --- a/src/app/collections/page.tsx +++ b/src/app/collections/page.tsx @@ -43,44 +43,28 @@ const CollectionsPage = () => { { { -- 2.49.1 From 1fb103c6bf71992bbe28676130b817f71dd506f9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:23:33 +0000 Subject: [PATCH 3/3] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 71 +++++++++---------- 1 file changed, 32 insertions(+), 39 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..f8df3c0 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,44 @@ -"use client"; +import { SVGProps } from 'react'; -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; - -interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; - className?: string; +interface SvgTextLogoProps extends SVGProps { + text: string; + fontSize?: number; + fontWeight?: string | number; + letterSpacing?: number; + fill?: string; + fontFamily?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export function SvgTextLogo({ + text, + fontSize = 48, + fontWeight = 'bold', + letterSpacing = 0, + fill = 'currentColor', + fontFamily = 'system-ui, -apple-system, sans-serif', + ...props +}: SvgTextLogoProps) { return ( - {logoText} + {text} ); -}); +} -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1