diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a0c3abb..25c28a5 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -74,7 +74,7 @@ export default function AboutPage() { href: "#contact", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg" + imageSrc="http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg?_wi=2" imageAlt="certified plumber installing pipes professional" useInvertedBackground={false} /> @@ -91,7 +91,7 @@ export default function AboutPage() { title: "Emergency Plumbing Repair", description: "24/7 emergency response for burst pipes, leaks, clogs, and other urgent plumbing issues. Our certified technicians arrive quickly and resolve problems efficiently.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg?_wi=3", }, items: [ { icon: Wrench, text: "Same-day service available" }, @@ -105,7 +105,7 @@ export default function AboutPage() { title: "Heating System Installation & Maintenance", description: "Professional heating installation, maintenance, and repairs to keep your home warm and comfortable. We service all major brands and models.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg?_wi=3", }, items: [ { icon: Zap, text: "Energy-efficient solutions" }, @@ -119,7 +119,7 @@ export default function AboutPage() { title: "Air Conditioning Services", description: "Complete AC solutions including installation, repair, and seasonal maintenance. Beat the heat with our reliable cooling systems.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/male-employee-leaning-car-holding-wrench_23-2148327526.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/male-employee-leaning-car-holding-wrench_23-2148327526.jpg?_wi=3", }, items: [ { icon: Wind, text: "Cooling efficiency certified" }, 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}