diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e0560d3..5af14bd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,70 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "California Golden Detailers | Luxury Auto Detailing Los Angeles", - description: "Premium mobile auto detailing for exotic vehicles—Ferrari, Lamborghini, Rolls-Royce. Ceramic coating, paint correction, and luxury car care in Los Angeles.", - keywords: "luxury auto detailing, exotic car detailing, Ferrari detailing, Lamborghini detailing, ceramic coating, mobile detailing Los Angeles", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "California Golden Detailers - Luxury Auto Detailing", - description: "Experience premium mobile detailing for exotic and luxury vehicles. Expert care for Rolls-Royce, Ferrari, Lamborghini, and more.", - url: "https://californiagoldendetailers.com", - siteName: "California Golden Detailers", - images: [ - { - url: "http://img.b2bpic.net/free-photo/closeup-shot-exterior-details-modern-black-car_181624-25346.jpg", - alt: "Luxury Ferrari professional detailing", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "California Golden Detailers - Luxury Auto Care", - description: "Premium mobile detailing for exotic vehicles in Los Angeles", - images: ["http://img.b2bpic.net/free-photo/closeup-shot-exterior-details-modern-black-car_181624-25346.jpg"], - }, -}; + title: "California Golden Detailers | Luxury Auto Detailing", description: "Premium mobile detailing service for exotic and luxury vehicles including Ferrari, Lamborghini, Rolls-Royce, and Bugatti. Los Angeles-based with national recognition."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}