Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-08 18:23:19 +00:00
2 changed files with 9 additions and 44 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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"],
});
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Maaz 81 - Premium Mining Equipment Rental & Maintenance Services", description: "24/7 mining and industrial equipment rental, maintenance, and site analysis services. Professional solutions for construction and mining operations. Call +1-800-MAAZ81.", keywords: "mining equipment rental, construction equipment, industrial maintenance, heavy equipment, mining solutions, equipment rental services", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Maaz 81 - Industrial Equipment Solutions", description: "Reliable mining equipment rental and 24/7 maintenance. Trusted by 200+ operations.", type: "website", siteName: "Maaz 81", images: [
{
url: "http://img.b2bpic.net/free-photo/heavy-machinery-used-construction-industry-engineering_23-2151307726.jpg", alt: "Heavy mining equipment operations"},
],
},
twitter: {
card: "summary_large_image", title: "Maaz 81 - Mining Equipment Rental", description: "Premium equipment rental with 24/7 support. Call now for immediate deployment.", images: ["http://img.b2bpic.net/free-photo/heavy-machinery-used-construction-industry-engineering_23-2151307726.jpg"],
},
};
title: "Maaz 81 - Mining Equipment & Solutions", description: "Reliable mining solutions and heavy equipment maintenance for local operations. 24/7 support for your most critical equipment needs."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -51,7 +51,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/heavy-machinery-used-construction-industry-engineering_23-2151307726.jpg"
imageAlt="Heavy mining excavator equipment at industrial site"
buttons={[
{ text: "Call Now", href: "tel:+18006229281" },
{ text: "Get Equipment Now", href: "tel:+18006229281" },
{ text: "Request a Quote", href: "#contact" },
]}
buttonAnimation="slide-up"
@@ -299,4 +299,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}