import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "AutoShine Detail | Professional Car Detailing Services", description: "Expert car detailing services that transform your vehicle. Premium paint protection, interior restoration, and showroom shine guaranteed.", keywords: "car detailing, professional detailing, paint protection, ceramic coating, auto detailing, car wash, vehicle maintenance", robots: { index: true, follow: true }, openGraph: { title: "AutoShine Detail | Professional Car Detailing", description: "Transform your vehicle with premium professional detailing services", type: "website", siteName: "AutoShine Detail" }, twitter: { card: "summary_large_image", title: "AutoShine Detail - Professional Car Detailing", description: "Expert car detailing services for your valued vehicle" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}