Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4fa966eec3 | |||
| 4afdbe1580 | |||
| 97caa8161b | |||
| 00968214eb | |||
| 48907cfb31 | |||
| fe11f8efe4 | |||
| a75eeda401 | |||
| 4d6ba9ea18 | |||
| 0da34b589a | |||
| a19386dbb4 | |||
| 62dbc3cea7 |
@@ -1,75 +1,28 @@
|
|||||||
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 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,15 +48,14 @@ export default function HomePage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg?_wi=1"
|
imageSrc="https://images.unsplash.com/photo-1486578926078-52b16e3c5659?w=800&q=80&_wi=1"
|
||||||
imageAlt="USA Automotive Service professional auto repair shop"
|
imageAlt="USA Automotive Service professional auto repair shop"
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
name: "Danuta Stopka", handle: "Regular Customer", testimonial: "Phenomenal service with phenomenal prices. They really helped me out with my muffler. Great staff!! Thank you so much guys!!!", rating: 5,
|
name: "Danuta Stopka", handle: "Regular Customer", testimonial: "Phenomenal service with phenomenal prices. They really helped me out with my muffler. Great staff!! Thank you so much guys!!!", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=1", imageAlt: "Danuta Stopka - Customer"
|
imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&q=80&_wi=1", imageAlt: "Danuta Stopka - Customer"},
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now: +1 773-238-1333", href: "tel:+1-773-238-1333" },
|
{ text: "Call Now: +1 773-238-1333", href: "tel:+1-773-238-1333" },
|
||||||
@@ -78,38 +77,30 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Brake Services", description: "Expert brake pad replacement, rotors, calipers, and complete brake system diagnostics to ensure your safety on the road.", phoneOne: {
|
title: "Brake Services", description: "Expert brake pad replacement, rotors, calipers, and complete brake system diagnostics to ensure your safety on the road.", phoneOne: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-with-tool-wheel-hands-mechanic-blue-work-clothes_1157-46150.jpg", imageAlt: "Brake service - Mechanic checking brakes"
|
imageSrc: "https://images.unsplash.com/photo-1609708536965-1b42b6b8d59e?w=400&q=80", imageAlt: "Brake service - Mechanic checking brakes"},
|
||||||
},
|
|
||||||
phoneTwo: {
|
phoneTwo: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hvac-system-manometers_482257-90544.jpg?_wi=1", imageAlt: "Air conditioning service - HVAC system"
|
imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=400&q=80&_wi=1", imageAlt: "Air conditioning service - HVAC system"},
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Engine Repair & Diagnosis", description: "Advanced diagnostics and repair for engine performance issues, tuning, and complete engine overhauls with quality parts.", phoneOne: {
|
title: "Engine Repair & Diagnosis", description: "Advanced diagnostics and repair for engine performance issues, tuning, and complete engine overhauls with quality parts.", phoneOne: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-unrecognizable-mechanic-doing-car-service-maintenance_146671-19691.jpg", imageAlt: "Engine repair - Mechanic working on engine"
|
imageSrc: "https://images.unsplash.com/photo-1517420879433-29dcb7e96e4e?w=400&q=80", imageAlt: "Engine repair - Mechanic working on engine"},
|
||||||
},
|
|
||||||
phoneTwo: {
|
phoneTwo: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-auto-repairman-checking-car-oil-workshop_637285-7638.jpg", imageAlt: "Oil change service - Checking car oil"
|
imageSrc: "https://images.unsplash.com/photo-1506157786151-b8491531f063?w=400&q=80", imageAlt: "Oil change service - Checking car oil"},
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
title: "Air Conditioning & Climate Control", description: "AC installation, repair, and maintenance to keep your vehicle comfortable year-round with professional service.", phoneOne: {
|
title: "Air Conditioning & Climate Control", description: "AC installation, repair, and maintenance to keep your vehicle comfortable year-round with professional service.", phoneOne: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hvac-system-manometers_482257-90544.jpg?_wi=2", imageAlt: "AC repair - HVAC manometer system"
|
imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=400&q=80&_wi=2", imageAlt: "AC repair - HVAC manometer system"},
|
||||||
},
|
|
||||||
phoneTwo: {
|
phoneTwo: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/car-repair-maintenance-theme-mechanic-uniform-working-auto-service-checking-tyres_627829-3849.jpg?_wi=1", imageAlt: "Wheel service - Mechanic checking tires"
|
imageSrc: "https://images.unsplash.com/photo-1530124566582-a618bc2615dc?w=400&q=80&_wi=1", imageAlt: "Wheel service - Mechanic checking tires"},
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
title: "Wheel Alignment & Battery Service", description: "Precision wheel alignment and battery diagnostics to improve handling, fuel efficiency, and vehicle reliability.", phoneOne: {
|
title: "Wheel Alignment & Battery Service", description: "Precision wheel alignment and battery diagnostics to improve handling, fuel efficiency, and vehicle reliability.", phoneOne: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/car-repair-maintenance-theme-mechanic-uniform-working-auto-service-checking-tyres_627829-3849.jpg?_wi=2", imageAlt: "Wheel alignment - Mechanic working on tires"
|
imageSrc: "https://images.unsplash.com/photo-1530124566582-a618bc2615dc?w=400&q=80&_wi=2", imageAlt: "Wheel alignment - Mechanic working on tires"},
|
||||||
},
|
|
||||||
phoneTwo: {
|
phoneTwo: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/jump-starting-dead-battery-using-jumper-electrical-wires_1153-4393.jpg", imageAlt: "Battery service - Electrical repair jump starting"
|
imageSrc: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&q=80", imageAlt: "Battery service - Electrical repair jump starting"},
|
||||||
},
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -129,7 +120,7 @@ export default function HomePage() {
|
|||||||
description="11044 S Western Ave, Chicago"
|
description="11044 S Western Ave, Chicago"
|
||||||
subdescription="Professional Service Since Day One"
|
subdescription="Professional Service Since Day One"
|
||||||
icon={Wrench}
|
icon={Wrench}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg?_wi=2"
|
imageSrc="https://images.unsplash.com/photo-1486578926078-52b16e3c5659?w=600&q=80"
|
||||||
imageAlt="Professional auto repair technicians at work"
|
imageAlt="Professional auto repair technicians at work"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -141,19 +132,15 @@ export default function HomePage() {
|
|||||||
<TestimonialCardTwelve
|
<TestimonialCardTwelve
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Danuta Stopka", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=2", imageAlt: "Danuta Stopka - Happy Customer"
|
id: "1", name: "Danuta Stopka", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&q=80&_wi=2", imageAlt: "Danuta Stopka - Happy Customer"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2", name: "Michael Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=3", imageAlt: "Michael Rodriguez - Happy Customer"
|
id: "2", name: "Michael Rodriguez", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=150&q=80", imageAlt: "Michael Rodriguez - Happy Customer"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "Sarah Johnson - Happy Customer"
|
id: "3", name: "Sarah Johnson", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=150&q=80", imageAlt: "Sarah Johnson - 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"
|
id: "4", name: "James Wilson", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&q=80&_wi=3", 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"
|
||||||
@@ -171,7 +158,7 @@ export default function HomePage() {
|
|||||||
description="Call us now or fill out the form to schedule your service. We respond quickly and provide honest pricing on all repairs."
|
description="Call us now or fill out the form to schedule your service. We respond quickly and provide honest pricing on all repairs."
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/bold-metro-station-chatelet-paris_23-2148232435.jpg?_wi=1"
|
imageSrc="https://images.unsplash.com/photo-1486578926078-52b16e3c5659?w=800&q=80&_wi=2"
|
||||||
imageAlt="USA Automotive Service location in Chicago"
|
imageAlt="USA Automotive Service location in Chicago"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
@@ -207,11 +194,9 @@ export default function HomePage() {
|
|||||||
{ label: "Phone: +1 773-238-1333", href: "tel:+1-773-238-1333" },
|
{ label: "Phone: +1 773-238-1333", href: "tel:+1-773-238-1333" },
|
||||||
{ label: "Email: info@usaauto.com", href: "mailto:info@usaauto.com" },
|
{ label: "Email: info@usaauto.com", href: "mailto:info@usaauto.com" },
|
||||||
{
|
{
|
||||||
label: "Address: 11044 S Western Ave", href: "https://maps.google.com/?q=11044+S+Western+Ave+Chicago+IL+60643"
|
label: "Address: 11044 S Western Ave", href: "https://maps.google.com/?q=11044+S+Western+Ave+Chicago+IL+60643"},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Get Directions", href: "https://maps.google.com/?q=11044+S+Western+Ave+Chicago+IL+60643"
|
label: "Get Directions", href: "https://maps.google.com/?q=11044+S+Western+Ave+Chicago+IL+60643"},
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -235,4 +220,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user