Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-03-11 17:02:51 +00:00
2 changed files with 27 additions and 39 deletions

View File

@@ -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}
/>
</div>
@@ -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}
/>
</div>
@@ -142,7 +143,7 @@ export default function LandingPage() {
<TeamCardSix
members={[
{
id: "1", name: "James Wilson", role: "Lead Technician", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-looking-camera-smiling-sitting-workplace-desk_482257-5730.jpg?_wi=2", imageAlt: "James Wilson, Lead Technician"
id: "1", name: "James Wilson", role: "Lead Technician", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-looking-camera-smiling-sitting-workplace-desk_482257-5730.jpg", imageAlt: "James Wilson, Lead Technician"
},
{
id: "2", name: "Marcus Thompson", role: "Senior Technician", imageSrc: "http://img.b2bpic.net/free-photo/system-administrator-walking-data-center-used-managing-gear-energy_482257-116015.jpg", imageAlt: "Marcus Thompson, Senior Technician"

View File

@@ -1,51 +1,38 @@
"use client";
import React, { SVGProps } from 'react';
import { memo } from "react";
import useSvgTextLogo from "./useSvgTextLogo";
import { cls } from "@/lib/utils";
interface SvgTextLogoProps {
logoText: string;
adjustHeightFactor?: number;
verticalAlign?: "top" | "center";
interface SvgTextLogoProps extends SVGProps<SVGSVGElement> {
text: string;
className?: string;
textClassName?: string;
}
const SvgTextLogo = memo<SvgTextLogoProps>(function SvgTextLogo({
logoText,
adjustHeightFactor,
verticalAlign = "top",
className = "",
}) {
const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = '',
textClassName = '',
...svgProps
}) => {
return (
<svg
ref={svgRef}
viewBox={viewBox}
className={cls("w-full", className)}
style={{ aspectRatio: aspectRatio }}
preserveAspectRatio="none"
role="img"
aria-label={`${logoText} logo`}
viewBox={`0 0 ${text.length * 60} 100`}
className={`w-full h-auto ${className}`}
{...svgProps}
>
<text
ref={textRef}
x="0"
y={verticalAlign === "center" ? "50%" : "0"}
className="font-bold fill-current"
x="50%"
y="50%"
dominantBaseline="middle"
textAnchor="middle"
className={`text-4xl font-bold fill-current ${textClassName}`}
style={{
fontSize: "20px",
letterSpacing: "-0.02em",
dominantBaseline: verticalAlign === "center" ? "middle" : "text-before-edge"
fontSize: 'clamp(2rem, 8vw, 4rem)',
fontWeight: 700,
}}
>
{logoText}
{text}
</text>
</svg>
);
});
};
SvgTextLogo.displayName = "SvgTextLogo";
export default SvgTextLogo;
export default SvgTextLogo;