Update src/app/layout.tsx

This commit is contained in:
2026-03-11 07:54:17 +00:00
parent 0f2b3825f5
commit 747345afcd

View File

@@ -1,24 +1,62 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 { Nunito } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "QUICKPROS - 24/7 Plumbing, Heating & AC Services",
description: "Expert plumbing, heating, and air conditioning services available 24/7. 20+ years experience, licensed technicians, same-day service. Call for emergency or scheduled appointments.",
keywords: "plumbing services, emergency plumber, heating repair, air conditioning service, HVAC maintenance, 24/7 service",
metadataBase: new URL("https://quickpros.local"),
alternates: {
canonical: "https://quickpros.local",
},
openGraph: {
title: "QUICKPROS - Professional HVAC & Plumbing Services",
description: "Fast, reliable plumbing, heating, and AC services. 24/7 emergency response, licensed technicians, and honest pricing.",
siteName: "QUICKPROS",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/group-workers-having-meeting-with-company-managers-factory-focus-is-female-worker-is-presenting-development-reports_637285-4146.jpg",
alt: "QUICKPROS professional plumbing team",
},
],
},
twitter: {
card: "summary_large_image",
title: "QUICKPROS - Your Trusted Plumbing & HVAC Experts",
description: "Expert plumbing, heating, and AC services. Available 24/7 for emergencies.",
images: [
"http://img.b2bpic.net/free-photo/group-workers-having-meeting-with-company-managers-factory-focus-is-female-worker-is-presenting-development-reports_637285-4146.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +65,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}