diff --git a/src/app/page.tsx b/src/app/page.tsx index fbe7098..c570bc2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -64,6 +64,7 @@ export default function LandingPage() { { id: "3", value: "100%", description: "Licensed & Insured" }, { id: "4", value: "24/7", description: "Emergency Availability" } ]} + metricsAnimation="slide-up" useInvertedBackground={false} /> @@ -102,8 +103,8 @@ export default function LandingPage() { description="Proven reliability in your community" subdescription="15 years serving with integrity" icon={CheckCircle} - imageSrc="http://img.b2bpic.net/free-photo/senior-man-looking-camera-smiling-sitting-workplace-desk_482257-5730.jpg?_wi=1" - imageAlt="Professional service business owner" + videoSrc="https://example.com/video.mp4" + videoAriaLabel="Professional service team introduction" useInvertedBackground={false} /> @@ -142,7 +143,7 @@ export default function LandingPage() { { + 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 = '', + textClassName = '', + ...svgProps +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file