diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1d2701f..488908f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -97,7 +97,7 @@ export default function AboutPage() { title: "Removing Junk, Building Community", subtitle: "Integrity, excellence, and environmental responsibility", description: "Our mission is simple: remove your junk quickly, responsibly, and at fair prices. We're committed to serving our local community with integrity and excellence. Every job is an opportunity to demonstrate why Gone in a Haul is the choice of Inland Empire residents.", - imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-garbage-garbage-bags-park_1157-27387.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/couple-collects-garbage-garbage-bags-park_1157-27387.jpg?_wi=1", imageAlt: "before after junk removal transformation", }, { @@ -106,7 +106,7 @@ export default function AboutPage() { title: "Supporting the Inland Empire", subtitle: "Community-focused service you can trust", description: "As a locally-owned and operated business, we understand the Inland Empire community. We hire locally, support local charities, and reinvest in the neighborhoods we serve. Your junk removal supports real jobs and real families right here in our region.", - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150661450.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150661450.jpg?_wi=1", imageAlt: "garage cleared cleaned organized", }, ]} @@ -190,7 +190,7 @@ export default function AboutPage() { name: "Maria Gonzalez", role: "Homeowner, Moreno Valley", testimonial: "Gone in a Haul came and removed everything from my garage in just 2 hours. They were professional, courteous, and the price was amazing. This company truly cares about the community.", - imageSrc: "http://img.b2bpic.net/free-photo/young-female-blazer-beauty-blonde_1139-773.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-female-blazer-beauty-blonde_1139-773.jpg?_wi=3", imageAlt: "Maria Gonzalez testimonial", }, { @@ -198,7 +198,7 @@ export default function AboutPage() { name: "Robert Chen", role: "Property Manager, Riverside", testimonial: "We've used Gone in a Haul for several rental property cleanouts. Consistently reliable, fast, and they handle heavy debris without any issues. Best service in the Inland Empire.", - imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1626.jpg?_wi=3", imageAlt: "Robert Chen testimonial", }, { @@ -206,7 +206,7 @@ export default function AboutPage() { name: "Jessica Martinez", role: "Homeowner, San Bernardino", testimonial: "After our renovation, we had a ton of construction debris. These guys hauled everything away efficiently and left the property spotless. They're locally owned and it shows.", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-kitchen-giving-you-cup-tea-taking-break-drinking-coffee-home_1258-202678.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-kitchen-giving-you-cup-tea-taking-break-drinking-coffee-home_1258-202678.jpg?_wi=2", imageAlt: "Jessica Martinez testimonial", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..1411135 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Gone in a Haul | Junk Removal Moreno Valley & Inland Empire", + description: "Fast, reliable junk removal in Moreno Valley, Riverside, San Bernardino & the Inland Empire. Same-day service, licensed & insured, eco-friendly.", + keywords: "junk removal Moreno Valley, junk removal Riverside CA, junk removal San Bernardino, Inland Empire junk removal, same day junk removal", + metadataBase: new URL("https://goneinahaul.com"), + alternates: { + canonical: "https://goneinahaul.com", + }, + openGraph: { + title: "Gone in a Haul | Professional Junk Removal", + description: "Same-day junk removal across the Inland Empire. Licensed, insured, and eco-friendly.", + url: "https://goneinahaul.com", + siteName: "Gone in a Haul", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/utility-vehicle-quiet-street-work-progress_169016-69895.jpg", + alt: "Gone in a Haul junk removal service truck", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Gone in a Haul | Junk Removal Inland Empire", + description: "Fast. Reliable. Local. Same-day junk removal service.", + images: ["http://img.b2bpic.net/free-photo/utility-vehicle-quiet-street-work-progress_169016-69895.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}