Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-03-04 18:48:18 +00:00
2 changed files with 16 additions and 63 deletions

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>
);
}
}

View File

@@ -153,7 +153,7 @@ export default function HomePage() {
id: "4", name: "James Wilson", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=4", imageAlt: "James Wilson - Happy Customer"
},
]}
cardTitle="Thousands of Happy Customers Trust USA Automotive Service"
cardTitle="4.9★ Rating | 500+ 5-Star Reviews | Trusted Since 2005"
cardTag="See what they say about us"
cardTagIcon={Star}
cardAnimation="slide-up"
@@ -235,4 +235,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}