import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Jack's Pressure Washing | Local Driveway & Patio Cleaning", description: "Professional pressure washing service for driveways, patios, trash cans, and more. Call 559-400-9003 for a free quote. Happy to serve my neighbors!", keywords: "pressure washing near me, driveway cleaning, patio pressure washing, trash can cleaning service, local pressure washing, car wash service", robots: { index: true, follow: true, }, openGraph: { title: "Jack's Pressure Washing | Local Driveway & Patio Cleaning", description: "Professional pressure washing service for driveways, patios, trash cans, and more. Call 559-400-9003 for a free quote.", url: "https://jackspressurewashing.local", siteName: "Jack's Pressure Washing", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/factory-worker-standing-metal-platform-industrial-storage-tanks-looking-up-visual-inspection-silos-food-production_342744-450.jpg", alt: "Jack's Pressure Washing - Professional cleaning service"}, ], }, twitter: { card: "summary_large_image", title: "Jack's Pressure Washing | Local Driveway & Patio Cleaning", description: "Call 559-400-9003 for professional pressure washing. Happy to serve my neighbors!", images: ["http://img.b2bpic.net/free-photo/factory-worker-standing-metal-platform-industrial-storage-tanks-looking-up-visual-inspection-silos-food-production_342744-450.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}