diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 534a97b..cb63e87 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,44 @@ 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"], -}); +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "MG Junk Removal | Professional Hauling Services", description: "Fast, reliable junk removal for residential, commercial, and construction debris. Damage-free guarantee. Transparent pricing. Quote in 15 minutes.", keywords: "junk removal, debris hauling, residential cleanup, commercial junk removal, construction cleanup, professional hauling", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "MG Junk Removal | Professional Hauling Services", description: "Fast, reliable junk removal for residential, commercial, and construction debris. Damage-free guarantee. Transparent pricing. Quote in 15 minutes.", type: "website", siteName: "MG Junk Removal", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeF2nBkuTBNPSJvZN5m49LNtNg/uploaded-1772945874277-vt9q76uj.png", alt: "Professional junk removal truck"}, - ], - }, - twitter: { - card: "summary_large_image", title: "MG Junk Removal | Professional Hauling Services", description: "Fast, reliable junk removal for residential, commercial, and construction debris. Damage-free guarantee.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeF2nBkuTBNPSJvZN5m49LNtNg/uploaded-1772945874277-vt9q76uj.png"], - }, -}; + title: "MG Junk Removal | Professional Service, Transparent Pricing", description: "Fast, reliable junk removal with upfront pricing and zero damage guarantee. Same-day quotes and professional crews."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + +