From a7017d64ea39883fc37640be2fbb204b82c22f77 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:26:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1416 +------------------------------------------- 1 file changed, 11 insertions(+), 1405 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 00b6647..12ab605 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,27 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Premium Car Detailing Miami | RESERVE Detailing® Brickell", description: "Professional car detailing in Miami with 2,750+ 5-star reviews. Interior & exterior detailing for luxury vehicles. Call (786) 642-9018 or get a free quote today.", keywords: "car detailing Miami, auto detailing Brickell, car wash Miami, interior detailing, ceramic coating, luxury car care", metadataBase: new URL("https://reservedetailing.com"), - alternates: { - canonical: "https://reservedetailing.com" - }, - openGraph: { - title: "Premium Car Detailing in Miami | RESERVE Detailing®", description: "Professional car detailing with 2,750+ 5-star reviews. Premium interior and exterior detailing for luxury vehicles in Brickell.", url: "https://reservedetailing.com", siteName: "RESERVE Detailing®", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193589.jpg", alt: "Premium car detailing service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Premium Car Detailing Miami | RESERVE Detailing®", description: "Professional car detailing with 2,750+ reviews. Get a free quote today.", images: ["http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193589.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "RESERVE Detailing® | Premium Car Detailing Miami", description: "Professional car detailing in Brickell, Miami. Premium interior and exterior detailing for luxury vehicles. 2,750+ five-star reviews."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -