// Coast Green Plumbing — shared site components // Babel-transpiled. Exposed on window for use across pages. const { useEffect, useRef, useState } = React; // ---------------- Lucide icon helper ---------------- function Icon({ name, size = 22, color, stroke = 1.75, style }) { const ref = useRef(null); useEffect(() => { if (window.lucide && ref.current) { ref.current.innerHTML = ''; const el = document.createElement('i'); el.setAttribute('data-lucide', name); ref.current.appendChild(el); window.lucide.createIcons({ icons: window.lucide.icons, attrs: { width: size, height: size, 'stroke-width': stroke } }); const svg = ref.current.querySelector('svg'); if (svg) { svg.setAttribute('width', size); svg.setAttribute('height', size); svg.style.stroke = color || 'currentColor'; svg.style.strokeWidth = stroke; } } }, [name, size, color, stroke]); return ; } // ---------------- Brand mark ---------------- function BrandMark({ size = 28, onDark = false }) { const stroke = onDark ? '#FFFFFF' : '#4A7C59'; return ( ); } // ---------------- Nav (with mobile slide-over) ---------------- function Nav({ current }) { const [open, setOpen] = useState(false); const links = [ { id: 'services', label: 'Services', href: 'services.html' }, { id: 'tankless', label: 'Tankless', href: 'tankless.html' }, { id: 'about', label: 'About', href: 'about.html' }, { id: 'book', label: 'Book', href: 'about.html#book' }, ]; return (
Coast Green PLUMBING
604 · 555 · 0100 Book a free quote
setOpen(false)} />
604 · 555 · 0100 {links.map(l => ( {l.label} ))} Book a free quote
); } // ---------------- Footer ---------------- function Footer() { return (
Coast Green Plumbing

North Vancouver-based plumbing crew. Tankless installs and full-service work across the North Shore, Vancouver, and Burnaby. Fully licensed and insured.

Service area

  • North Vancouver
  • West Vancouver
  • Vancouver
  • Burnaby
  • Lower Mainland (call to confirm)

Contact

  • 604 · 555 · 0100
  • hello@coastgreen.ca
  • North Vancouver, BC
  • Mon–Fri 7am–6pm
    Sat 8am–4pm
SampleBC Plumber Cert #LP-44128 · WCB Covered · $5M Liability © 2026 Coast Green Plumbing Ltd. — Concept site for IshaanEx Digital portfolio.
); } // ---------------- Final CTA ---------------- function FinalCTA() { return (
Free in-home quote

Get a quote before we touch the wall.

Tell us what's going on. We'll come look, write it up, and email it within 48 hours. No obligation.

); } // ---------------- Reveal on scroll ---------------- function useReveal() { useEffect(() => { const els = document.querySelectorAll('.cg-reveal'); const io = new IntersectionObserver((entries) => { entries.forEach((e, i) => { if (e.isIntersecting) { setTimeout(() => e.target.classList.add('is-in'), (parseInt(e.target.dataset.delay || '0', 10))); io.unobserve(e.target); } }); }, { threshold: 0.12 }); els.forEach(el => io.observe(el)); return () => io.disconnect(); }, []); } Object.assign(window, { Icon, BrandMark, Nav, Footer, FinalCTA, useReveal });