diff --git a/src/app/page.tsx b/src/app/page.tsx index 392eeba..63740ef 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="compact" sizing="large" - background="noise" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="double-inset" secondaryButtonStyle="glass" @@ -44,17 +44,17 @@ export default function LandingPage() { description="Professional mechanical repairs, diagnostics, and auto body services you can rely on. Expert mechanics with honest pricing and fast turnaround times." tag="4.8★ Rated" tagIcon={Star} - background={{ variant: "noise" }} + background={{ variant: "plain" }} buttons={[ { text: "Call Now", href: "tel:0123274208" }, { text: "Book Service" } ]} carouselItems={[ - { id: "1", imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580560.jpg?_wi=1", imageAlt: "Professional auto repair workshop" }, - { id: "2", imageSrc: "http://img.b2bpic.net/free-photo/worker-follows-car-checklist-fixing-tires_482257-75661.jpg?_wi=1", imageAlt: "Mechanic performing vehicle engine diagnostics" }, + { id: "1", imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580560.jpg", imageAlt: "Professional auto repair workshop" }, + { id: "2", imageSrc: "http://img.b2bpic.net/free-photo/worker-follows-car-checklist-fixing-tires_482257-75661.jpg", imageAlt: "Mechanic performing vehicle engine diagnostics" }, { id: "3", imageSrc: "http://img.b2bpic.net/free-photo/engineer-projects-car-engine-ar-hologram_482257-76523.jpg", imageAlt: "Professional mechanics team" }, { id: "4", imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-fixing-car-wheel-disc-brake_1170-1215.jpg", imageAlt: "Brake system repair service" }, - { id: "5", imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580560.jpg?_wi=2", imageAlt: "Clean workshop environment" }, + { id: "5", imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580560.jpg", imageAlt: "Clean workshop environment" }, { id: "6", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-showing-customer-problem-with-car_1170-1413.jpg", imageAlt: "Modern service center" } ]} autoPlay={true} @@ -80,7 +80,7 @@ export default function LandingPage() { description="E & M Services provides comprehensive automotive solutions tailored to your vehicle's needs." tag="Expert Services" tagIcon={Wrench} - imageSrc="http://img.b2bpic.net/free-photo/worker-follows-car-checklist-fixing-tires_482257-75661.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/worker-follows-car-checklist-fixing-tires_482257-75661.jpg" imageAlt="Professional auto repair in progress" mediaAnimation="slide-up" accordionItems={[ @@ -147,7 +147,7 @@ export default function LandingPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + className = '', + textClassName = '', + fontSize = 48, + fontFamily = 'Arial, sans-serif', + fontWeight = 'bold', + fill = 'currentColor', + letterSpacing = 0, +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file