diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7e47b2b..4f4a32a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -109,7 +109,7 @@ export default function AboutPage() { description: "Quick arrival and efficient service. We respect your time and deliver results fast." } ]} - imageSrc="http://img.b2bpic.net/free-photo/happy-co-workers-close-window_1098-3172.jpg" + imageSrc="http://img.b2bpic.net/free-photo/happy-co-workers-close-window_1098-3172.jpg?_wi=3" imageAlt="Professional team members" mediaAnimation="slide-up" buttons={[ @@ -135,7 +135,7 @@ export default function AboutPage() { role: "Homeowner", company: "Downtown Area", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-therapy_23-2148928886.jpg" + imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-therapy_23-2148928886.jpg?_wi=2" }, { id: "2", @@ -143,7 +143,7 @@ export default function AboutPage() { role: "Property Manager", company: "Commercial District", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-handsome-businessman_1262-21003.jpg" + imageSrc: "http://img.b2bpic.net/free-photo/cheerful-handsome-businessman_1262-21003.jpg?_wi=2" }, { id: "3", @@ -151,7 +151,7 @@ export default function AboutPage() { role: "Business Owner", company: "Westside Retail", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5292.jpg" + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5292.jpg?_wi=2" }, { id: "4", @@ -159,7 +159,7 @@ export default function AboutPage() { role: "Homeowner", company: "Suburban Community", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-360.jpg" + imageSrc: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-360.jpg?_wi=2" } ]} kpiItems={[ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..6a74bd8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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"; +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"], }); +export const metadata: Metadata = { + title: "Professional Local Services | Fast, Trusted, Licensed", + description: "Get reliable local services you can trust. Licensed, insured technicians provide 24/7 emergency response, free quotes, and guaranteed satisfaction. Call now!", + keywords: "local services, professional technicians, emergency service, home maintenance, free quotes, licensed insured", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Professional Local Services | Fast & Reliable", + description: "Trusted local service provider with 15+ years experience. 24/7 emergency response, licensed & insured. Call for free quote today.", + type: "website", + siteName: "LocalPro Services", + images: [ + { + url: "http://img.b2bpic.net/free-photo/car-mechanic-using-computer-while-working-auto-repair-shop_637285-7594.jpg", + alt: "Professional local services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional Local Services You Can Trust", + description: "Fast response, expert solutions, guaranteed satisfaction. Licensed & insured. Call now for emergency or scheduled service.", + images: ["http://img.b2bpic.net/free-photo/car-mechanic-using-computer-while-working-auto-repair-shop_637285-7594.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}