From 747345afcdc8afd807bcc2a14a153d2e4281d9a1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:54:17 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 48 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..20f3d07 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}