diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 15d8bd0..0efaa0b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -106,7 +106,7 @@ export default function AboutPage() { author: "Professional Standards", description: "All our technicians are fully licensed, insured, and regularly trained on the latest plumbing technologies and best practices. Your home is in qualified hands.", tags: ["Licensed", "Insured", "Certified"], - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6voh74", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6voh74&_wi=6", imageAlt: "Licensed plumbing technician", }, { @@ -115,7 +115,7 @@ export default function AboutPage() { author: "Your Satisfaction First", description: "We treat each job as if we were fixing our own home. Clear communication, respectful work practices, and honest pricing are our hallmarks.", tags: ["Friendly", "Professional", "Honest"], - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6voh74", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6voh74&_wi=7", imageAlt: "Professional customer service", }, { @@ -124,7 +124,7 @@ export default function AboutPage() { author: "Always Learning", description: "The plumbing industry evolves constantly. We invest in ongoing training to stay ahead of new technologies, materials, and best practices.", tags: ["Training", "Expertise", "Innovation"], - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6voh74", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6voh74&_wi=8", imageAlt: "Technician training", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index ba16b94..5564eb8 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -86,7 +86,7 @@ export default function ContactPage() { { text: "Call Now", href: "tel:+17025551586" }, { text: "Schedule Online", href: "#contact-form" }, ]} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mbqkgd" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mbqkgd&_wi=2" imageAlt="Professional plumber working on water heater installation" showDimOverlay={true} buttonAnimation="slide-up" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82b392d..d766e7b 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 { Roboto } 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 { Roboto } 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 roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,39 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Excellence Plumbing - Las Vegas Plumbing Services", + description: "Fast, honest plumbing services in Las Vegas. Water heater repair, emergency plumbing, and installations. Same-day service available. Licensed technicians.", + keywords: "Las Vegas plumber, water heater repair, emergency plumbing, plumbing services", + metadataBase: new URL("https://excellenceplumbing.com"), + alternates: { + canonical: "https://excellenceplumbing.com", + }, + openGraph: { + title: "Excellence Plumbing - Las Vegas Plumbing Services", + description: "Fast, honest plumbing services from trusted local technicians. Same-day service available.", + url: "https://excellenceplumbing.com", + siteName: "Excellence Plumbing", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mbqkgd", + alt: "Excellence Plumbing Las Vegas", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Excellence Plumbing - Las Vegas", + description: "Fast, honest plumbing services. Water heater experts.", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mbqkgd"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}