From cc09ae9e5ae0c10a69e242c6b6de34b510f24b39 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 07:29:54 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9181ca1..121da00 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,13 +10,13 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Award, BarChart3, CheckCircle, Globe, Heart, Play, Rocket, Shield, Sparkles, Target, TrendingUp, Users, Zap } from 'lucide-react'; +import { Award, BarChart3, CheckCircle, Heart, Play, Rocket, Shield, Sparkles, Target, TrendingUp, Users, Zap } from 'lucide-react'; export default function LandingPage() { return ( @@ -97,7 +97,7 @@ export default function LandingPage() { ] }, { - title: "Implementation Roadmap", description: "Guided execution of strategic recommendations with measurable outcomes.", bentoComponent: "3d-task-list", title: "Implementation Roadmap", items: [ + title: "Implementation Roadmap", description: "Guided execution of strategic recommendations with measurable outcomes.", bentoComponent: "3d-task-list", items: [ { icon: CheckCircle, label: "Strategy Development", time: "Week 1-2" }, { icon: Play, label: "Execution Launch", time: "Week 3-4" }, { icon: BarChart3, label: "Performance Monitoring", time: "Ongoing" } -- 2.49.1 From 1d8fa06d806c2ed16b942a70e354c848e67e1973 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 07:29:55 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 57 +++++++------------ 1 file changed, 21 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..d2fe8ae 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,36 @@ -"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; + textClassName?: 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 = 'w-full h-auto', + textClassName = 'text-4xl font-bold', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1