From 3f3f918b73eba0a94dcdfdccd65352d31c879da0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:07:40 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9a5ae4d..2380934 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -104,6 +104,9 @@ export default function LandingPage() { tag="Partners" textboxLayout="default" useInvertedBackground={true} + names={[ + "Apple", "Google", "Microsoft", "Figma", "Stripe", "Notion", "Vercel" + ]} logos={[ "http://img.b2bpic.net/free-photo/notepad-with-fruit-black-desk_23-2148193381.jpg", "http://img.b2bpic.net/free-photo/multi-colored-spheres-bright-celebration-backdrop-generated-by-ai_188544-11875.jpg", "http://img.b2bpic.net/free-vector/web-development-concept-set_1284-6769.jpg", "http://img.b2bpic.net/free-vector/design-process-concept-landing-page_23-2148314296.jpg", "http://img.b2bpic.net/free-vector/green-circuit-background_23-2147610540.jpg", "http://img.b2bpic.net/free-vector/flat-business-banners-soft-tones_23-2147552344.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-nerd-logo-template_23-2149208857.jpg" ]} -- 2.49.1 From 99e5fc54af5dabca8eeecdddb34e6d643d4f1832 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:07:40 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 60 ++++++++----------- 1 file changed, 24 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..afda144 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,39 @@ -"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?: string; + letterSpacing?: number; } -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 = 48, + fontWeight = 'bold', + letterSpacing = 0, +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1