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" } 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