Merge version_1 into main #1
@@ -74,7 +74,7 @@ export default function AboutPage() {
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
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"
|
||||
imageAlt="certified plumber installing pipes professional"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -91,7 +91,7 @@ export default function AboutPage() {
|
||||
title: "Emergency Plumbing Repair",
|
||||
description: "24/7 emergency response for burst pipes, leaks, clogs, and other urgent plumbing issues. Our certified technicians arrive quickly and resolve problems efficiently.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg?_wi=3",
|
||||
},
|
||||
items: [
|
||||
{ icon: Wrench, text: "Same-day service available" },
|
||||
@@ -105,7 +105,7 @@ export default function AboutPage() {
|
||||
title: "Heating System Installation & Maintenance",
|
||||
description: "Professional heating installation, maintenance, and repairs to keep your home warm and comfortable. We service all major brands and models.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg?_wi=3",
|
||||
},
|
||||
items: [
|
||||
{ icon: Zap, text: "Energy-efficient solutions" },
|
||||
@@ -119,7 +119,7 @@ export default function AboutPage() {
|
||||
title: "Air Conditioning Services",
|
||||
description: "Complete AC solutions including installation, repair, and seasonal maintenance. Beat the heat with our reliable cooling systems.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-employee-leaning-car-holding-wrench_23-2148327526.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-employee-leaning-car-holding-wrench_23-2148327526.jpg?_wi=3",
|
||||
},
|
||||
items: [
|
||||
{ icon: Wind, text: "Cooling efficiency certified" },
|
||||
|
||||
@@ -1,24 +1,62 @@
|
||||
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: "QUICKPROS - 24/7 Plumbing, Heating & AC Services",
|
||||
description: "Expert plumbing, heating, and air conditioning services available 24/7. 20+ years experience, licensed technicians, same-day service. Call for emergency or scheduled appointments.",
|
||||
keywords: "plumbing services, emergency plumber, heating repair, air conditioning service, HVAC maintenance, 24/7 service",
|
||||
metadataBase: new URL("https://quickpros.local"),
|
||||
alternates: {
|
||||
canonical: "https://quickpros.local",
|
||||
},
|
||||
openGraph: {
|
||||
title: "QUICKPROS - Professional HVAC & Plumbing Services",
|
||||
description: "Fast, reliable plumbing, heating, and AC services. 24/7 emergency response, licensed technicians, and honest pricing.",
|
||||
siteName: "QUICKPROS",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/group-workers-having-meeting-with-company-managers-factory-focus-is-female-worker-is-presenting-development-reports_637285-4146.jpg",
|
||||
alt: "QUICKPROS professional plumbing team",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "QUICKPROS - Your Trusted Plumbing & HVAC Experts",
|
||||
description: "Expert plumbing, heating, and AC services. Available 24/7 for emergencies.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/group-workers-having-meeting-with-company-managers-factory-focus-is-female-worker-is-presenting-development-reports_637285-4146.jpg",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +65,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 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -96,7 +96,7 @@ export default function HomePage() {
|
||||
description="With over 20 years of experience serving the community, QUICKPROS has earned a reputation for excellence in plumbing, heating, and air conditioning services. We pride ourselves on transparent pricing, professional workmanship, and exceptional customer service."
|
||||
tag="About Us"
|
||||
buttons={[{ text: "Schedule Service", href: "#contact" }]}
|
||||
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"
|
||||
imageAlt="QUICKPROS certified technician at work"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -113,7 +113,7 @@ export default function HomePage() {
|
||||
title: "Emergency Plumbing Repair",
|
||||
description: "24/7 emergency response for burst pipes, leaks, clogs, and other urgent plumbing issues. Our certified technicians arrive quickly and resolve problems efficiently.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: Wrench, text: "Same-day service available" },
|
||||
@@ -127,7 +127,7 @@ export default function HomePage() {
|
||||
title: "Heating System Installation & Maintenance",
|
||||
description: "Professional heating installation, maintenance, and repairs to keep your home warm and comfortable. We service all major brands and models.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: Zap, text: "Energy-efficient solutions" },
|
||||
@@ -141,7 +141,7 @@ export default function HomePage() {
|
||||
title: "Air Conditioning Services",
|
||||
description: "Complete AC solutions including installation, repair, and seasonal maintenance. Beat the heat with our reliable cooling systems.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-employee-leaning-car-holding-wrench_23-2148327526.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-employee-leaning-car-holding-wrench_23-2148327526.jpg?_wi=1",
|
||||
},
|
||||
items: [
|
||||
{ icon: Wind, text: "Cooling efficiency certified" },
|
||||
|
||||
@@ -77,7 +77,7 @@ export default function ServicesPage() {
|
||||
title: "Emergency Plumbing Repair",
|
||||
description: "24/7 emergency response for burst pipes, leaks, clogs, and other urgent plumbing issues. Our certified technicians arrive quickly and resolve problems efficiently. We handle water damage mitigation, emergency shut-offs, and all types of pipe repairs.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: Wrench, text: "Same-day service available" },
|
||||
@@ -91,7 +91,7 @@ export default function ServicesPage() {
|
||||
title: "Heating System Installation & Maintenance",
|
||||
description: "Professional heating installation, maintenance, and repairs to keep your home warm and comfortable. We service all major brands and models. Our technicians are experts in furnace maintenance, boiler repair, and heating system upgrades.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: Zap, text: "Energy-efficient solutions" },
|
||||
@@ -105,7 +105,7 @@ export default function ServicesPage() {
|
||||
title: "Air Conditioning Services",
|
||||
description: "Complete AC solutions including installation, repair, and seasonal maintenance. Beat the heat with our reliable cooling systems. We offer AC tune-ups, refrigerant recharging, compressor repair, and complete system replacements with warranty.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-employee-leaning-car-holding-wrench_23-2148327526.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-employee-leaning-car-holding-wrench_23-2148327526.jpg?_wi=2",
|
||||
},
|
||||
items: [
|
||||
{ icon: Wind, text: "Cooling efficiency certified" },
|
||||
|
||||
Reference in New Issue
Block a user