diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ba8bd2a..ee87e8f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -43,7 +43,7 @@ export default function AboutPage() { tag="Our Advantages" tagIcon={undefined} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990682.jpg" + imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990682.jpg?_wi=3" imageAlt="skilled plumber professional portrait" mediaAnimation="slide-up" mediaPosition="left" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b38cded..794efe5 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -108,7 +108,7 @@ export default function ContactPage() { required: true, }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/hallway-building_23-2149397606.jpg" + imageSrc="http://img.b2bpic.net/free-photo/hallway-building_23-2149397606.jpg?_wi=3" imageAlt="Prabhasa Plumbing office location" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..cf6c61e 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 { Nunito } 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 { Nunito } 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 nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "24/7 Professional Plumbing Services in Bhubaneswar | Prabhasa", + description: "Prabhasa Plumbing: 4.9★ rated emergency plumber in Bhubaneswar. Fast, affordable plumbing repair, installation & maintenance. Available 24/7. Call +91 82494 37568", + keywords: "plumber in Bhubaneswar, emergency plumbing service, 24 hour plumbing, residential plumber, commercial plumbing, pipe repair, drain cleaning, water tank repair", + metadataBase: new URL("https://prabhasaplumbing.com"), + alternates: { + canonical: "https://prabhasaplumbing.com", + }, + openGraph: { + title: "24/7 Professional Plumbing Services in Bhubaneswar | Prabhasa", + description: "Prabhasa Plumbing: 4.9★ rated emergency plumber in Bhubaneswar. Fast, affordable plumbing repair & installation. Available 24/7.", + url: "https://prabhasaplumbing.com", + siteName: "Prabhasa Plumbing Services", + type: "website", + images: [ + { + url: "https://prabhasaplumbing.com/og-image.jpg", + alt: "Prabhasa Plumbing Professional Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional Plumbing Services in Bhubaneswar", + description: "4.9★ rated emergency plumber. Fast, affordable service. 24/7 available.", + images: ["https://prabhasaplumbing.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}