From b48fae7b7de8d274ddff84ec7ffe187c9ff2853a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:23:57 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 47 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..43ae713 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}