From 05d2d98602cd478bd6bd186802c001f265a2aeab Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:24:03 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++++++------------------------------------- 1 file changed, 9 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d7503bb..fe0cdea 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Premium Auto Detailing in Lathrop, CA | LG Detail Care", description: "Professional car detailing services in Lathrop, CA. 5-star rated. Exterior detail, interior deep clean, paint protection & more. Book your appointment today.", keywords: "auto detailing Lathrop CA, car detailer, mobile detail, professional detailing, paint protection", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Premium Auto Detailing in Lathrop, CA | LG Detail Care", description: "5-star professional car detailing services. Showroom shine guaranteed. Serving Lathrop and surrounding areas.", siteName: "LG Detail Care", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22299.jpg", alt: "Premium auto detailing service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Premium Auto Detailing in Lathrop, CA", description: "Professional car detailing with 5-star quality. Book now!", images: ["http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22299.jpg"], - }, + title: "LG Detail Care - Premium Auto Detailing in Lathrop, CA", description: "Professional auto detailing services in Lathrop, CA. Exterior details, interior deep cleaning, ceramic coating, and paint protection. 5-star rated. Free estimates.", keywords: "auto detailing Lathrop CA, car detailing, auto detail service, ceramic coating, paint protection, interior cleaning, exterior detail", openGraph: { + title: "LG Detail Care - Premium Auto Detailing in Lathrop, CA", description: "Professional auto detailing services in Lathrop, CA. Premium results, professional service, fair pricing.", type: "website"}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}