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"
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() {
{
+ 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 (
);
-});
-
-SvgTextLogo.displayName = "SvgTextLogo";
-
-export default SvgTextLogo;
+}
\ No newline at end of file