From fa122a4bcd984ecf68a2df303c4edadfd6265cb0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 16:14:50 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1437 +------------------------------------------- 1 file changed, 7 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6215c5c..0146f14 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Full Service Auto Detailz | Premium Car Detailing St. Petersburg, FL", - description: "Professional auto detailing services in St. Petersburg, FL. Interior & exterior detailing, paint protection, ceramic coating. 5-star rated. Call (727) 768-9287 to book.", - keywords: "car detailing St Petersburg FL, auto detailing, interior detailing, exterior detailing, paint protection, ceramic coating, professional car cleaning", - metadataBase: new URL("https://fullserviceautodetailz.com"), - alternates: { - canonical: "https://fullserviceautodetailz.com", - }, - openGraph: { - title: "Full Service Auto Detailz | Premium Auto Detailing", - description: "Transform your vehicle with professional detailing services. 5-star rated in St. Petersburg, FL.", - url: "https://fullserviceautodetailz.com", - siteName: "Full Service Auto Detailz", - type: "website", - images: [ - { - url: "https://fullserviceautodetailz.com/og-image.jpg", - alt: "Premium car detailing - Full Service Auto Detailz", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Full Service Auto Detailz - Premium Car Detailing", - description: "Professional auto detailing in St. Petersburg, FL. Interior, exterior, and paint protection services.", - images: ["https://fullserviceautodetailz.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Full Service Auto Detailz - Premium Auto Detailing in St. Petersburg", description: "Professional auto detailing services in St. Petersburg, FL. Interior and exterior detailing, paint protection, ceramic coating, and engine cleaning."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -