From 3a8428b1c32e032bf8017c7ed7c225b6055a6c28 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:58:41 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1425 -------------------------------------------- 1 file changed, 1425 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0bb9ab5..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Auto Repair Shop Garden Grove | ADAS Specialists | Adas Exclusive", description: "Professional auto repair, vehicle diagnostics, and ADAS specialists in Garden Grove, CA. Honest service, expert technicians, 7 AM–7 PM daily. Call (714) 555-1234.", keywords: "auto repair Garden Grove, vehicle diagnostics, ADAS specialists, car maintenance, check engine light, pre-purchase inspection", metadataBase: new URL("https://adasexclusive.com"), - alternates: { - canonical: "https://adasexclusive.com"}, - openGraph: { - title: "Trusted Auto Repair & ADAS Specialists in Garden Grove | Adas Exclusive", description: "Expert vehicle diagnostics, ADAS repair, and honest service. Open 7 AM–7 PM. Garden Grove's trusted automotive repair shop.", url: "https://adasexclusive.com", siteName: "Adas Exclusive", type: "website", images: [ - { - url: "https://adasexclusive.com/og-image.jpg", alt: "Adas Exclusive Auto Repair Shop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Trusted Auto Repair in Garden Grove | Adas Exclusive", description: "Professional ADAS diagnostics, vehicle maintenance, honest service. (714) 555-1234", images: ["https://adasexclusive.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -