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" }
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 (
);
-});
+};
-SvgTextLogo.displayName = "SvgTextLogo";
-
-export default SvgTextLogo;
+export default SvgTextLogo;
\ No newline at end of file