From 0a61a2a53860cc644241dfb6adcd6da8f8efc8b3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 21:57:31 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b352770..3e63967 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -55,7 +55,6 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/empty-business-workspace-with-device-showing-data-analytics-infographics_482257-116612.jpg" imageAlt="strategy dashboard modern business metrics" frameStyle="browser" - mediaAnimation="slide-up" /> @@ -100,7 +99,6 @@ export default function LandingPage() { imageAlt="business framework strategy diagram planning" buttons={[{ text: "Learn Our Methodology", href: "#" }]} useInvertedBackground={false} - mediaAnimation="slide-up" /> -- 2.49.1 From 27d1c2aebbb6ec515e7f37ab43e229f04f629d7b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 21:57:31 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 53 ++++++------------- 1 file changed, 15 insertions(+), 38 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..f339b85 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,28 @@ -"use client"; +import React from 'react'; -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; - -interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; +export interface SvgTextLogoProps { + 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; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1