From 46a46c80a56adefb2971da484f88d205a65d1c2c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 18:50:56 +0000 Subject: [PATCH 1/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 136d8c4..4af6a08 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -51,7 +51,7 @@ export default function ContactPage() { Date: Fri, 13 Mar 2026 18:50:56 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..b58024b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,49 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_Sans } 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_Sans } 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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Commercial Cleaning Services - Midwest Professional", + description: "Professional commercial cleaning for offices, retail, medical facilities, apartments & post-construction across the Midwest. Reliable, spotless results.", + keywords: "commercial cleaning, office cleaning, post-construction cleaning, medical facility cleaning, professional cleaning services, Midwest", + openGraph: { + title: "Midwest Professional Cleaning - Commercial Cleaning Services", + description: "Reliable professional cleaning services for commercial spaces across the Midwest. Spotless results for offices, retail, medical facilities, and more.", + siteName: "Midwest Professional Cleaning", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Professional Commercial Cleaning Services", + description: "Trusted by 500+ businesses for spotless commercial cleaning across the Midwest.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +52,9 @@ export default function RootLayout({ return ( - + {children}