diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 99a7bb4..2e5d825 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}