Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 12:53:36 +00:00
2 changed files with 10 additions and 47 deletions

View File

@@ -1,52 +1,16 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Al Hajis Auto Repair Garage | Expert Car Service in Al Ain", description: "Professional auto repair services in Al Ain, UAE. Expert mechanics, honest pricing, fast service. Mechanical repairs, engine diagnostics, battery replacement, and emergency roadside assistance.", keywords: "auto repair Al Ain, car service, mechanical repair, engine diagnostics, battery replacement, transmission repair, mobile mechanic, roadside assistance UAE", metadataBase: new URL("https://alhajisgarage.ae"),
alternates: {
canonical: "https://alhajisgarage.ae"},
openGraph: {
title: "Al Hajis Auto Repair Garage | Expert Car Service in Al Ain", description: "Trusted auto repair service in Al Ain. Professional mechanics, honest pricing, fast turnaround. Mechanical repairs, diagnostics, emergency help available.", url: "https://alhajisgarage.ae", siteName: "Al Hajis Auto Repair Garage", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/mechanic-using-control-box_107420-95946.jpg", alt: "Al Hajis Auto Repair Garage - Professional automotive service center"},
],
},
twitter: {
card: "summary_large_image", title: "Al Hajis Auto Repair Garage | Expert Car Service in Al Ain", description: "Professional auto repair in Al Ain. Experienced mechanics, fair pricing, emergency assistance 24/7.", images: ["http://img.b2bpic.net/free-photo/mechanic-using-control-box_107420-95946.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Al Hajis Auto Repair Garage - Professional Car Repair in Al Ain", description: "Expert auto repair services in Al Ain, UAE. Professional mechanics, honest pricing, and fast service for all car repairs and maintenance."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1378,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -57,7 +57,7 @@ export default function LandingPage() {
]}
brandName="Al Hajis"
bottomLeftText="Al Ain, UAE"
bottomRightText="+971 3 764 5678"
bottomRightText="0506894050"
/>
</div>
@@ -72,7 +72,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/mechanic-using-control-box_107420-95946.jpg?_wi=1"
imageAlt="Professional auto repair garage workshop"
buttons={[
{ text: "Call Now", href: "tel:+971376456780" },
{ text: "Call Now", href: "tel:0506894050" },
{ text: "Request Service", href: "#contact" },
]}
buttonAnimation="blur-reveal"
@@ -225,7 +225,7 @@ export default function LandingPage() {
<ContactSplit
tag="Contact Us"
title="Get in Touch With Al Hajis Auto Repair Garage"
description="Located in Al Ain, UAE. Contact us for service inquiries, quotes, or emergency breakdown assistance. Our team is ready to help you."
description="Located in Al Ain, UAE. Contact us for service inquiries, quotes, or emergency breakdown assistance. Our team is ready to help you. Call us at 0506894050."
tagIcon={Phone}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -267,12 +267,12 @@ export default function LandingPage() {
},
{
title: "Contact", items: [
{ label: "Phone: +971 3 764 5678", href: "tel:+971376456780" },
{ label: "Phone: 0506894050", href: "tel:0506894050" },
{ label: "Location: Al Ain, UAE", href: "#contact" },
{
label: "Email: info@alhajisgarage.ae", href: "mailto:info@alhajisgarage.ae"},
{
label: "Emergency: +971 50 123 4567", href: "tel:+971501234567"},
label: "Emergency: 0506894050", href: "tel:0506894050"},
],
},
]}