7 Commits

Author SHA1 Message Date
48907cfb31 Update src/app/page.tsx 2026-03-04 18:48:13 +00:00
fe11f8efe4 Update src/app/layout.tsx 2026-03-04 18:48:13 +00:00
a75eeda401 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:47:19 +00:00
4d6ba9ea18 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:46:17 +00:00
0da34b589a Merge version_1 into main
Merge version_1 into main
2026-03-04 18:43:50 +00:00
a19386dbb4 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:42:07 +00:00
62dbc3cea7 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:40:00 +00:00
2 changed files with 16 additions and 63 deletions

View File

@@ -1,75 +1,29 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", variable: "--font-geist-sans", subsets: ["latin"],
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", variable: "--font-geist-mono", subsets: ["latin"],
subsets: ["latin"],
});
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Auto Repair & Brake Shop in Chicago | USA Automotive Service", title: "USA Automotive Service - Auto Repair Chicago", description: "Professional auto repair, brake service, and maintenance in Chicago, IL. Trusted local mechanics since day one."};
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({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1437,7 +1391,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </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" 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" cardTag="See what they say about us"
cardTagIcon={Star} cardTagIcon={Star}
cardAnimation="slide-up" cardAnimation="slide-up"
@@ -235,4 +235,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }