Update src/app/layout.tsx

This commit is contained in:
2026-03-06 17:28:27 +00:00
parent e2610bb8dd
commit 6f61734286

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}