diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 554985a..489fb29 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -72,25 +72,25 @@ export default function AboutPage() { { id: "1", name: "John Martinez", - imageSrc: "http://img.b2bpic.net/free-photo/courier-delivering-parcel-client_23-2149229193.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/courier-delivering-parcel-client_23-2149229193.jpg?_wi=2", imageAlt: "John Martinez, Master Plumber", }, { id: "2", name: "Lisa Thompson", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe-with-laptop_273609-12676.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe-with-laptop_273609-12676.jpg?_wi=2", imageAlt: "Lisa Thompson, Lead Technician", }, { id: "3", name: "Robert Davis", - imageSrc: "http://img.b2bpic.net/free-photo/happy-expression_1194-1747.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-expression_1194-1747.jpg?_wi=2", imageAlt: "Robert Davis, Emergency Specialist", }, { id: "4", name: "Patricia Wilson", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-young-male-blue-suit_181624-55728.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-young-male-blue-suit_181624-55728.jpg?_wi=2", imageAlt: "Patricia Wilson, Service Manager", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..483174e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,63 @@ 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: "Unique Plumbing - Trusted Idaho Plumber | 24/7 Service", + description: "Professional plumbing services in Idaho. Licensed, insured plumbers available 24/7 for emergency repairs, installations, and maintenance.", + keywords: "plumbing Idaho, plumber Boise, emergency plumbing, leak repair, drain cleaning, water heater", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Unique Plumbing - Trusted Idaho Plumber", + description: "Professional plumbing services available 24/7. Licensed, insured, and experienced.", + type: "website", + siteName: "Unique Plumbing", + url: "https://uniqueplumbing.com", + images: [ + { + url: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990730.jpg", + alt: "Professional plumbing service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Unique Plumbing - Trusted Idaho Plumber", + description: "Professional plumbing services available 24/7", + images: ["http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990730.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +66,9 @@ export default function RootLayout({ return ( - + {children}