Merge version_1 into main #1
@@ -79,7 +79,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"24/7 emergency plumbing services for burst pipes, water leaks, and urgent issues. Fast response times and professional solutions to minimize water damage and restore your plumbing system.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg",
|
||||
"http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg?_wi=3",
|
||||
imageAlt: "drain cleaning professional plumber",
|
||||
},
|
||||
{
|
||||
@@ -88,7 +88,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"Professional drain cleaning using state-of-the-art equipment. We clear stubborn clogs, tree roots, and debris to restore proper drainage and prevent backups.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg",
|
||||
"http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg?_wi=4",
|
||||
imageAlt: "drain cleaning professional plumber",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"Advanced leak detection technology to identify hidden water leaks in walls, underground, and fixtures. Quick repairs prevent costly water damage and reduce your water bills.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/focused-plumber-working-assembling-pipelines-install-plumbing-system-while-building-new-house_662251-539.jpg",
|
||||
"http://img.b2bpic.net/free-photo/focused-plumber-working-assembling-pipelines-install-plumbing-system-while-building-new-house_662251-539.jpg?_wi=2",
|
||||
imageAlt: "water leak detection plumbing repair",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -43,7 +43,7 @@ export default function ContactPage() {
|
||||
tag="Contact Us"
|
||||
title="Emergency Plumbing? Call Now"
|
||||
description="Available 24/7 for emergency plumbing services in Miami-Dade County. Our team responds quickly to burst pipes, leaks, clogs, and other urgent plumbing issues."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881677.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881677.jpg?_wi=3"
|
||||
imageAlt="Professional plumber ready to help"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,29 +1,52 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Inter } 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 { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Main Plumbing Services - 24/7 Emergency Plumbing Miami",
|
||||
description: "Licensed emergency plumbing services in Miami-Dade County. 24/7 response for burst pipes, drain cleaning, leak repair, water heater installation & sewer services.",
|
||||
keywords: "emergency plumbing Miami, plumber Miami-Dade, drain cleaning Miami, leak repair, water heater installation, sewer line repair, 24/7 plumbing",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Main Plumbing Services - 24/7 Emergency Plumbing in Miami",
|
||||
description: "Professional licensed plumbers available 24/7 for emergency repairs, drain cleaning, leak detection, water heater installation, and sewer services throughout Miami-Dade County.",
|
||||
type: "website",
|
||||
siteName: "Main Plumbing Services",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/annoyed-slavic-cleaner-man-with-rubber-gloves-holding-alarm-clock_141793-124525.jpg",
|
||||
alt: "Main Plumbing Services - Emergency Plumbing in Miami",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Main Plumbing Services - 24/7 Emergency Plumbing",
|
||||
description: "Fast response emergency plumbing in Miami. Licensed professionals for all your plumbing needs.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/annoyed-slavic-cleaner-man-with-rubber-gloves-holding-alarm-clock_141793-124525.jpg",
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +55,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +69,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -135,7 +135,7 @@ export default function HomePage() {
|
||||
role: "Homeowner, Kendall",
|
||||
testimonial:
|
||||
"Main Plumbing was incredible! They arrived within 45 minutes of my emergency call at 2 AM. The technician was professional, courteous, and fixed my burst pipe expertly. Highly recommended!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -143,7 +143,7 @@ export default function HomePage() {
|
||||
role: "Property Manager, Miami Beach",
|
||||
testimonial:
|
||||
"I've worked with Main Plumbing for over 3 years. Their team handles all our emergency and routine maintenance. They're reliable, fair on pricing, and always professional. Best decision for our properties.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12665.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12665.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -151,7 +151,7 @@ export default function HomePage() {
|
||||
role: "Homeowner, Coral Gables",
|
||||
testimonial:
|
||||
"The water heater installation was seamless. They explained everything clearly, installed the new system quickly, and cleaned up afterward. Excellent service from start to finish!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1665.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1665.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -234,7 +234,7 @@ export default function HomePage() {
|
||||
tag="Contact Us"
|
||||
title="Emergency Plumbing? Call Now"
|
||||
description="Available 24/7 for emergency plumbing services in Miami-Dade County. Our team responds quickly to burst pipes, leaks, clogs, and other urgent plumbing issues."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881677.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881677.jpg?_wi=1"
|
||||
imageAlt="Professional plumber ready to help"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -52,21 +52,21 @@ export default function ServicesPage() {
|
||||
title: "Emergency Plumbing Repair",
|
||||
description:
|
||||
"24/7 emergency plumbing services for burst pipes, water leaks, and urgent issues. Fast response times and professional solutions to minimize water damage and restore your plumbing system.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Drain Cleaning & Maintenance",
|
||||
description:
|
||||
"Professional drain cleaning using state-of-the-art equipment. We clear stubborn clogs, tree roots, and debris to restore proper drainage and prevent backups.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Leak Detection & Repair",
|
||||
description:
|
||||
"Advanced leak detection technology to identify hidden water leaks in walls, underground, and fixtures. Quick repairs prevent costly water damage and reduce your water bills.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/focused-plumber-working-assembling-pipelines-install-plumbing-system-while-building-new-house_662251-539.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/focused-plumber-working-assembling-pipelines-install-plumbing-system-while-building-new-house_662251-539.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
@@ -104,7 +104,7 @@ export default function ServicesPage() {
|
||||
role: "Homeowner, Kendall",
|
||||
testimonial:
|
||||
"Main Plumbing was incredible! They arrived within 45 minutes of my emergency call at 2 AM. The technician was professional, courteous, and fixed my burst pipe expertly. Highly recommended!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -112,7 +112,7 @@ export default function ServicesPage() {
|
||||
role: "Property Manager, Miami Beach",
|
||||
testimonial:
|
||||
"I've worked with Main Plumbing for over 3 years. Their team handles all our emergency and routine maintenance. They're reliable, fair on pricing, and always professional. Best decision for our properties.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12665.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-cafe_273609-12665.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -120,7 +120,7 @@ export default function ServicesPage() {
|
||||
role: "Homeowner, Coral Gables",
|
||||
testimonial:
|
||||
"The water heater installation was seamless. They explained everything clearly, installed the new system quickly, and cleaned up afterward. Excellent service from start to finish!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1665.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1665.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -131,7 +131,7 @@ export default function ServicesPage() {
|
||||
tag="Ready to Schedule?"
|
||||
title="Get Professional Plumbing Services Today"
|
||||
description="Contact Main Plumbing Services to schedule your service appointment or request emergency assistance. Available 24/7 for all your plumbing needs in Miami-Dade County."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881677.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881677.jpg?_wi=2"
|
||||
imageAlt="Professional plumber ready to help"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user