Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-13 18:39:37 +00:00
5 changed files with 44 additions and 37 deletions

View File

@@ -77,7 +77,7 @@ export default function ContactPage() {
]}
buttonAnimation="slide-up"
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-car-mechanic-auto-repair-shop-looking-camera_637285-7794.jpg"
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-car-mechanic-auto-repair-shop-looking-camera_637285-7794.jpg?_wi=2"
imageAlt="Professional plumber ready to help"
mediaAnimation="opacity"
frameStyle="card"

View File

@@ -50,7 +50,7 @@ const EmergencyPage = () => {
]}
buttonAnimation="slide-up"
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg"
imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=5"
imageAlt="Emergency plumbing response"
mediaAnimation="opacity"
frameStyle="card"
@@ -98,7 +98,7 @@ const EmergencyPage = () => {
name: "Burst Pipes",
price: "Immediate Response",
variant: "Quick Fix",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=6",
imageAlt: "Burst pipe emergency",
},
{
@@ -106,7 +106,7 @@ const EmergencyPage = () => {
name: "Water Leaks",
price: "Fast Detection",
variant: "Professional Repair",
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-process-professional-tool-precision-drilling-wood_169016-52220.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-process-professional-tool-precision-drilling-wood_169016-52220.jpg?_wi=3",
imageAlt: "Water leak repair",
},
{
@@ -114,7 +114,7 @@ const EmergencyPage = () => {
name: "Water Line Breaks",
price: "Expert Installation",
variant: "Durable Solution",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg?_wi=4",
imageAlt: "Water line break repair",
},
{
@@ -122,7 +122,7 @@ const EmergencyPage = () => {
name: "Overflowing Fixtures",
price: "Rapid Response",
variant: "Emergency Service",
imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg?_wi=4",
imageAlt: "Overflowing fixture repair",
},
{
@@ -130,7 +130,7 @@ const EmergencyPage = () => {
name: "Clogged Drains",
price: "Swift Unclogging",
variant: "Professional Equipment",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cleaning-his-home_23-2148112854.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cleaning-his-home_23-2148112854.jpg?_wi=3",
imageAlt: "Clogged drain repair",
},
{
@@ -138,7 +138,7 @@ const EmergencyPage = () => {
name: "Urgent Repairs",
price: "24/7 Availability",
variant: "Always Ready",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=7",
imageAlt: "Urgent plumbing repair",
},
]}

View File

@@ -1,27 +1,32 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } 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 { Public_Sans } 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 publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "24/7 Plumbing Services | Georgia Plumbing Solutions Co.",
description: "Professional plumbing services in Georgia. 24/7 emergency repairs, water line service, leak detection, and more. 4.6-star rated with 70+ verified reviews. Licensed, insured, fast response.",
};
export default function RootLayout({
children,
@@ -31,7 +36,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +50,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -127,7 +127,7 @@ export default function HomePage() {
name: "Emergency Plumbing Repairs",
price: "Fast Response",
variant: "24/7 Available",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=1",
imageAlt: "Emergency plumbing repair service",
},
{
@@ -135,7 +135,7 @@ export default function HomePage() {
name: "Water Line Repair & Replacement",
price: "Expert Service",
variant: "Residential & Commercial",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg?_wi=1",
imageAlt: "Water line replacement service",
},
{
@@ -143,7 +143,7 @@ export default function HomePage() {
name: "Leak Detection & Repair",
price: "Precision Diagnostics",
variant: "Advanced Technology",
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-process-professional-tool-precision-drilling-wood_169016-52220.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-process-professional-tool-precision-drilling-wood_169016-52220.jpg?_wi=1",
imageAlt: "Professional leak detection service",
},
{
@@ -151,7 +151,7 @@ export default function HomePage() {
name: "Drain & Clog Solutions",
price: "Rapid Relief",
variant: "Professional Equipment",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cleaning-his-home_23-2148112854.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cleaning-his-home_23-2148112854.jpg?_wi=1",
imageAlt: "Drain cleaning service",
},
{
@@ -159,7 +159,7 @@ export default function HomePage() {
name: "Bathroom Plumbing",
price: "Quality Installation",
variant: "Fixtures & Repairs",
imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg?_wi=1",
imageAlt: "Bathroom plumbing service",
},
{
@@ -167,7 +167,7 @@ export default function HomePage() {
name: "Commercial Plumbing",
price: "Business Solutions",
variant: "Large Scale Service",
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-manager-discussing-with-employees_482257-120612.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-manager-discussing-with-employees_482257-120612.jpg?_wi=1",
imageAlt: "Commercial plumbing service",
},
]}
@@ -245,7 +245,7 @@ export default function HomePage() {
description="We're available 24 hours a day, 7 days a week for emergencies. Don't let a plumbing problem ruin your day—call us immediately."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-car-mechanic-auto-repair-shop-looking-camera_637285-7794.jpg"
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-car-mechanic-auto-repair-shop-looking-camera_637285-7794.jpg?_wi=1"
imageAlt="Professional plumber ready to help"
mediaAnimation="opacity"
mediaPosition="right"

View File

@@ -58,7 +58,7 @@ const ServicesPage = () => {
]}
buttonAnimation="slide-up"
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg"
imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=2"
imageAlt="Professional plumbing services"
mediaAnimation="opacity"
frameStyle="card"
@@ -74,7 +74,7 @@ const ServicesPage = () => {
name: "Emergency Plumbing Repairs",
price: "24/7 Response",
variant: "Fast Service",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=3",
imageAlt: "Emergency plumbing repair",
},
{
@@ -82,7 +82,7 @@ const ServicesPage = () => {
name: "Water Line Repair & Replacement",
price: "Professional Installation",
variant: "Expert Technicians",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg?_wi=2",
imageAlt: "Water line service",
},
{
@@ -90,7 +90,7 @@ const ServicesPage = () => {
name: "Leak Detection & Repair",
price: "Advanced Technology",
variant: "Precision Service",
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-process-professional-tool-precision-drilling-wood_169016-52220.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-process-professional-tool-precision-drilling-wood_169016-52220.jpg?_wi=2",
imageAlt: "Leak detection service",
},
{
@@ -98,7 +98,7 @@ const ServicesPage = () => {
name: "Drain & Clog Solutions",
price: "Fast Unclogging",
variant: "Professional Equipment",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cleaning-his-home_23-2148112854.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cleaning-his-home_23-2148112854.jpg?_wi=2",
imageAlt: "Drain cleaning service",
},
{
@@ -106,7 +106,7 @@ const ServicesPage = () => {
name: "Faucet & Fixture Repairs",
price: "Quality Installation",
variant: "Expert Repairs",
imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg?_wi=2",
imageAlt: "Faucet and fixture service",
},
{
@@ -114,7 +114,7 @@ const ServicesPage = () => {
name: "Shower & Bathroom Plumbing",
price: "Complete Solutions",
variant: "Remodels & Repairs",
imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg?_wi=3",
imageAlt: "Bathroom plumbing service",
},
{
@@ -122,7 +122,7 @@ const ServicesPage = () => {
name: "Pipe Repair & Replacement",
price: "Durable Solutions",
variant: "Long-Term Fixes",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg?_wi=3",
imageAlt: "Pipe repair service",
},
{
@@ -130,7 +130,7 @@ const ServicesPage = () => {
name: "Residential Plumbing",
price: "Family Home Solutions",
variant: "Trusted Service",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=4",
imageAlt: "Residential plumbing",
},
{
@@ -138,7 +138,7 @@ const ServicesPage = () => {
name: "Commercial Plumbing",
price: "Business Solutions",
variant: "Large Scale Service",
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-manager-discussing-with-employees_482257-120612.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-manager-discussing-with-employees_482257-120612.jpg?_wi=2",
imageAlt: "Commercial plumbing",
},
]}