Merge version_1 into main #1
@@ -47,32 +47,32 @@ export default function AboutPage() {
|
||||
carouselItems={[
|
||||
{
|
||||
id: "about-carousel-1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-working-with-drill_23-2148643260.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-working-with-drill_23-2148643260.jpg?_wi=2",
|
||||
imageAlt: "Professional plumber at work",
|
||||
},
|
||||
{
|
||||
id: "about-carousel-2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg?_wi=5",
|
||||
imageAlt: "Expert plumber service",
|
||||
},
|
||||
{
|
||||
id: "about-carousel-3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746301.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746301.jpg?_wi=2",
|
||||
imageAlt: "Water heater installation",
|
||||
},
|
||||
{
|
||||
id: "about-carousel-4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746294.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746294.jpg?_wi=2",
|
||||
imageAlt: "Professional plumbing inspection",
|
||||
},
|
||||
{
|
||||
id: "about-carousel-5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55822.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55822.jpg?_wi=2",
|
||||
imageAlt: "Expert pipe installation",
|
||||
},
|
||||
{
|
||||
id: "about-carousel-6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg?_wi=2",
|
||||
imageAlt: "Quality plumbing repair",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -43,7 +43,7 @@ export default function ContactPage() {
|
||||
<ContactSplitForm
|
||||
title="Get in Touch with ProFlow Plumbing"
|
||||
description="Have a plumbing emergency or need to schedule a service? Contact our team today and we'll be there to help."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg?_wi=4"
|
||||
imageAlt="Professional plumber at work"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,24 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Figtree } 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 { Figtree } 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 figtree = Figtree({
|
||||
variable: "--font-figtree",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "ProFlow Plumbing | Expert Plumbers in Your Area",
|
||||
description: "Professional plumbing services including emergency repair, water heater installation, drain cleaning, and leak detection. Licensed, insured, same-day service available.",
|
||||
keywords: "plumber, plumbing services, emergency plumbing, water heater repair, drain cleaning, leak detection, local plumber",
|
||||
metadataBase: new URL("https://proflowplumbing.com"),
|
||||
alternates: {
|
||||
canonical: "https://proflowplumbing.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "ProFlow Plumbing | Professional Plumbing Solutions",
|
||||
description: "Expert plumbing services with same-day emergency response. Licensed, insured, transparent pricing.",
|
||||
url: "https://proflowplumbing.com",
|
||||
siteName: "ProFlow Plumbing",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://proflowplumbing.com/og-image.jpg",
|
||||
alt: "Professional plumber at work",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "ProFlow Plumbing | Professional Plumbing Services",
|
||||
description: "Expert local plumbers with 24/7 emergency response. Same-day service available.",
|
||||
images: ["https://proflowplumbing.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={`${figtree.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -58,7 +58,7 @@ export default function HomePage() {
|
||||
carouselItems={[
|
||||
{
|
||||
id: "carousel-1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg?_wi=1",
|
||||
imageAlt: "Professional plumber fixing kitchen sink",
|
||||
},
|
||||
{
|
||||
@@ -68,22 +68,22 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
id: "carousel-3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746301.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746301.jpg?_wi=1",
|
||||
imageAlt: "Water heater installation service",
|
||||
},
|
||||
{
|
||||
id: "carousel-4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg?_wi=1",
|
||||
imageAlt: "Professional drain cleaning",
|
||||
},
|
||||
{
|
||||
id: "carousel-5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55822.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55822.jpg?_wi=1",
|
||||
imageAlt: "Advanced leak detection",
|
||||
},
|
||||
{
|
||||
id: "carousel-6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-working-with-drill_23-2148643260.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-working-with-drill_23-2148643260.jpg?_wi=1",
|
||||
imageAlt: "Quality copper piping installation",
|
||||
},
|
||||
]}
|
||||
@@ -233,7 +233,7 @@ export default function HomePage() {
|
||||
<ContactSplitForm
|
||||
title="Need a Plumber Today?"
|
||||
description="Get in touch with our team. We'll respond quickly to schedule your service or emergency repair."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg?_wi=2"
|
||||
imageAlt="Professional plumber at work"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -47,32 +47,32 @@ export default function ServicesPage() {
|
||||
carouselItems={[
|
||||
{
|
||||
id: "services-carousel-1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746294.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746294.jpg?_wi=1",
|
||||
imageAlt: "Professional plumber inspecting pipes",
|
||||
},
|
||||
{
|
||||
id: "services-carousel-2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sporty-girl-packing-bag-training-sports-girl-going-training-preparing-training_169016-67494.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sporty-girl-packing-bag-training-sports-girl-going-training-preparing-training_169016-67494.jpg?_wi=1",
|
||||
imageAlt: "Emergency plumbing response",
|
||||
},
|
||||
{
|
||||
id: "services-carousel-3",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/heater-installation-plumbing-flyer_742173-3463.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/heater-installation-plumbing-flyer_742173-3463.jpg?_wi=1",
|
||||
imageAlt: "Water heater service",
|
||||
},
|
||||
{
|
||||
id: "services-carousel-4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-rinsing-dish-sponge-running-water-daily-home-hygiene_169016-69431.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-rinsing-dish-sponge-running-water-daily-home-hygiene_169016-69431.jpg?_wi=1",
|
||||
imageAlt: "Drain cleaning service",
|
||||
},
|
||||
{
|
||||
id: "services-carousel-5",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/three-vertical-plumber-isometric-banner-set_1284-54706.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/three-vertical-plumber-isometric-banner-set_1284-54706.jpg?_wi=1",
|
||||
imageAlt: "Leak detection service",
|
||||
},
|
||||
{
|
||||
id: "services-carousel-6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg?_wi=3",
|
||||
imageAlt: "Kitchen plumbing repair",
|
||||
},
|
||||
]}
|
||||
@@ -100,7 +100,7 @@ export default function ServicesPage() {
|
||||
price: "Call for Quote",
|
||||
rating: 5,
|
||||
reviewCount: "Fast & Professional",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sporty-girl-packing-bag-training-sports-girl-going-training-preparing-training_169016-67494.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sporty-girl-packing-bag-training-sports-girl-going-training-preparing-training_169016-67494.jpg?_wi=2",
|
||||
imageAlt: "Emergency plumbing response",
|
||||
},
|
||||
{
|
||||
@@ -110,7 +110,7 @@ export default function ServicesPage() {
|
||||
price: "Starting at $500",
|
||||
rating: 5,
|
||||
reviewCount: "Expert Service",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/heater-installation-plumbing-flyer_742173-3463.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/heater-installation-plumbing-flyer_742173-3463.jpg?_wi=2",
|
||||
imageAlt: "Water heater installation",
|
||||
},
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function ServicesPage() {
|
||||
price: "From $150",
|
||||
rating: 5,
|
||||
reviewCount: "Effective Solutions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-rinsing-dish-sponge-running-water-daily-home-hygiene_169016-69431.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-rinsing-dish-sponge-running-water-daily-home-hygiene_169016-69431.jpg?_wi=2",
|
||||
imageAlt: "Drain cleaning service",
|
||||
},
|
||||
{
|
||||
@@ -130,7 +130,7 @@ export default function ServicesPage() {
|
||||
price: "From $200",
|
||||
rating: 5,
|
||||
reviewCount: "Diagnostic Expertise",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/three-vertical-plumber-isometric-banner-set_1284-54706.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/three-vertical-plumber-isometric-banner-set_1284-54706.jpg?_wi=2",
|
||||
imageAlt: "Leak detection service",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user