Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f697f336b | |||
| 890e202ff8 | |||
| ce79ec57e5 | |||
| 378e3a1d89 | |||
| d87f6de3f7 | |||
| 324db1b4e4 | |||
| 8f3e121e65 | |||
| 28b64e2e77 | |||
| b80acd2295 | |||
| 2a4b67c207 | |||
| 6056e01b75 | |||
| b73ddd7dcf | |||
| 9358548062 | |||
| 0fe72b21ba |
@@ -1,75 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Lato } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const lato = Lato({
|
|
||||||
variable: "--font-lato",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["100", "300", "400", "700", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Reliable Plumbing & Heating Services | Westernish | Vancouver",
|
title: "Westernish Plumbing & Heating", description: "Licensed and insured plumbing professionals serving Vancouver and the Lower Mainland."};
|
||||||
description: "Licensed plumbing and heating professionals serving Vancouver and Lower Mainland. Fast response, fair pricing, 4.8★ rating. Call (604) 368-5243 today.",
|
|
||||||
keywords: "plumber Vancouver, plumbing services, heating services, emergency plumber, hot water tank, furnace repair, HVAC",
|
|
||||||
metadataBase: new URL("https://westernishplumbing.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://westernishplumbing.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Reliable Plumbing & Heating Services | Westernish",
|
|
||||||
description: "Fast, professional plumbing and heating services in Vancouver. Licensed, insured, trusted by 1000+ homeowners.",
|
|
||||||
url: "https://westernishplumbing.com",
|
|
||||||
siteName: "Westernish Plumbing & Heating",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg",
|
|
||||||
alt: "Professional plumber providing quality service",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Reliable Plumbing & Heating Services | Westernish",
|
|
||||||
description: "Fast, professional, trusted plumbing and heating services in Vancouver and Lower Mainland.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1437,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,7 +38,8 @@ export default function HomePage() {
|
|||||||
brandName="Westernish Plumbing"
|
brandName="Westernish Plumbing"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Call Now", href: "tel:(604)368-5243"}}
|
text: "Call Now", href: "tel:(604)368-5243"
|
||||||
|
}}
|
||||||
className="fixed top-4 left-4 right-4 z-50"
|
className="fixed top-4 left-4 right-4 z-50"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -50,7 +51,8 @@ export default function HomePage() {
|
|||||||
background={{ variant: "downward-rays-static" }}
|
background={{ variant: "downward-rays-static" }}
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg", alt: "Professional plumber at work"},
|
src: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&h=400&fit=crop", alt: "Professional plumber at work"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 1000+ Homeowners"
|
avatarText="Trusted by 1000+ Homeowners"
|
||||||
buttons={[
|
buttons={[
|
||||||
@@ -69,7 +71,7 @@ export default function HomePage() {
|
|||||||
{ icon: Award, label: "Google Rating", value: "4.8★" },
|
{ icon: Award, label: "Google Rating", value: "4.8★" },
|
||||||
{ icon: Shield, label: "Licensed & Insured", value: "100%" },
|
{ icon: Shield, label: "Licensed & Insured", value: "100%" },
|
||||||
{ icon: Clock, label: "Fast Response", value: "Same Day" },
|
{ icon: Clock, label: "Fast Response", value: "Same Day" },
|
||||||
{ icon: CheckCircle, label: "Years Experience", value: "20+ Years" },
|
{ icon: CheckCircle, label: "Years Experience", value: "20+" },
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -85,7 +87,8 @@ export default function HomePage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1", title: "Plumbing Services", description: "From leak repairs to complete pipe installations, our licensed plumbers handle all your plumbing needs with precision and care.", media: {
|
id: "1", title: "Plumbing Services", description: "From leak repairs to complete pipe installations, our licensed plumbers handle all your plumbing needs with precision and care.", media: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg?_wi=1"},
|
imageSrc: "https://images.unsplash.com/photo-1585479542326-5ac408f4ae4f?w=600&h=400&fit=crop&_wi=1"
|
||||||
|
},
|
||||||
items: [
|
items: [
|
||||||
{ icon: Droplets, text: "Leak Repairs" },
|
{ icon: Droplets, text: "Leak Repairs" },
|
||||||
{ icon: Wrench, text: "Pipe Installation" },
|
{ icon: Wrench, text: "Pipe Installation" },
|
||||||
@@ -96,7 +99,8 @@ export default function HomePage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "Hot Water Tank Services", description: "Professional installation, replacement, and repair of hot water tanks and tankless systems to keep your home comfortable.", media: {
|
id: "2", title: "Hot Water Tank Services", description: "Professional installation, replacement, and repair of hot water tanks and tankless systems to keep your home comfortable.", media: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/service-man-adjusting-house-heating-system_1303-26529.jpg?_wi=1"},
|
imageSrc: "https://images.unsplash.com/photo-1621905251538-48416bd8575a?w=600&h=400&fit=crop&_wi=1"
|
||||||
|
},
|
||||||
items: [
|
items: [
|
||||||
{ icon: Zap, text: "Installation" },
|
{ icon: Zap, text: "Installation" },
|
||||||
{ icon: RefreshCw, text: "Replacement" },
|
{ icon: RefreshCw, text: "Replacement" },
|
||||||
@@ -107,7 +111,8 @@ export default function HomePage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "Heating Services", description: "Keep your home warm all winter with our expert furnace and boiler installation, repair, and maintenance services.", media: {
|
id: "3", title: "Heating Services", description: "Keep your home warm all winter with our expert furnace and boiler installation, repair, and maintenance services.", media: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-nurse-giving-scan-patient_23-2149341551.jpg?_wi=1"},
|
imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=600&h=400&fit=crop&_wi=1"
|
||||||
|
},
|
||||||
items: [
|
items: [
|
||||||
{ icon: Flame, text: "Furnace Installation" },
|
{ icon: Flame, text: "Furnace Installation" },
|
||||||
{ icon: Wrench, text: "Boiler Repair" },
|
{ icon: Wrench, text: "Boiler Repair" },
|
||||||
@@ -118,7 +123,8 @@ export default function HomePage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", title: "Gas Services & Emergency", description: "Safe gas line installation, appliance hookups, and emergency plumbing response when you need it most.", media: {
|
id: "4", title: "Gas Services & Emergency", description: "Safe gas line installation, appliance hookups, and emergency plumbing response when you need it most.", media: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/male-worker-operating-machinery-factory_107420-96043.jpg"},
|
imageSrc: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=600&h=400&fit=crop"
|
||||||
|
},
|
||||||
items: [
|
items: [
|
||||||
{ icon: Zap, text: "Gas Line Install" },
|
{ icon: Zap, text: "Gas Line Install" },
|
||||||
{ icon: Flame, text: "Appliance Hookups" },
|
{ icon: Flame, text: "Appliance Hookups" },
|
||||||
@@ -157,22 +163,28 @@ export default function HomePage() {
|
|||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Vancouver, BC", rating: 5,
|
id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Vancouver, BC", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=1", imageAlt: "customer portrait professional headshot person"},
|
imageAlt: "Customer review"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Michael Chen", role: "Property Manager", company: "Richmond, BC", rating: 5,
|
id: "2", name: "Michael Chen", role: "Property Manager", company: "Richmond, BC", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=2", imageAlt: "customer portrait professional headshot person"},
|
imageAlt: "Customer review"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Emily Rodriguez", role: "Business Owner", company: "Burnaby, BC", rating: 5,
|
id: "3", name: "Emily Rodriguez", role: "Business Owner", company: "Burnaby, BC", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=3", imageAlt: "customer portrait professional headshot person"},
|
imageAlt: "Customer review"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "David Kim", role: "Homeowner", company: "Surrey, BC", rating: 5,
|
id: "4", name: "David Kim", role: "Homeowner", company: "Surrey, BC", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=4", imageAlt: "customer portrait professional headshot person"},
|
imageAlt: "Customer review"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "Jennifer Martinez", role: "Office Manager", company: "Coquitlam, BC", rating: 5,
|
id: "5", name: "Jennifer Martinez", role: "Office Manager", company: "Coquitlam, BC", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=5", imageAlt: "customer portrait professional headshot person"},
|
imageAlt: "Customer review"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "6", name: "Robert Thompson", role: "Homeowner", company: "Langley, BC", rating: 5,
|
id: "6", name: "Robert Thompson", role: "Homeowner", company: "Langley, BC", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=6", imageAlt: "customer portrait professional headshot person"},
|
imageAlt: "Customer review"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
@@ -190,7 +202,6 @@ export default function HomePage() {
|
|||||||
tagIcon={PhoneCall}
|
tagIcon={PhoneCall}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg?_wi=2"
|
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Enter your email"
|
inputPlaceholder="Enter your email"
|
||||||
@@ -202,7 +213,7 @@ export default function HomePage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterMedia
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/weathered-rusty-refrigeration-rack-factory_181624-56923.jpg?_wi=1"
|
imageSrc="https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=400&fit=crop&_wi=1"
|
||||||
imageAlt="Plumbing and heating services"
|
imageAlt="Plumbing and heating services"
|
||||||
logoText="Westernish Plumbing & Heating"
|
logoText="Westernish Plumbing & Heating"
|
||||||
columns={[
|
columns={[
|
||||||
@@ -237,4 +248,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,8 @@ export default function ServicesPage() {
|
|||||||
brandName="Westernish Plumbing"
|
brandName="Westernish Plumbing"
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
button={{
|
button={{
|
||||||
text: "Call Now", href: "tel:(604)368-5243"}}
|
text: "Call Now", href: "tel:(604)368-5243"
|
||||||
|
}}
|
||||||
className="fixed top-4 left-4 right-4 z-50"
|
className="fixed top-4 left-4 right-4 z-50"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -48,7 +49,8 @@ export default function ServicesPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1", title: "Plumbing Services", description: "From leak repairs to complete pipe installations, our licensed plumbers handle all your plumbing needs with precision and care. We diagnose problems quickly and provide lasting solutions.", media: {
|
id: "1", title: "Plumbing Services", description: "From leak repairs to complete pipe installations, our licensed plumbers handle all your plumbing needs with precision and care. We diagnose problems quickly and provide lasting solutions.", media: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg?_wi=3"},
|
imageSrc: "https://images.unsplash.com/photo-1585479542326-5ac408f4ae4f?w=600&h=400&fit=crop&_wi=2"
|
||||||
|
},
|
||||||
items: [
|
items: [
|
||||||
{ icon: Droplets, text: "Leak Repairs" },
|
{ icon: Droplets, text: "Leak Repairs" },
|
||||||
{ icon: Wrench, text: "Pipe Installation" },
|
{ icon: Wrench, text: "Pipe Installation" },
|
||||||
@@ -59,7 +61,8 @@ export default function ServicesPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "Hot Water Tank Services", description: "Professional installation, replacement, and repair of hot water tanks and tankless systems. We help you choose the right system for your home and budget.", media: {
|
id: "2", title: "Hot Water Tank Services", description: "Professional installation, replacement, and repair of hot water tanks and tankless systems. We help you choose the right system for your home and budget.", media: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/service-man-adjusting-house-heating-system_1303-26529.jpg?_wi=2"},
|
imageSrc: "https://images.unsplash.com/photo-1621905251538-48416bd8575a?w=600&h=400&fit=crop&_wi=2"
|
||||||
|
},
|
||||||
items: [
|
items: [
|
||||||
{ icon: Zap, text: "Installation" },
|
{ icon: Zap, text: "Installation" },
|
||||||
{ icon: RefreshCw, text: "Replacement" },
|
{ icon: RefreshCw, text: "Replacement" },
|
||||||
@@ -70,7 +73,8 @@ export default function ServicesPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", title: "Heating Services", description: "Keep your home warm all winter with our expert furnace and boiler installation, repair, and maintenance services. Emergency heating repairs available 24/7.", media: {
|
id: "3", title: "Heating Services", description: "Keep your home warm all winter with our expert furnace and boiler installation, repair, and maintenance services. Emergency heating repairs available 24/7.", media: {
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-nurse-giving-scan-patient_23-2149341551.jpg?_wi=2"},
|
imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=600&h=400&fit=crop&_wi=2"
|
||||||
|
},
|
||||||
items: [
|
items: [
|
||||||
{ icon: Flame, text: "Furnace Installation" },
|
{ icon: Flame, text: "Furnace Installation" },
|
||||||
{ icon: Wrench, text: "Boiler Repair" },
|
{ icon: Wrench, text: "Boiler Repair" },
|
||||||
@@ -104,7 +108,7 @@ export default function ServicesPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterMedia
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/weathered-rusty-refrigeration-rack-factory_181624-56923.jpg?_wi=2"
|
imageSrc="https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=400&fit=crop&_wi=2"
|
||||||
imageAlt="Plumbing and heating services"
|
imageAlt="Plumbing and heating services"
|
||||||
logoText="Westernish Plumbing & Heating"
|
logoText="Westernish Plumbing & Heating"
|
||||||
columns={[
|
columns={[
|
||||||
@@ -139,4 +143,4 @@ export default function ServicesPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user