From 3b9b8c85a6d8f280bd9c7c435fb332dae64b9c51 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:38:24 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 107 +++++++++++------------------------------------ 1 file changed, 24 insertions(+), 83 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 43ddd90..374c9e8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -21,8 +21,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Brake Repair", href: "/services" }, { label: "Engine Diagnostics", href: "/services" }, { label: "Oil Changes", href: "/services" }, @@ -30,16 +29,14 @@ export default function HomePage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/#about" }, { label: "Contact", href: "/#contact" }, { label: "Testimonials", href: "/#testimonial" }, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "124 Nevada St, El Segundo, CA 90245", href: "#" }, { label: "(310) 322-3482", href: "tel:(310)322-3482" }, { label: "Service Request", href: "/#contact" }, @@ -54,7 +51,7 @@ export default function HomePage() { borderRadius="soft" contentWidth="compact" sizing="medium" - background="noise" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="gradient" secondaryButtonStyle="layered" @@ -73,7 +70,7 @@ export default function HomePage() { @@ -180,35 +135,21 @@ export default function HomePage() { ctaTitle="Need your car checked today?" ctaDescription="Get professional diagnostics and quality repairs. Call now to schedule your appointment with our experienced team." ctaButton={{ - text: "Call Now", - href: "tel:(310)322-3482", - }} + text: "Call Now", href: "tel:(310)322-3482"}} ctaIcon={Phone} faqs={[ { - id: "1", - title: "What types of vehicles do you service?", - content: - "We service all makes and models including domestic and imported vehicles. From routine maintenance to major repairs, our experienced mechanics handle it all with expertise.", - }, + id: "1", title: "What types of vehicles do you service?", content: + "We service all makes and models including domestic and imported vehicles. From routine maintenance to major repairs, our experienced mechanics handle it all with expertise."}, { - id: "2", - title: "How long do repairs typically take?", - content: - "Most repairs are completed within 24-48 hours. Simple maintenance like oil changes can often be done same-day. We'll always give you an honest timeline upfront.", - }, + id: "2", title: "How long do repairs typically take?", content: + "Most repairs are completed within 24-48 hours. Simple maintenance like oil changes can often be done same-day. We'll always give you an honest timeline upfront."}, { - id: "3", - title: "Do you offer warranty on repairs?", - content: - "Yes, we stand behind our work. All repairs include a warranty period so you can have peace of mind. Ask about the specific warranty on your service.", - }, + id: "3", title: "Do you offer warranty on repairs?", content: + "Yes, we stand behind our work. All repairs include a warranty period so you can have peace of mind. Ask about the specific warranty on your service."}, { - id: "4", - title: "How do you determine fair pricing?", - content: - "We diagnose issues thoroughly and provide transparent estimates. We never recommend unnecessary work. You'll always know what you're paying for before we begin.", - }, + id: "4", title: "How do you determine fair pricing?", content: + "We diagnose issues thoroughly and provide transparent estimates. We never recommend unnecessary work. You'll always know what you're paying for before we begin."}, ]} useInvertedBackground={true} animationType="slide-up" -- 2.49.1 From dc65c6fd7925b107017056e5ffd028b434f1a9ca Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:38:24 +0000 Subject: [PATCH 2/3] Update src/app/services/page.tsx --- src/app/services/page.tsx | 58 +++++++++++---------------------------- 1 file changed, 16 insertions(+), 42 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 7d75267..60ff49e 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -19,8 +19,7 @@ export default function ServicesPage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Brake Repair", href: "#services" }, { label: "Engine Diagnostics", href: "#services" }, { label: "Oil Changes", href: "#services" }, @@ -28,16 +27,14 @@ export default function ServicesPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/" }, { label: "Contact", href: "#contact" }, { label: "Testimonials", href: "/" }, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "124 Nevada St, El Segundo, CA 90245", href: "#" }, { label: "(310) 322-3482", href: "tel:(310)322-3482" }, { label: "Service Request", href: "#contact" }, @@ -52,7 +49,7 @@ export default function ServicesPage() { borderRadius="soft" contentWidth="compact" sizing="medium" - background="noise" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="gradient" secondaryButtonStyle="layered" @@ -71,7 +68,7 @@ export default function ServicesPage() { Date: Thu, 12 Mar 2026 05:38:25 +0000 Subject: [PATCH 3/3] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 66 ++++++++----------- 1 file changed, 27 insertions(+), 39 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..4a1b737 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,39 @@ -"use client"; +import { 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 { + text?: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export default function SvgTextLogo({ + text = 'WEBILD', + className = '', + ...props +}: SvgTextLogoProps) { return ( + + + + + + - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +} \ No newline at end of file -- 2.49.1