diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d99f62b..282c7f8 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -84,7 +84,7 @@ export default function AboutPage() { { title: "Plumbing Expertise", description: "Full-service plumbing solutions including repairs, installations, drain cleaning, water heater service, and 24/7 emergency response.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-hand-touching-vintage-machine_23-2148180331.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-hand-touching-vintage-machine_23-2148180331.jpg?_wi=3", imageAlt: "professional plumber fixing pipes home", buttonIcon: Droplet, buttonHref: "/services#plumbing", @@ -92,7 +92,7 @@ export default function AboutPage() { { title: "Heating & Cooling", description: "Complete HVAC solutions for comfort year-round. Furnace repair, AC maintenance, hot water tank service, and seasonal inspections.", - imageSrc: "http://img.b2bpic.net/free-photo/service-man-adjusting-house-heating-system_1303-26529.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/service-man-adjusting-house-heating-system_1303-26529.jpg?_wi=3", imageAlt: "HVAC technician servicing furnace heating", buttonIcon: Flame, buttonHref: "/services#heating", @@ -100,7 +100,7 @@ export default function AboutPage() { { title: "Electrical Services", description: "Licensed electrical work including inspections, repairs, installations, panel upgrades, and safety compliance checks for peace of mind.", - imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52936.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52936.jpg?_wi=3", imageAlt: "electrician installing electrical panel", buttonIcon: Zap, buttonHref: "/services#electrical", diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..d35663e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_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 { Manrope } from "next/font/google"; -import { DM_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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Plumbing, HVAC & Electrical | Red Deer Home Services", + description: "Professional plumbing, heating, cooling & electrical services in Red Deer. 4.9★ rated. 25+ years. Fast response, flat-rate pricing. 24/7 emergency available.", + keywords: "plumber Red Deer, HVAC Red Deer, electrician Red Deer, emergency plumbing, furnace repair, hot water tank", + metadataBase: new URL("https://rdhomeservices.com"), + alternates: { + canonical: "https://rdhomeservices.com", + }, + openGraph: { + title: "Red Deer Home Services - Trusted Local Expert", + description: "Professional home services for plumbing, heating & electrical. 4.9★ from 1,453 reviews. 25+ years experience.", + url: "https://rdhomeservices.com", + siteName: "Red Deer Home Services", + type: "website", + images: [ + { + url: "https://rdhomeservices.com/og-image.jpg", + alt: "Red Deer Home Services professional technician", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Red Deer Home Services", + description: "Professional plumbing, heating & electrical services. 4.9★ rated.", + images: ["https://rdhomeservices.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}