Update src/app/layout.tsx

This commit is contained in:
2026-03-05 16:29:26 +00:00
parent ae110e6e46
commit 62c570276b

View File

@@ -1,59 +1,26 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import localFont from "next/font/local";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const geistSans = localFont({
src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
const dmSans = DM_Sans({
variable: "--font-dm-sans", 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 geistMono = localFont({
src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
export const metadata: Metadata = {
title: "Local Plumbing & HVAC Service | Fast Same-Day Response", description: "Licensed, insured local service professionals. Same-day response available. Free estimates, 24/7 emergency support. Trusted by 5000+ customers.", keywords: "plumbing service, HVAC repair, emergency service, local contractor, same-day service, licensed plumber, heating and cooling", robots: {
index: true,
follow: true,
},
openGraph: {
title: "ProServe | Local Plumbing & HVAC Service", description: "Fast, reliable local service. Licensed professionals. Same-day response. Call now for free estimate.", type: "website", siteName: "ProServe", images: [
{
url: "http://img.b2bpic.net/free-photo/seasoned-mechanic-using-soft-dusting-brush-sweep-away-built-up-layer-dirt-debris-from-hvac-system-coil-while-adept-repairman-refills-air-conditioner-cooling-system-refrigerant-tank_482257-63969.jpg", alt: "Professional service technician"},
],
},
twitter: {
card: "summary_large_image", title: "ProServe | Trusted Local Service", description: "Same-day service available. Licensed & insured. Free estimates.", images: ["http://img.b2bpic.net/free-photo/seasoned-mechanic-using-soft-dusting-brush-sweep-away-built-up-layer-dirt-debris-from-hvac-system-coil-while-adept-repairman-refills-air-conditioner-cooling-system-refrigerant-tank_482257-63969.jpg"],
},
};
title: "ProServe - Local Service Excellence", description: "Fast, reliable local service when you need it most. Licensed, insured professionals ready to solve your home problems."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="hy">
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1388,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}