From 4ed64b57ba40c96f02d9aac8b30eb50e6cab3051 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 22:41:09 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 55b1f90..cd31194 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -134,7 +134,6 @@ export default function LandingPage() { tag="Learn" tagIcon={BookOpen} mediaPosition="left" - textboxLayout="default" useInvertedBackground={false} imageSrc="http://img.b2bpic.net/free-photo/rabbit-lies-cage-girl-with-rabbit-brown-rabbit-close-up_169016-63726.jpg" imageAlt="Snake enclosure with proper heating setup" -- 2.49.1 From a32249f52c0795b39e885bec025bb78340d4876c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 22:41:09 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 56 +++++++------------ 1 file changed, 20 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..5958b7a 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,35 @@ -"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; + dominantBaseline?: 'auto' | 'text-top' | 'middle' | 'central' | 'text-bottom' | 'ideographic' | 'mathematical' | 'hanging'; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ + text, + className = '', + dominantBaseline = 'middle', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1