From 6f61734286ff29cd317137bb6ea6effc8be67974 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 17:28:27 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a77a57c..a6576f7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "End of Lease Cleaning Melbourne | Bond Back Guarantee", description: "Professional end of lease cleaning in Melbourne. 100% bond back guarantee. Real estate approved. All suburbs. Free quote. Call +61 425 399 879 today.", keywords: "end of lease cleaning Melbourne, bond cleaning Melbourne, move out cleaning, real estate cleaning, professional cleaners Melbourne", metadataBase: new URL("https://polarendofleasecleaning.com.au"), - alternates: { - canonical: "https://polarendofleasecleaning.com.au"}, - openGraph: { - title: "End of Lease Cleaning Melbourne | Polar Cleaning", description: "Get your bond back with professional, real estate approved end of lease cleaning. 300+ happy customers. Free quote available.", url: "https://polarendofleasecleaning.com.au", siteName: "Polar End of Lease Cleaning", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/dark-haired-woman-carrying-basin-with-difinfection-appliances_259150-59495.jpg", alt: "professional cleaning team working on apartment"}, - ], - }, - twitter: { - card: "summary_large_image", title: "End of Lease Cleaning Melbourne | Bond Back Guaranteed", description: "Professional cleaning service for renters moving out. Get your full bond back. Call now for free quote.", images: ["http://img.b2bpic.net/free-photo/dark-haired-woman-carrying-basin-with-difinfection-appliances_259150-59495.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Polar End of Lease Cleaning | Melbourne Bond Back Guarantee", description: "Professional end of lease cleaning in Melbourne with 100% bond back guarantee. Real estate approved. All suburbs. Free quote."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}