From 73bc8e4187be8602e10c8239809b46078c3e2ea4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:40:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a278a07..d210af9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,28 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Halant } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Refine Detailing | Mobile Car Detailing in Portland, Beaverton & Newberg", description: "Professional mobile car detailing services for Beaverton, Portland, and Newberg. Ceramic coating, interior cleaning, exterior detailing. Premium results delivered to your location.", keywords: "mobile car detailing, ceramic coating, car wash Portland, auto detailing Beaverton, vehicle detailing Newberg, professional car care", metadataBase: new URL("https://refinedetailing.com"), - openGraph: { - title: "Refine Detailing | Premium Mobile Car Care", description: "Expert mobile car detailing services across Portland metro area. Ceramic coating, interior & exterior detailing.", siteName: "Refine Detailing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22299.jpg", alt: "Professional car detailing service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Refine Detailing | Professional Mobile Car Detailing", description: "Mobile car detailing in Beaverton, Portland & Newberg. Book now for premium ceramic coating & detailing services.", images: ["http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22299.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Refine Detailing | Premium Mobile Car Detailing", description: "Professional car detailing services in Beaverton, Portland, and Newberg. Ceramic coating, interior deep cleaning, and paint protection."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +