diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ed54bfa..30edcdf 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -52,21 +52,21 @@ export default function AboutPage() { background={{ variant: "radial-gradient" }} leftCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/labor-union-members-working-together_23-2150969878.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/labor-union-members-working-together_23-2150969878.jpg?_wi=3", imageAlt: "professional cleaning team group photo", }, { - imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-cleaning-indoors_23-2150454545.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-cleaning-indoors_23-2150454545.jpg?_wi=5", imageAlt: "professional office cleaning team working efficiently", }, ]} rightCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/female-healthcare-worker-coughing-while-working-hospital-covid19-epidemic_637285-5058.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/female-healthcare-worker-coughing-while-working-hospital-covid19-epidemic_637285-5058.jpg?_wi=5", imageAlt: "medical clinic professional cleaning", }, { - imageSrc: "http://img.b2bpic.net/free-photo/female-person-feeling-tired-after-finishing-spring-cleaning-sitting-clean-wooden-floor-with-mop-gloves-young-sleepy-woman-being-proud-tidy-apartment-household-chores-finished_482257-59836.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/female-person-feeling-tired-after-finishing-spring-cleaning-sitting-clean-wooden-floor-with-mop-gloves-young-sleepy-woman-being-proud-tidy-apartment-household-chores-finished_482257-59836.jpg?_wi=5", imageAlt: "apartment building cleaning service", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..f92b60d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Professional Commercial Cleaning Services | Midwest Cleaning", + description: "Expert commercial cleaning for offices, retail, medical facilities, and apartments. Reliable, professional, spotless results. Get a free quote today.", + keywords: "commercial cleaning, office cleaning, retail cleaning, medical facility cleaning, apartment cleaning, post-construction cleaning, Midwest", + metadataBase: new URL("https://midwestprofessionalcleaning.com"), + alternates: { + canonical: "https://midwestprofessionalcleaning.com", + }, + openGraph: { + title: "Midwest Professional Cleaning | Commercial Cleaning Services", + description: "Reliable, professional commercial cleaning across the Midwest. Offices, retail, medical facilities, apartments, and more.", + url: "https://midwestprofessionalcleaning.com", + siteName: "Midwest Professional Cleaning", + type: "website", + images: [ + { + url: "https://midwestprofessionalcleaning.com/og-image.jpg", + alt: "Professional cleaning team", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional Commercial Cleaning | Midwest", + description: "Expert cleaning services for commercial properties across the Midwest", + images: ["https://midwestprofessionalcleaning.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}