Update src/app/layout.tsx
This commit is contained in:
@@ -1,29 +1,52 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Inter } 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 { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Main Plumbing Services - 24/7 Emergency Plumbing Miami",
|
||||
description: "Licensed emergency plumbing services in Miami-Dade County. 24/7 response for burst pipes, drain cleaning, leak repair, water heater installation & sewer services.",
|
||||
keywords: "emergency plumbing Miami, plumber Miami-Dade, drain cleaning Miami, leak repair, water heater installation, sewer line repair, 24/7 plumbing",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Main Plumbing Services - 24/7 Emergency Plumbing in Miami",
|
||||
description: "Professional licensed plumbers available 24/7 for emergency repairs, drain cleaning, leak detection, water heater installation, and sewer services throughout Miami-Dade County.",
|
||||
type: "website",
|
||||
siteName: "Main Plumbing Services",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/annoyed-slavic-cleaner-man-with-rubber-gloves-holding-alarm-clock_141793-124525.jpg",
|
||||
alt: "Main Plumbing Services - Emergency Plumbing in Miami",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Main Plumbing Services - 24/7 Emergency Plumbing",
|
||||
description: "Fast response emergency plumbing in Miami. Licensed professionals for all your plumbing needs.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/annoyed-slavic-cleaner-man-with-rubber-gloves-holding-alarm-clock_141793-124525.jpg",
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +55,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +69,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user