From 99f068437c0596613070faee578fd5fa6f8fec39 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 18:23:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 21aafb5..0386db2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}