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: "Professional Cleaning Services | CleanPro", description: "Expert cleaning services for homes and offices. 14+ years of trusted, reliable service. Book your cleaning today.", keywords: "cleaning service, professional cleaners, residential cleaning, commercial cleaning, house cleaning", robots: { index: true, follow: true }, openGraph: { title: "Professional Cleaning Services | CleanPro", description: "Keep your space clean and healthy with our professional cleaning services.", type: "website", siteName: "CleanPro" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}