From fe11f8efe478aaf2cd22be462514df0f37314c5d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:48:13 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 75 +++++++++------------------------------------- 1 file changed, 14 insertions(+), 61 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5d3de24..b53d663 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,29 @@ + import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -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"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); 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, - }, -}; + title: "USA Automotive Service - Auto Repair Chicago", description: "Professional auto repair, brake service, and maintenance in Chicago, IL. Trusted local mechanics since day one."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +