Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-11 19:20:18 +00:00
6 changed files with 79 additions and 40 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -75,28 +75,28 @@ export default function HomePage() {
handle: "Homeowner",
testimonial: "Excellent plumbing service! Arrived on time and fixed the issue quickly. Very professional.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-man-listening-music-headphones-using-smartphone-outdoor-hipster-portrait_1296-728.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-listening-music-headphones-using-smartphone-outdoor-hipster-portrait_1296-728.jpg?_wi=1",
},
{
name: "Priya Singh",
handle: "Business Owner",
testimonial: "Fast service and very affordable price. Highly recommended for any plumbing needs.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-coworkers-holding-tablets-showing-thumbs-up-stairs_1262-20218.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-coworkers-holding-tablets-showing-thumbs-up-stairs_1262-20218.jpg?_wi=1",
},
{
name: "Amit Patel",
handle: "Apartment Manager",
testimonial: "Excellent plumbing service with great customer support. They handle emergencies perfectly.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman_23-2147900059.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman_23-2147900059.jpg?_wi=1",
},
{
name: "Neha Mishra",
handle: "Property Owner",
testimonial: "Professional and experienced team. Fixed our water tank issue in no time. Great value!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/blond-man-happy-expression_1194-2865.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blond-man-happy-expression_1194-2865.jpg?_wi=1",
},
]}
testimonialRotationInterval={5000}
@@ -155,7 +155,7 @@ export default function HomePage() {
tag="Our Advantages"
tagIcon={CheckCircle}
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=1"
imageAlt="Professional plumbing technician"
mediaAnimation="slide-up"
mediaPosition="left"
@@ -203,37 +203,37 @@ export default function HomePage() {
{
id: "1",
name: "Rajesh Kumar",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-listening-music-headphones-using-smartphone-outdoor-hipster-portrait_1296-728.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-listening-music-headphones-using-smartphone-outdoor-hipster-portrait_1296-728.jpg?_wi=2",
imageAlt: "Rajesh Kumar",
},
{
id: "2",
name: "Priya Singh",
imageSrc: "http://img.b2bpic.net/free-photo/happy-coworkers-holding-tablets-showing-thumbs-up-stairs_1262-20218.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-coworkers-holding-tablets-showing-thumbs-up-stairs_1262-20218.jpg?_wi=2",
imageAlt: "Priya Singh",
},
{
id: "3",
name: "Amit Patel",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman_23-2147900059.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman_23-2147900059.jpg?_wi=2",
imageAlt: "Amit Patel",
},
{
id: "4",
name: "Neha Mishra",
imageSrc: "http://img.b2bpic.net/free-photo/blond-man-happy-expression_1194-2865.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/blond-man-happy-expression_1194-2865.jpg?_wi=2",
imageAlt: "Neha Mishra",
},
{
id: "5",
name: "Vikram Sharma",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-listening-music-headphones-using-smartphone-outdoor-hipster-portrait_1296-728.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-listening-music-headphones-using-smartphone-outdoor-hipster-portrait_1296-728.jpg?_wi=3",
imageAlt: "Vikram Sharma",
},
{
id: "6",
name: "Anjali Verma",
imageSrc: "http://img.b2bpic.net/free-photo/happy-coworkers-holding-tablets-showing-thumbs-up-stairs_1262-20218.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-coworkers-holding-tablets-showing-thumbs-up-stairs_1262-20218.jpg?_wi=3",
imageAlt: "Anjali Verma",
},
]}
@@ -315,7 +315,7 @@ export default function HomePage() {
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=1"
imageAlt="Prabhasa Plumbing office location"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -51,7 +51,7 @@ export default function PricingPage() {
price: "Available 24/7",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/young-anxious-blonde-male-barber-uniform-holds-points-clock-isolated-violet-space-with-copy-space_141793-60217.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-anxious-blonde-male-barber-uniform-holds-points-clock-isolated-violet-space-with-copy-space_141793-60217.jpg?_wi=2",
imageAlt: "emergency plumbing repair leak water damage",
},
{
@@ -61,7 +61,7 @@ export default function PricingPage() {
price: "₹499 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/rusty-pipes-closeup_169016-3282.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/rusty-pipes-closeup_169016-3282.jpg?_wi=2",
imageAlt: "pipe repair leaking plumbing professional",
},
{
@@ -71,7 +71,7 @@ export default function PricingPage() {
price: "₹599 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/combine-machine-service-mechanic-repairing-motor-outdoors_146671-19361.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/combine-machine-service-mechanic-repairing-motor-outdoors_146671-19361.jpg?_wi=2",
imageAlt: "drain cleaning professional plumber service",
},
{
@@ -81,7 +81,7 @@ export default function PricingPage() {
price: "₹799 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/black-faucet-stream-white-basin-modern-hygiene_169016-69472.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/black-faucet-stream-white-basin-modern-hygiene_169016-69472.jpg?_wi=3",
imageAlt: "modern bathroom fixtures installation",
},
{
@@ -91,7 +91,7 @@ export default function PricingPage() {
price: "₹899 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-washing-bell-pepper_23-2149722319.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-washing-bell-pepper_23-2149722319.jpg?_wi=2",
imageAlt: "kitchen sink installation plumbing",
},
{
@@ -101,7 +101,7 @@ export default function PricingPage() {
price: "₹1299 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-production-plumber-valve-pvc-pipe_1376-35.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-production-plumber-valve-pvc-pipe_1376-35.jpg?_wi=2",
imageAlt: "water tank repair maintenance service",
},
{
@@ -111,7 +111,7 @@ export default function PricingPage() {
price: "₹599 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/black-faucet-stream-white-basin-modern-hygiene_169016-69472.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/black-faucet-stream-white-basin-modern-hygiene_169016-69472.jpg?_wi=4",
imageAlt: "wash basin installation",
},
{
@@ -121,7 +121,7 @@ export default function PricingPage() {
price: "Custom Quote",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg?_wi=2",
imageAlt: "commercial plumbing large building",
},
]}

View File

@@ -57,7 +57,7 @@ export default function ServicesPage() {
price: "Available 24/7",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/young-anxious-blonde-male-barber-uniform-holds-points-clock-isolated-violet-space-with-copy-space_141793-60217.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-anxious-blonde-male-barber-uniform-holds-points-clock-isolated-violet-space-with-copy-space_141793-60217.jpg?_wi=1",
imageAlt: "Emergency plumbing repair service",
},
{
@@ -67,7 +67,7 @@ export default function ServicesPage() {
price: "₹499 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/rusty-pipes-closeup_169016-3282.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/rusty-pipes-closeup_169016-3282.jpg?_wi=1",
imageAlt: "Professional pipe leak repair",
},
{
@@ -77,7 +77,7 @@ export default function ServicesPage() {
price: "₹599 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/combine-machine-service-mechanic-repairing-motor-outdoors_146671-19361.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/combine-machine-service-mechanic-repairing-motor-outdoors_146671-19361.jpg?_wi=1",
imageAlt: "Professional drain cleaning",
},
{
@@ -87,7 +87,7 @@ export default function ServicesPage() {
price: "₹799 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/black-faucet-stream-white-basin-modern-hygiene_169016-69472.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/black-faucet-stream-white-basin-modern-hygiene_169016-69472.jpg?_wi=1",
imageAlt: "Bathroom fixtures installation",
},
{
@@ -97,7 +97,7 @@ export default function ServicesPage() {
price: "₹899 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-washing-bell-pepper_23-2149722319.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-washing-bell-pepper_23-2149722319.jpg?_wi=1",
imageAlt: "Kitchen sink and faucet service",
},
{
@@ -107,7 +107,7 @@ export default function ServicesPage() {
price: "₹1299 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-production-plumber-valve-pvc-pipe_1376-35.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-production-plumber-valve-pvc-pipe_1376-35.jpg?_wi=1",
imageAlt: "Water tank maintenance service",
},
{
@@ -117,7 +117,7 @@ export default function ServicesPage() {
price: "₹599 onwards",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/black-faucet-stream-white-basin-modern-hygiene_169016-69472.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/black-faucet-stream-white-basin-modern-hygiene_169016-69472.jpg?_wi=2",
imageAlt: "Wash basin installation",
},
{
@@ -127,7 +127,7 @@ export default function ServicesPage() {
price: "Custom Quote",
rating: 5,
reviewCount: "314+",
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg?_wi=1",
imageAlt: "Commercial building plumbing",
},
]}
@@ -152,7 +152,7 @@ export default function ServicesPage() {
tag="Service Excellence"
tagIcon={CheckCircle}
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=2"
imageAlt="Professional plumbing work in progress"
mediaAnimation="slide-up"
mediaPosition="left"
@@ -221,7 +221,7 @@ export default function ServicesPage() {
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=2"
imageAlt="Prabhasa Plumbing service center"
mediaAnimation="slide-up"
mediaPosition="right"