From 623e98a60a89639318d5b74a5b6ac09515016598 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 09:42:48 +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 bd51f20..5e50d74 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import FaqBase from '@/components/sections/faq/FaqBase'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Award, Clock, Download, FileVideo, Film, Gauge, HelpCircle, Layers, MessageCircle, Play, RefreshCw, Rocket, Scissors, Settings, Sparkles, Star, Wand2, Zap } from 'lucide-react'; +import { Award, Clock, Download, FileVideo, Film, Gauge, HelpCircle, Layers, MessageCircle, Play, RefreshCw, Rocket, Scissors, Settings, Sparkles, Star, Wand2, Zap, Users } from 'lucide-react'; export default function LandingPage() { return ( @@ -115,7 +115,7 @@ export default function LandingPage() { ] }, { - title: "Master Workflow", description: "Optimize your editing process for maximum efficiency", bentoComponent: "3d-task-list", title: "Master Workflow", items: [ + title: "Master Workflow", description: "Optimize your editing process for maximum efficiency", bentoComponent: "3d-task-list", items: [ { icon: FileVideo, label: "Import & Organize", time: "Module 1" }, { icon: Scissors, label: "Cut & Trim", time: "Module 2" }, { icon: Gauge, label: "Render & Export", time: "Module 5" } -- 2.49.1 From 354c7d46720e28cfea761b0bbc9d567863c8810d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 09:42:49 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 62 ++++++++----------- 1 file changed, 26 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..e98f874 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,41 @@ -"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; + fontSize?: number; + fontFamily?: string; + fontWeight?: number; + fill?: string; className?: 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, + fontSize = 24, + fontFamily = 'Arial, sans-serif', + fontWeight = 700, + fill = 'currentColor', + className = '', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1