Update src/app/layout.tsx

This commit is contained in:
2026-03-12 17:28:39 +00:00
parent 097a60d2fe
commit f8a17fe44d

View File

@@ -1,29 +1,51 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Libre_Baskerville, 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: "Plumbing Services Macon GA | Greene Plumbing & Heating",
description: "Greene Plumbing & Heating Co offers emergency plumbing repairs, drain cleaning, water heater service, and more in Macon, GA. Fast response. 24/7. Licensed & insured.",
keywords: "plumber Macon GA, emergency plumber, plumbing services Macon, drain cleaning, water heater repair, local plumbing contractor",
openGraph: {
title: "Trusted Plumbing Services in Macon, GA",
description: "Professional plumbing repairs, installations, and emergency service. Serving Macon for 19 years.",
siteName: "Greene Plumbing & Heating Co",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/female-mechanic-smiling-while-repairing-car_1170-1227.jpg",
alt: "Professional plumbing service",
},
],
},
twitter: {
card: "summary_large_image",
title: "Plumbing Services Macon GA",
description: "Emergency plumbing repairs and service in Macon. Call 24/7.",
images: [
"http://img.b2bpic.net/free-photo/female-mechanic-smiling-while-repairing-car_1170-1227.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -32,7 +54,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 +68,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}