From eba88064f2040d09e705d5d53505a1eef7e16ac0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:35:19 +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 4b9f94e..d01d344 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -189,7 +189,7 @@ export default function LandingPage() { id: "6", name: "Priya Sharma", handle: "@priya.visual", testimonial: "This academy taught me that great design requires both technical mastery and creative vision. The balance between art and process here is unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-posing-with-yellow-jacket-brush-stroke_23-2149020782.jpg", imageAlt: "Priya Sharma" } ]} - animationType="entrance-slide" + animationType="slide-up" textboxLayout="default" useInvertedBackground={false} speed={40} -- 2.49.1 From c83cb0be0db613f763f85b1d9f428a8e61ab1763 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:35:19 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 51 ++++++------------- 1 file changed, 15 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..36aaeb7 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,30 @@ -"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; } -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 = '' }) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1