From 08660cbbfd13f597020e58fc69f8270b2c00b173 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 18:00:24 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5de453f..51caf49 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -123,7 +123,7 @@ export default function AboutPage() { "http://img.b2bpic.net/free-photo/home-comfort-coziness-domesticity-concept-cropped-portrait-confident-happy-young-woman-spending-day-home_343059-3893.jpg", avatarAlt: "Sarah Martinez", imageSrc: - "http://img.b2bpic.net/free-photo/adorable-couple-playing-having-good-time-with-their-daughter_181624-34278.jpg", + "http://img.b2bpic.net/free-photo/adorable-couple-playing-having-good-time-with-their-daughter_181624-34278.jpg?_wi=5", }, { id: "testimonial-2", @@ -137,7 +137,7 @@ export default function AboutPage() { "http://img.b2bpic.net/free-photo/happy-handsome-guy-showing-call-me-sign_1262-17046.jpg", avatarAlt: "James Thompson", imageSrc: - "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388960.jpg", + "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388960.jpg?_wi=9", }, { id: "testimonial-3", @@ -151,7 +151,7 @@ export default function AboutPage() { "http://img.b2bpic.net/free-photo/blissful-girl-expressing-happiness-drinking-coffee-her-cozy-kitchen_197531-6718.jpg", avatarAlt: "Maria Gonzalez", imageSrc: - "http://img.b2bpic.net/free-photo/medium-shot-nurse-giving-scan-patient_23-2149341551.jpg", + "http://img.b2bpic.net/free-photo/medium-shot-nurse-giving-scan-patient_23-2149341551.jpg?_wi=10", }, ]} textboxLayout="default" -- 2.49.1 From 2e35827b0e5d032c484ffb3a8eb8e8ac4a8e15b4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 18:00:25 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..4b2f22e 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 { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Marcos' AC & Heating Services | Houston HVAC Repair & Installation", + description: "Family-owned HVAC services in Houston since 1987. AC repair, heating installation, maintenance, and 24/7 emergency service. Certified Trane specialist. Se habla espaƱol.", + keywords: "HVAC repair Houston, AC installation, heating service, air conditioning repair, Houston HVAC contractor, Trane specialist", + metadataBase: new URL("https://marcosac.com"), + alternates: { + canonical: "https://marcosac.com", + }, + openGraph: { + title: "Marcos' AC & Heating Services | Houston HVAC Experts", + description: "Trusted HVAC services for Greater Houston. 35+ years of experience. Free estimates, guaranteed work.", + url: "https://marcosac.com", + siteName: "Marcos' AC & Heating Services", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/adorable-couple-playing-having-good-time-with-their-daughter_181624-34278.jpg", + alt: "Marcos' AC & Heating Services - Houston HVAC Expert", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Marcos' AC & Heating Services", + description: "Houston's trusted HVAC specialist. 35+ years serving families.", + images: ["http://img.b2bpic.net/free-photo/couple-watching-movie-streaming-service_23-2149026157.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}