Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -79,7 +79,7 @@ export default function AboutPage() {
|
||||
title: "Professional Plumbing",
|
||||
description: "From routine maintenance to emergency repairs. We handle all plumbing needs with expert care and fast response times.",
|
||||
tag: "Popular",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg?_wi=3",
|
||||
imageAlt: "professional plumber fixing pipe",
|
||||
},
|
||||
{
|
||||
@@ -87,7 +87,7 @@ export default function AboutPage() {
|
||||
title: "Electrical Services",
|
||||
description: "Certified electricians for installations, repairs, and inspections. Licensed, insured, and code-compliant work guaranteed.",
|
||||
tag: "Available",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-53652.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-53652.jpg?_wi=3",
|
||||
imageAlt: "electrician installing outlet",
|
||||
},
|
||||
{
|
||||
@@ -95,7 +95,7 @@ export default function AboutPage() {
|
||||
title: "HVAC Solutions",
|
||||
description: "Heating, cooling, and ventilation expertise. Maintenance plans and emergency repairs available 24/7.",
|
||||
tag: "Emergency",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg?_wi=3",
|
||||
imageAlt: "hvac technician working unit",
|
||||
},
|
||||
{
|
||||
@@ -103,7 +103,7 @@ export default function AboutPage() {
|
||||
title: "General Repairs",
|
||||
description: "Drywall, painting, carpentry, and general home maintenance. Professional results at competitive prices.",
|
||||
tag: "Quick",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-engineer-contractor-drilling-wooden-panel-male-carpenter-with-safety-helmet-working-building-some-furniture_662251-471.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-engineer-contractor-drilling-wooden-panel-male-carpenter-with-safety-helmet-working-building-some-furniture_662251-471.jpg?_wi=3",
|
||||
imageAlt: "general home repair work",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,63 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } 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 { Manrope } 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 manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Local Services | Free Quote & Same-Day Service",
|
||||
description: "Expert plumbing, electrical, HVAC, and general repair services. Licensed, insured, 24/7 emergency response. Get a free quote today. Serving the community for 15+ years.",
|
||||
keywords: "plumbing services, electrical repair, HVAC maintenance, home repair, local services, emergency service, free quote",
|
||||
metadataBase: new URL("https://localpro-services.com"),
|
||||
alternates: {
|
||||
canonical: "https://localpro-services.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Professional Local Services | Trusted Since 2009",
|
||||
description: "Expert service across plumbing, electrical, HVAC, and repairs. Licensed, insured, and ready to help. Call for free quote.",
|
||||
url: "https://localpro-services.com",
|
||||
siteName: "Local Pro Services",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg",
|
||||
alt: "Professional service team",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Professional Local Services Available 24/7",
|
||||
description: "Expert plumbing, electrical, HVAC, and general repairs. Free quotes. Licensed & insured.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +66,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +80,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -108,28 +108,28 @@ export default function HomePage() {
|
||||
title: "Professional Plumbing",
|
||||
description: "From routine maintenance to emergency repairs. We handle all plumbing needs with expert care and fast response times.",
|
||||
tag: "Popular",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "electrical",
|
||||
title: "Electrical Services",
|
||||
description: "Certified electricians for installations, repairs, and inspections. Licensed, insured, and code-compliant work guaranteed.",
|
||||
tag: "Available",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-53652.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-53652.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "hvac",
|
||||
title: "HVAC Solutions",
|
||||
description: "Heating, cooling, and ventilation expertise. Maintenance plans and emergency repairs available 24/7.",
|
||||
tag: "Emergency",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "general",
|
||||
title: "General Repairs",
|
||||
description: "Drywall, painting, carpentry, and general home maintenance. Professional results at competitive prices.",
|
||||
tag: "Quick",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-engineer-contractor-drilling-wooden-panel-male-carpenter-with-safety-helmet-working-building-some-furniture_662251-471.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-engineer-contractor-drilling-wooden-panel-male-carpenter-with-safety-helmet-working-building-some-furniture_662251-471.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -188,7 +188,7 @@ export default function HomePage() {
|
||||
quote: "The team was professional, punctual, and solved our plumbing issue quickly. Highly recommend!",
|
||||
tag: "Plumbing",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/tender-young-pretty-girl-smiling-listening-streaming-music-headphones_176420-9702.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kitchen-faucet-water-aerator-metal-texture_169016-68888.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kitchen-faucet-water-aerator-metal-texture_169016-68888.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
@@ -198,7 +198,7 @@ export default function HomePage() {
|
||||
quote: "Licensed, insured, and incredibly knowledgeable. Fixed our electrical problems efficiently. Great value!",
|
||||
tag: "Electrical",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53087.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53087.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
@@ -208,7 +208,7 @@ export default function HomePage() {
|
||||
quote: "Our heating system was repaired in one visit. Professional crew and fair pricing. Will call again!",
|
||||
tag: "HVAC",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/brunette-girl-giving-thumb-up_23-2147650951.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
@@ -218,7 +218,7 @@ export default function HomePage() {
|
||||
quote: "Fast response time, honest diagnosis, and quality work. This is a company that truly cares about customers.",
|
||||
tag: "General Repairs",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/isolated-portrait-cheerful-young-bearded-hipster-smiling-having-fun-nice-conversation-with-his-friends_273609-1774.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/artist-props-photography-studio_23-2148885639.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/artist-props-photography-studio_23-2148885639.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
@@ -228,7 +228,7 @@ export default function HomePage() {
|
||||
quote: "Called for emergency plumbing on a Sunday. They came same-day and fixed it perfectly. Amazing service!",
|
||||
tag: "Emergency",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/ordinary-middle-aged-woman_1398-1345.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-female-paramedics-standing-by-ambulance-two-emergency-nurses-with-face-mask-paramedic-carrying-medical-trauma-bag_657921-1535.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-female-paramedics-standing-by-ambulance-two-emergency-nurses-with-face-mask-paramedic-carrying-medical-trauma-bag_657921-1535.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
@@ -238,7 +238,7 @@ export default function HomePage() {
|
||||
quote: "From quote to completion, everything was transparent and professional. Highly satisfied with the results.",
|
||||
tag: "General Repairs",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-happy-surprised-man-looking-left-with-excitement_1258-26769.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessmen-office-scene_23-2147626604.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessmen-office-scene_23-2147626604.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -51,7 +51,7 @@ export default function ReviewsPage() {
|
||||
tag: "Plumbing",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/tender-young-pretty-girl-smiling-listening-streaming-music-headphones_176420-9702.jpg",
|
||||
avatarAlt: "happy customer portrait smiling",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kitchen-faucet-water-aerator-metal-texture_169016-68888.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/kitchen-faucet-water-aerator-metal-texture_169016-68888.jpg?_wi=2",
|
||||
imageAlt: "clean bathroom plumbing installation",
|
||||
},
|
||||
{
|
||||
@@ -63,7 +63,7 @@ export default function ReviewsPage() {
|
||||
tag: "Electrical",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1676.jpg",
|
||||
avatarAlt: "professional man portrait happy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53087.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-installing-laying-electrical-cables-ceiling-inside-house_169016-53087.jpg?_wi=2",
|
||||
imageAlt: "modern electrical panel installation",
|
||||
},
|
||||
{
|
||||
@@ -75,7 +75,7 @@ export default function ReviewsPage() {
|
||||
tag: "HVAC",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/brunette-girl-giving-thumb-up_23-2147650951.jpg",
|
||||
avatarAlt: "woman satisfied customer portrait",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coworkers-refill-air-conditioner-freon_482257-90737.jpg?_wi=2",
|
||||
imageAlt: "hvac system installation professional",
|
||||
},
|
||||
{
|
||||
@@ -87,7 +87,7 @@ export default function ReviewsPage() {
|
||||
tag: "General Repairs",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/isolated-portrait-cheerful-young-bearded-hipster-smiling-having-fun-nice-conversation-with-his-friends_273609-1774.jpg",
|
||||
avatarAlt: "professional man smiling portrait",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/artist-props-photography-studio_23-2148885639.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/artist-props-photography-studio_23-2148885639.jpg?_wi=2",
|
||||
imageAlt: "finished home repair work interior",
|
||||
},
|
||||
{
|
||||
@@ -99,7 +99,7 @@ export default function ReviewsPage() {
|
||||
tag: "Emergency",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/ordinary-middle-aged-woman_1398-1345.jpg",
|
||||
avatarAlt: "happy woman customer portrait",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-female-paramedics-standing-by-ambulance-two-emergency-nurses-with-face-mask-paramedic-carrying-medical-trauma-bag_657921-1535.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-female-paramedics-standing-by-ambulance-two-emergency-nurses-with-face-mask-paramedic-carrying-medical-trauma-bag_657921-1535.jpg?_wi=2",
|
||||
imageAlt: "emergency plumbing repair service",
|
||||
},
|
||||
{
|
||||
@@ -111,7 +111,7 @@ export default function ReviewsPage() {
|
||||
tag: "General Repairs",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-happy-surprised-man-looking-left-with-excitement_1258-26769.jpg",
|
||||
avatarAlt: "satisfied man portrait smiling",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessmen-office-scene_23-2147626604.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessmen-office-scene_23-2147626604.jpg?_wi=2",
|
||||
imageAlt: "professional job completion photo",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -45,28 +45,28 @@ export default function ServicesPage() {
|
||||
title: "Professional Plumbing",
|
||||
description: "From routine maintenance to emergency repairs. We handle all plumbing needs with expert care and fast response times. Our licensed plumbers are available 24/7 for emergencies.",
|
||||
tag: "Popular",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "electrical",
|
||||
title: "Electrical Services",
|
||||
description: "Certified electricians for installations, repairs, and inspections. Licensed, insured, and code-compliant work guaranteed. We handle residential and commercial projects.",
|
||||
tag: "Available",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-53652.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-53652.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "hvac",
|
||||
title: "HVAC Solutions",
|
||||
description: "Heating, cooling, and ventilation expertise. Maintenance plans and emergency repairs available 24/7. Keep your systems running efficiently year-round.",
|
||||
tag: "Emergency",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "general",
|
||||
title: "General Repairs",
|
||||
description: "Drywall, painting, carpentry, and general home maintenance. Professional results at competitive prices. We handle both small repairs and larger renovation projects.",
|
||||
tag: "Quick",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-engineer-contractor-drilling-wooden-panel-male-carpenter-with-safety-helmet-working-building-some-furniture_662251-471.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-engineer-contractor-drilling-wooden-panel-male-carpenter-with-safety-helmet-working-building-some-furniture_662251-471.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user