Update src/app/layout.tsx

This commit is contained in:
2026-03-10 12:04:28 +00:00
parent 5eff6908cc
commit e46beede44

View File

@@ -1,28 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Professional Cleaning & Housekeeping Services in Noida | We Clean",
description: "Expert cleaning services in Noida - 4.9★ rated. Chair cleaning (₹150), deep cleaning, sofa cleaning, carpet cleaning & commercial housekeeping. 24/7 available. Get free quote now!",
keywords: "cleaning services Noida, housekeeping Noida, chair cleaning, deep cleaning, sofa cleaning, carpet cleaning, office cleaning, professional cleaners",
metadataBase: new URL("https://weclean.in"),
alternates: {
canonical: "https://weclean.in",
},
openGraph: {
title: "Professional Cleaning Services in Noida | We Clean",
description: "4.9★ rated cleaning services - Chair cleaning from ₹150. Deep cleaning, sofa, carpet & commercial housekeeping. Open 24/7. Get free quote!",
url: "https://weclean.in",
siteName: "We Clean Housekeeping Services",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg",
alt: "Professional Cleaning Services in Noida",
},
],
},
twitter: {
card: "summary_large_image",
title: "Professional Cleaning Services in Noida",
description: "4.9★ rated • Chair cleaning ₹150 • Deep cleaning • 24/7 Available",
images: ["http://img.b2bpic.net/free-photo/little-boy-with-glasses-cleans-house-with-vacuum-cleaner_169016-11493.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}