From 343e84fb86cbce28b44c5858bb651ac9db500d04 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 12:01:55 +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 dd4ae7e..8ba6966 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Globe, Microphone, Star, Zap } from 'lucide-react'; +import { Globe, Mic, Star, Zap } from 'lucide-react'; export default function LandingPage() { return ( @@ -107,7 +107,7 @@ export default function LandingPage() { metrics={[ { icon: Globe, label: "Languages", value: "3+" }, { icon: Zap, label: "Character Range", value: "Infinite" }, - { icon: Microphone, label: "Professional Setup", value: "Studio" }, + { icon: Mic, label: "Professional Setup", value: "Studio" }, { icon: Star, label: "Emotional Range", value: "Dynamic" } ]} metricsAnimation="slide-up" -- 2.49.1 From 003989215d29c249c9d2f3b960e583d6a59b9b56 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 12:01:55 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 67 +++++++++---------- 1 file changed, 32 insertions(+), 35 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..659e3fc 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,48 @@ -"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; + width?: number; + height?: number; + fontSize?: number; 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, + width = 400, + height = 100, + fontSize = 48, + className = ""}) => { return ( + + + + + + - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1