7 Commits

Author SHA1 Message Date
16d302b5c9 Update src/app/page.tsx 2026-03-04 11:59:57 +00:00
d450423f08 Update src/app/page.tsx 2026-03-04 11:58:51 +00:00
4032c106ff Merge version_2 into main
Merge version_2 into main
2026-03-04 11:56:43 +00:00
80cb214400 Update src/app/layout.tsx 2026-03-04 11:56:39 +00:00
a886ddc621 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:55:40 +00:00
cc8dae478a Merge version_1 into main
Merge version_1 into main
2026-03-04 11:54:49 +00:00
81144e03fc Merge version_1 into main
Merge version_1 into main
2026-03-04 11:53:31 +00:00
2 changed files with 11 additions and 42 deletions

View File

@@ -1,54 +1,21 @@
import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Madrid Auto Body | Professional Auto Repair & Collision Services Escondido", description: "Expert auto body repair, collision restoration, and custom painting in Escondido, California. Professional technicians, honest pricing, insurance accepted.", keywords: "auto body repair Escondido, collision repair, custom paint, dent removal, frame alignment, professional auto service", metadataBase: new URL("https://madridautobody.com"),
alternates: {
canonical: "https://madridautobody.com"
},
robots: {
index: true,
follow: true
},
openGraph: {
title: "Madrid Auto Body | Professional Auto Repair Escondido", description: "Expert collision repair and auto body services in Escondido. Trusted by the community for 20+ years.", url: "https://madridautobody.com", type: "website", siteName: "Madrid Auto Body", images: [
{
url: "http://img.b2bpic.net/free-photo/happy-black-auto-mechanic-working-car-workshop-looking-camera_637285-11545.jpg", alt: "Madrid Auto Body Shop Professional Services"
}
]
},
twitter: {
card: "summary_large_image", title: "Madrid Auto Body | Auto Repair Escondido", description: "Professional collision repair and custom auto body services", images: ["http://img.b2bpic.net/free-photo/happy-black-auto-mechanic-working-car-workshop-looking-camera_637285-11545.jpg"]
}
title: "Madrid Auto Body", description: "Professional collision repair, custom paint, and auto body restoration services in Escondido, California."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -106,10 +106,13 @@ export default function LandingPage() {
description="Proven expertise and customer satisfaction in every repair"
metrics={[
{
id: "1", value: "20+", title: "Years Experience", description: "Trusted by Escondido community", imageSrc: "http://img.b2bpic.net/free-photo/car-repair-maintenance-theme-mechanic-uniform-working-auto-service_627829-3903.jpg", imageAlt: "Professional auto body shop"
id: "1", value: "20+", title: "Years Experience", description: "Trusted by Escondido community", imageSrc: "http://img.b2bpic.net/free-photo/car-repair-maintenance-theme-mechanic-uniform-working-auto-service_627829-3903.jpg?_wi=1", imageAlt: "Professional auto body shop"
},
{
id: "2", value: "1000+", title: "Vehicles Repaired", description: "Satisfaction guaranteed quality", imageSrc: "http://img.b2bpic.net/free-photo/garage-engineers-replace-vehicle-oil_482257-115297.jpg?_wi=3", imageAlt: "Successfully repaired vehicles"
},
{
id: "3", value: "100%", title: "Insurance Approved", description: "Compatible with all major insurers", imageSrc: "http://img.b2bpic.net/free-photo/car-repair-maintenance-theme-mechanic-uniform-working-auto-service_627829-3903.jpg?_wi=2", imageAlt: "Insurance approved certification"
}
]}
textboxLayout="default"