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"], }); export const metadata: Metadata = { title: "Auto Repair & Brake Shop in Chicago | USA Automotive Service", description: "Professional auto repair, brake service, and maintenance in Chicago. Honest pricing, experienced mechanics, fast turnaround. Call +1 773-238-1333 today.", keywords: "auto repair Chicago, brake service, mechanic, oil change, car maintenance, 60643", metadataBase: new URL("https://usaautomotiveservice.com"), alternates: { canonical: "https://usaautomotiveservice.com", }, openGraph: { title: "USA Automotive Service - Professional Auto Repair in Chicago", description: "Trusted auto repair and brake shop serving Chicago. Expert mechanics, honest pricing, fast service.", url: "https://usaautomotiveservice.com", siteName: "USA Automotive Service", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg", alt: "USA Automotive Service - Professional Auto Repair Shop Chicago", }, ], }, twitter: { card: "summary_large_image", title: "Professional Auto Repair & Brake Service in Chicago", description: "Trusted mechanics, honest pricing, expert service. Call +1 773-238-1333", images: ["http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}