From ea4ace15584ed0d79442f65dabe9e17c2d4d213a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 21:48:01 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 71c2f05..dd26b68 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -140,7 +140,7 @@ export default function LandingPage() { { text: "Visit Store", href: "#" } ]} buttonAnimation="slide-up" - background={{ variant: "glowing-orb" }} + background={{ variant: "plain" }} useInvertedBackground={false} /> -- 2.49.1 From 2b2f80f22b8997b50b5e9230f520da26af9d887b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 21:48:01 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 66 ++++++++----------- 1 file changed, 28 insertions(+), 38 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..9cf1d1d 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,41 @@ -"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?: 'normal' | 'bold' | 'lighter' | 'bolder' | number; + fill?: string; + textAnchor?: 'start' | 'middle' | 'end'; + dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'hanging' | 'mathematical'; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export default function SvgTextLogo({ + text, + className = '', + fontSize = 24, + fontWeight = 'bold', + fill = 'currentColor', + textAnchor = 'start', + dominantBaseline = 'auto', +}: SvgTextLogoProps) { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +} -- 2.49.1