diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 75ceeff..51943d6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Honest Auto Repair in Maple Ridge | Ridge Motors", description: "Expert auto repair and tire service from a mechanic you can trust. Fair pricing, transparent diagnostics, and service that feels personal. Ridge Motors.", keywords: "auto repair, tire service, mechanic, Maple Ridge, honest repair, fair pricing, vehicle maintenance", metadataBase: new URL("https://ridgemotors.ca"), - alternates: { - canonical: "https://ridgemotors.ca"}, - openGraph: { - title: "Honest Auto Repair You Can Trust", description: "Expert diagnostics, fair pricing, and service that feels personal. Ridge Motors Auto Repair & Tires.", url: "https://ridgemotors.ca", siteName: "Ridge Motors", type: "website"}, - twitter: { - card: "summary_large_image", title: "Ridge Motors - Trusted Auto Repair", description: "Honest auto repair and tire service from a mechanic you can trust for the long term."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Ridge Motors - Trusted Auto Repair & Tire Service", description: "Expert auto repair and tire service in Maple Ridge. Honest diagnostics, fair pricing, and service you can trust."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -