Update src/app/layout.tsx

This commit is contained in:
2026-03-03 17:41:29 +00:00
parent 6a00c2f6b8
commit 77ea2d4d43

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Archivo } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Plumbing & HVAC Repair in Talmage, NE | Southeast Plumbing", description: "Professional plumbing and HVAC services in Talmage, NE. Fast, reliable repairs. 4.5-star rated. Call (402) 264-3825 for emergency service or free estimate.", keywords: "plumbing repair, HVAC repair, water heater, drain cleaning, Talmage NE, plumber, air conditioning", metadataBase: new URL("https://southeastplumbing.com"),
alternates: {
canonical: "https://southeastplumbing.com"
},
openGraph: {
title: "Plumbing & HVAC Services in Talmage, NE", description: "Fast, reliable plumbing and HVAC repair. 4.5-star rated local service. Call now for emergency repair or free estimate.", url: "https://southeastplumbing.com", siteName: "Southeast Plumbing & Heating", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg", alt: "Professional plumbing service"
}
]
},
twitter: {
card: "summary_large_image", title: "Plumbing & HVAC Services in Talmage, NE", description: "Fast, reliable repairs. 4.5-star rated. Call (402) 264-3825.", images: ["http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Southeast Plumbing & Heating", description: "Fast, reliable, and reasonably priced plumbing and HVAC services in Talmage, NE"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}