Merge version_1 into main #1
@@ -122,7 +122,7 @@ export default function AboutPage() {
|
||||
role: "Homeowner",
|
||||
company: "Residential Customer",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg?_wi=2",
|
||||
imageAlt: "happy homeowner smiling at home portrait",
|
||||
},
|
||||
{
|
||||
@@ -131,7 +131,7 @@ export default function AboutPage() {
|
||||
role: "Property Manager",
|
||||
company: "Commercial Building",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg?_wi=2",
|
||||
imageAlt: "portrait business owner at office desk",
|
||||
},
|
||||
{
|
||||
@@ -140,7 +140,7 @@ export default function AboutPage() {
|
||||
role: "Homeowner",
|
||||
company: "Residential Customer",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg?_wi=2",
|
||||
imageAlt: "young homeowner portrait natural light",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,56 @@
|
||||
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: "In Need of a Plumber LLC - 24/7 Emergency Plumbing Service",
|
||||
description: "Fast, reliable plumbing services available 24/7. Licensed, insured plumbers ready to handle emergencies, repairs, and installations. Call (555) 123-4567 today.",
|
||||
keywords: "plumber near me, emergency plumber, 24/7 plumbing, leak repair, drain cleaning, water heater, residential plumbing, licensed plumber",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "In Need of a Plumber LLC - Professional Plumbing Service",
|
||||
description: "24/7 emergency plumbing services. Licensed and insured. Fast response, professional results.",
|
||||
type: "website",
|
||||
siteName: "In Need of a Plumber LLC",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/plumber-doing-surprise-gesture_1368-6311.jpg",
|
||||
alt: "Professional plumbing service",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "In Need of a Plumber LLC - 24/7 Service",
|
||||
description: "Professional plumbing services available anytime. Call now.",
|
||||
images: ["http://img.b2bpic.net/free-photo/plumber-doing-surprise-gesture_1368-6311.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +59,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 +73,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -116,7 +116,7 @@ export default function HomePage() {
|
||||
title: "Emergency Plumbing",
|
||||
description: "Available 24/7 for urgent plumbing emergencies. We respond quickly to prevent water damage and restore your system.",
|
||||
tag: "24/7 Available",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-afro-american-barber-wearing-uniform-holding-clock-looking-camera-doing-ok-sign-isolated-olive-green-background_141793-107862.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-afro-american-barber-wearing-uniform-holding-clock-looking-camera-doing-ok-sign-isolated-olive-green-background_141793-107862.jpg?_wi=1",
|
||||
imageAlt: "Emergency plumbing service technician",
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function HomePage() {
|
||||
title: "Leak Repair",
|
||||
description: "Expert detection and repair of water leaks in pipes, fixtures, and walls. We prevent costly water damage.",
|
||||
tag: "Expert Detection",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721540.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721540.jpg?_wi=1",
|
||||
imageAlt: "Professional leak repair work",
|
||||
},
|
||||
{
|
||||
@@ -132,7 +132,7 @@ export default function HomePage() {
|
||||
title: "Drain Cleaning",
|
||||
description: "Professional drain cleaning and unclogging services for residential and commercial properties.",
|
||||
tag: "Professional Service",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-person-washing-fish-with-hose_181624-58490.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-person-washing-fish-with-hose_181624-58490.jpg?_wi=1",
|
||||
imageAlt: "Drain cleaning equipment and service",
|
||||
},
|
||||
{
|
||||
@@ -194,7 +194,7 @@ export default function HomePage() {
|
||||
role: "Homeowner",
|
||||
company: "Residential Customer",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -202,7 +202,7 @@ export default function HomePage() {
|
||||
role: "Property Manager",
|
||||
company: "Commercial Building",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -210,7 +210,7 @@ export default function HomePage() {
|
||||
role: "Homeowner",
|
||||
company: "Residential Customer",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
|
||||
@@ -112,7 +112,7 @@ export default function ServicesPage() {
|
||||
title: "24/7 Emergency Plumbing",
|
||||
description: "Immediate response to burst pipes, major leaks, and other urgent plumbing emergencies. We're available anytime, day or night, to prevent water damage and restore your system.",
|
||||
tag: "Immediate Response",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-afro-american-barber-wearing-uniform-holding-clock-looking-camera-doing-ok-sign-isolated-olive-green-background_141793-107862.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-afro-american-barber-wearing-uniform-holding-clock-looking-camera-doing-ok-sign-isolated-olive-green-background_141793-107862.jpg?_wi=2",
|
||||
imageAlt: "24/7 emergency plumbing service",
|
||||
},
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function ServicesPage() {
|
||||
title: "Advanced Leak Detection",
|
||||
description: "Using state-of-the-art equipment, we locate hidden leaks before they cause damage. Our detection technology identifies problems in walls, under slabs, and hard-to-reach areas.",
|
||||
tag: "Advanced Technology",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721540.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721540.jpg?_wi=2",
|
||||
imageAlt: "Professional leak detection service",
|
||||
},
|
||||
{
|
||||
@@ -128,7 +128,7 @@ export default function ServicesPage() {
|
||||
title: "Professional Drain Services",
|
||||
description: "From routine drain cleaning to major blockage removal, we use hydro-jetting and mechanical cleaning methods. Regular maintenance prevents backups and extends system life.",
|
||||
tag: "Preventive Care",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-person-washing-fish-with-hose_181624-58490.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-person-washing-fish-with-hose_181624-58490.jpg?_wi=2",
|
||||
imageAlt: "Professional drain cleaning",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user