// Coast Green Plumbing — Home page const { useEffect, useState, useRef } = React; function Hero() { return (
Tankless SpecialistsNorth Shore BC

Hot water that doesn't quit.
Plumbing that doesn't waste it.

Tankless water heater specialists. Full-service plumbing across the Lower Mainland. Fully licensed and insured.

Book a free quote See tankless pricing
Est. 2014 · North Vancouver Fully licensed & insured · WCB-covered
); } function Stats() { const stats = [ { icon: 'flame', figure: '30', unit: '%', label: 'Lower BC Hydro bill', note: 'Tracked savings on a Sample North Vancouver tankless install (Mar 2026).' }, { icon: 'droplet', figure: '∞', unit: '', label: 'Endless hot water on demand', note: "Two showers, dishwasher, laundry — no waiting, no tank to drain." }, { icon: 'gauge', figure: '60', unit: '%', label: 'Less wall space than a tank', note: 'Wall-mount unit frees up the utility room. Cleaner, quieter, smaller.' }, ]; return (
{stats.map((s, i) => (
{s.figure}{s.unit && {s.unit}}
{s.label}
{s.note}
))}
); } function ServicesStrip() { const items = [ { num: '01', icon: 'flame', title: 'Tankless install', body: 'Navien and Rinnai condensing units. Endless hot water, lower bills.' }, { num: '02', icon: 'droplet', title: 'Hot water tanks', body: 'Standard 40 to 75-gallon swaps. Same-day install on most jobs.' }, { num: '03', icon: 'wrench', title: 'Drain cleaning', body: 'Augered, jetted, scoped. We find the cause, not just the clog.' }, { num: '04', icon: 'gauge', title: 'Repipe', body: 'PEX-A whole-home repipes without taking the wall apart.' }, ]; return (
What we doFour core services

The work we do every week, done right the first time.

Tankless is our specialty. The rest of the list is the work our crew is genuinely good at — not a marketing dump of every plumbing service ever invented.

{items.map((it, i) => (
{it.num}
{it.title}
{it.body}
See details
))}
); } // Full-bleed photo band — North Shore context function NorthShoreBand() { return (
View from a North Shore home — snow-capped peaks and the Fraser valley
From the North ShoreBuilt for these houses

We work where the mountains meet the inlet.

Lynn Valley craftsmans. Edgemont split-levels. West Vancouver moderns. The crew has been under enough North Shore floors to know which neighbourhoods came with galvanized lines, where the rock comes up close to the foundation, and which strata need permits filed a week out.

See what we do
); } // "How we work" — tools photography + 4-step crew principles function HowWeWork() { const principles = [ { icon: 'clipboard-check', title: "We'll quote it before we touch it.", body: 'Written, line-itemed, sent within 48 hours. No surprise charges, no scope creep, no high-pressure upsell.' }, { icon: 'sparkles', title: 'We work clean.', body: 'Drop cloths, shoe covers, vacuum on the way out. The utility room is tidier than when we arrived.' }, { icon: 'shield-check', title: 'WCB-covered crew.', body: 'Fully licensed and insured. Same two or three faces every visit — not a rotating subcontractor cast.' }, { icon: 'wrench', title: 'Fixed right the first time.', body: 'Twelve-year workmanship warranty on installs. If we did it and it leaks, we come back and make it right.' }, ]; return (
Coast Green tool roll — pipe wrench, channel locks, copper cutter and notepad
In the van today 1/2" copper · 3 ft
P-trap · 1 1/2"
How we workFour ground rules

Quote it. Do it. Hand it back clean.

We're a small crew. There's no dispatcher, no upsell-driven sales rep, no rotating subcontractor cast. The same hands that quote your job are the ones that turn up Thursday morning and finish it.

    {principles.map((p, i) => (
  • {p.title}
    {p.body}
  • ))}
); } // Bathroom band — beyond tankless, the rest of the work function BathroomBand() { return (
Beyond tanklessFull-service plumbing

Bathrooms, kitchens, and the unglamorous bits.

Wall-mount vanities. Exposed-pipe ensuites. The instant-hot tap your kitchen reno called for. We rough-in for renovations and we install fixtures cleanly — soldered when it should be soldered, press-fit when that's the right call.

  • Bathroom rough-ins and fixture swaps
  • Kitchen sink, faucet, and dishwasher tie-ins
  • Pressure-balance shower valves
  • Exposed P-traps for wall-mount vanities
See full service list
Wall-mount oak vanity with exposed chrome P-trap — North Vancouver bathroom
Sample install · Edgemont · February 2026
); } function FeaturedProject() { return (
Finished Navien tankless install — North Vancouver Featured install
Sample project · concept site Lynn Valley · Tankless install

One day on site. 38% off the BC Hydro bill.

A 1990s craftsman in Lynn Valley. The 50-gallon tank was on its last legs and the homeowner was tired of running out of hot water on Sunday mornings. We swapped in a Navien NPE-240A2 condensing tankless, re-routed the gas line, and added a recirc loop on the master ensuite.

Quoted on a Tuesday. Installed on a Thursday. Walked through the controller before we left, and the utility room was cleaner than when we got there. Three months in, the homeowner's tracked savings of 38% on this Sample install.

Unit
NPE-240A2
Output
199,000 BTU
On site
1 day
); } function Trust() { const items = [ { icon: 'badge-check', label: 'BC Plumber Certificate', number: '#LP-44128' }, { icon: 'shield-check', label: 'WCB Covered', number: 'Account #5208-441' }, { icon: 'umbrella', label: '$5M Liability', number: 'Policy #BC-22481' }, { icon: 'wrench', label: '12-Year Warranty', number: 'Workmanship + parts' }, { icon: 'building-2', label: 'Mechanical Contractors Assoc.', number: 'Member #MCA-1129' }, ]; return (
{items.map((it, i) => (
{it.label}
Sample{it.number}
))}
); } function ServiceMap() { // Illustrated North Shore + Vancouver pin map const pins = [ { name: 'North Vancouver', x: 250, y: 90, primary: true }, { name: 'West Vancouver', x: 130, y: 100 }, { name: 'Lynn Valley', x: 295, y: 80 }, { name: 'Deep Cove', x: 380, y: 95 }, { name: 'Vancouver', x: 230, y: 230 }, { name: 'Burnaby', x: 380, y: 250 }, { name: 'Kitsilano', x: 165, y: 240 }, ]; return (
Where we workLower Mainland

North Shore-based. Greater Vancouver-served.

The van is parked at our shop in North Vancouver, not at a dispatcher two cities away. Same two or three faces every visit.

    {['North Vancouver', 'West Vancouver', 'Lynn Valley', 'Deep Cove', 'Vancouver', 'Burnaby', 'Kitsilano', 'Lions Bay (call to confirm)'].map((c, i) => (
  • {c}
  • ))}
{/* Water — Burrard Inlet + ocean */} {/* North Shore landmass */} {/* Mountains decorative */} {/* Vancouver landmass */} {/* Stanley park bump */} {/* Region label */} NORTH SHORE VANCOUVER BURNABY Burrard Inlet {/* Pins */} {pins.map((p, i) => ( {p.name}{p.primary ? ' · Shop' : ''} ))}
); } function Reviews() { const reviews = [ { stars: 5, body: "Quoted on Tuesday, installed Thursday morning, walked us through the unit before they left. The utility room is cleaner than when they arrived.", name: 'M. Yamamoto', meta: 'Lynn Valley · Tankless install · Mar 2026' }, { stars: 5, body: "Old tank failed at 6am. They were on the schedule for the next morning, gave us an honest read on tankless vs tank, and didn't push the upsell.", name: 'D. Chen', meta: 'Kitsilano · Hot water tank · Feb 2026' }, { stars: 5, body: "Repiped the upstairs bathroom without cutting more than two access holes. Patched, sanded, and painted. We barely knew they were here.", name: 'S. Thibodeau', meta: 'West Vancouver · Repipe · Jan 2026' }, ]; return (
From recent jobsConcept site

What North Shore homeowners have said.

Sample reviews — concept site, not real testimonials.
{reviews.map((r, i) => (
{Array.from({ length: r.stars }).map((_, j) => ( ))}
"{r.body}"
{r.name}
{r.meta}
Sample review · concept site
))}
); } function App() { useReveal(); return (