From c21fc59f1533b1d0f7dc490f4383b47db8136117 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:08:30 +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 3b50166..852bfc9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -105,7 +105,7 @@ export default function LandingPage() { { id: "4", value: "10K+", description: "Families helped rebuild their financial futures" } ]} useInvertedBackground={false} - metricsAnimation="entrance-slide" + metricsAnimation="blur-reveal" /> @@ -141,7 +141,7 @@ export default function LandingPage() { useInvertedBackground={false} mediaPosition="left" animationType="smooth" - faqsAnimation="entrance-slide" + faqsAnimation="blur-reveal" mediaAnimation="slide-up" /> -- 2.49.1 From b00c0d933fb9fc0ef294d6a0ece78ff028811239 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:08:30 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 63 ++++++++----------- 1 file changed, 27 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..29247a3 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,42 @@ -"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?: number | string; + letterSpacing?: number; + fill?: 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 = "", fontSize = 80, + fontWeight = 700, + letterSpacing = 2, + fill = "currentColor"}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1