Update src/app/layout.tsx

This commit is contained in:
2026-03-04 18:48:13 +00:00
parent a75eeda401
commit fe11f8efe4

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1437,7 +1391,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}