From 2359e9d5ed1a5f0de09b4ada9da40b25c2315b53 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:11:25 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++--------------------------------------- 1 file changed, 6 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d26b266..3350948 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +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: "Detail Flow Mobile Car Detailing Tracy CA", description: "Professional mobile car detailing in Tracy, CA. Interior detail, full detail, paint correction, and ceramic coating services. We come to you!", keywords: "mobile car detailing Tracy, auto detailing California, ceramic coating Tracy, paint correction, car detail service", metadataBase: new URL("https://detailflow.local"), - alternates: { - canonical: "https://detailflow.local"}, - openGraph: { - title: "Detail Flow Mobile Car Detailing", description: "Professional car detailing service bringing expert results to your location in Tracy and surrounding areas.", url: "https://detailflow.local", siteName: "Detail Flow", type: "website"}, - twitter: { - card: "summary_large_image", title: "Detail Flow Mobile Car Detailing", description: "Professional car detailing at your location"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Detail Flow - Mobile Car Detailing in Tracy", description: "Professional mobile car detailing services in Tracy and surrounding areas. We come to you for convenient, high-quality car detailing."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}