Update src/app/layout.tsx
This commit is contained in:
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } 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 { Nunito } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "24/7 Professional Plumbing Services in Bhubaneswar | Prabhasa",
|
||||
description: "Prabhasa Plumbing: 4.9★ rated emergency plumber in Bhubaneswar. Fast, affordable plumbing repair, installation & maintenance. Available 24/7. Call +91 82494 37568",
|
||||
keywords: "plumber in Bhubaneswar, emergency plumbing service, 24 hour plumbing, residential plumber, commercial plumbing, pipe repair, drain cleaning, water tank repair",
|
||||
metadataBase: new URL("https://prabhasaplumbing.com"),
|
||||
alternates: {
|
||||
canonical: "https://prabhasaplumbing.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "24/7 Professional Plumbing Services in Bhubaneswar | Prabhasa",
|
||||
description: "Prabhasa Plumbing: 4.9★ rated emergency plumber in Bhubaneswar. Fast, affordable plumbing repair & installation. Available 24/7.",
|
||||
url: "https://prabhasaplumbing.com",
|
||||
siteName: "Prabhasa Plumbing Services",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://prabhasaplumbing.com/og-image.jpg",
|
||||
alt: "Prabhasa Plumbing Professional Services",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Professional Plumbing Services in Bhubaneswar",
|
||||
description: "4.9★ rated emergency plumber. Fast, affordable service. 24/7 available.",
|
||||
images: ["https://prabhasaplumbing.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunito.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user