From 571c9cab680b6315043ca2bf9fe29aedf73d67ca Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 21:40:05 +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 1f8de5c..56c2051 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -87,7 +87,7 @@ export default function LandingPage() { ] }, { - title: "Execution Timeline", description: "Flawless coordination of every operational detail. Venue selection, vendor management, timeline orchestration, and contingency planning.", bentoComponent: "3d-task-list", title: "Execution Timeline", items: [ + title: "Execution Timeline", description: "Flawless coordination of every operational detail. Venue selection, vendor management, timeline orchestration, and contingency planning.", bentoComponent: "3d-task-list", items: [ { icon: CheckCircle, label: "Venue secured", time: "12 weeks prior" }, { icon: CheckCircle, label: "Vendors confirmed", time: "8 weeks prior" }, { icon: CheckCircle, label: "Full team briefing", time: "Day before" } -- 2.49.1 From 09d4517a556140ffde177a96a22f1d15a0c197c6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 21:40:05 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 66 +++++++++---------- 1 file changed, 30 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..2bfe6d4 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,45 @@ -"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; + fontFamily?: string; + fill?: string; + dominantBaseline?: 'auto' | 'text-top' | 'hanging' | 'middle' | 'central' | 'text-bottom' | 'ideographic' | 'mathematical' | 'inherit'; } -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 = 32, + fontWeight = '700', + fontFamily = 'system-ui, -apple-system, sans-serif', + fill = 'currentColor', + dominantBaseline = 'middle' +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1