/* Tidewell — full pages (catalog, detail, about, applications, contact) */ const { useState: useStateP, useEffect: useEffectP, useMemo: useMemoP } = React; /* ───────────────────────────────────────────── CATALOG PAGE — /products ───────────────────────────────────────────── */ function CatalogPage({ region }) { const [filter, setFilter] = useStateP("All"); const cats = ["All", ...Array.from(new Set(window.PRODUCTS.map(p => p.category)))]; const list = filter === "All" ? window.PRODUCTS : window.PRODUCTS.filter(p => p.category === filter); return (
Tidewell / Products

The full catalog.

Ten product lines, one ecosystem. Each Tidewell product is engineered to work together — common controller bus, common plumbing dimensions, common warranty desk. Filter by category to narrow in, or browse the whole range.

Products10 SKU families Catalog2026 Edition Region{window.REGION_DATA[region].label} Currency{window.REGION_DATA[region].currency}
Filter {cats.map(c => ( ))} Showing {list.length} of {window.PRODUCTS.length}
{list.map(p => ( ))}
); } /* ───────────────────────────────────────────── PRODUCT DETAIL — /products/:slug ───────────────────────────────────────────── */ function ProductDetailPage({ slug, region }) { const p = window.PRODUCTS.find(x => x.slug === slug); const [thumb, setThumb] = useStateP(0); if (!p) { return (

Not found.

That product slug doesn't exist. Back to catalog.

); } const r = window.REGION_DATA[region]; const related = window.PRODUCTS.filter(x => x.slug !== p.slug && (x.category === p.category || x.featured)).slice(0, 3); return (
Tidewell / Products / {p.category} / {p.name}
{p.name} {p.n} / 10 · {p.category}
Studio photography · {p.short}
{[0, 1, 2, 3].map(i => (
setThumb(i)} >
))}
{p.n} / 10 · {p.category}

{p.name}

{p.long || p.desc}

From {window.formatPrice(p.priceUSD, region)} {r.currency}
In stock · Ships in 5 days
{p.specs && (

Specifications

{p.specs.map(([k, v]) => (
{k}
{v}
))}
)} {p.bom && (

What's in the box

    {p.bom.map(b =>
  • {b}
  • )}
)}
Also in this ecosystem

Pair it with.

Tidewell products share a common controller bus and plumbing dimensions. These pair cleanly with {p.name}.

{related.map(rp => ( ))}
); } /* ───────────────────────────────────────────── APPLICATIONS — /applications ───────────────────────────────────────────── */ function ApplicationsPage() { const apps = [ ...window.APPLICATIONS, { name: "Lakeshore Spa Retreat", loc: "Niagara, ON", year: "2024", type: "Indoor 12 m Lap", equipment: "Heat Pump · Salt · Auto Cover" }, { name: "Bay Area Hillside", loc: "Mill Valley, CA", year: "2025", type: "Custom Infinity", equipment: "Solar · Lights · Robotic" }, { name: "Texas Hill Country", loc: "Austin, TX", year: "2024", type: "Freeform Gunite", equipment: "VS Pump · Salt · Robotic" } ]; return (
Tidewell / Applications

Pools we've shipped.

From Muskoka cottages to Scottsdale rooftops — a working portfolio of Tidewell installations across North America. Every project documents climate, scale, and the equipment loadout that fit it.

Installs42,180 lifetime ClimatesZone 1 — Zone 10 Pool typesGunite · Vinyl · Fiberglass
{apps.map((a, i) => (
{a.loc} Install photo

{a.name}

{a.year} {a.type}
{a.equipment}
))}
); } /* ───────────────────────────────────────────── ABOUT — /about ───────────────────────────────────────────── */ function AboutPage({ region }) { return (
Tidewell / About

Pool equipment,
quietly obsessive.

01 / The company

A factory and
a design studio.

Tidewell makes pool equipment for the homes of the North American continent. Founded in 2008 with a single product — a tracked automatic cover engineered for −30 °C winters — we now manufacture ten product lines across covers, heating, sanitation, filtration, lighting, and plumbing.

Our team works between two studios: industrial design and motor engineering in Toronto, performance testing and warranty support in Phoenix. Every SKU is designed, tested, and shipped from North America. We sell direct to dealers, and dealer-fitted to homeowners — never through anonymous marketplaces.

What you'll notice is the things you don't. The motor that whines is replaced before it ships. The fitting that loses 0.2 PSI to turbulence is redrawn. The cover that wrinkles at 8 °F gets a different fabric. The pool equipment you ignore is the equipment that's working.

Established
2008
Product lines
10
Pools shipped
42,180
Warranty
10yr
02 / How we build

Designed for the climate
you actually have.

Pool equipment built for Florida tends to fall apart in Calgary. Pool equipment built for Calgary tends to overheat in Phoenix. Tidewell builds for both — and the seven climate zones in between.

Every Tidewell SKU carries a climate envelope. Our heat pumps operate down to 40 °F, but freeze-protect down to −40 °F. Our solar collectors are UV-stable in Arizona and snow-load tested for Ontario. Our covers retract reliably at 8 °F.

And every wired product carries dual UL and CSA listings, so the same SKU passes inspection in either country.

03 / Service

One warranty desk.
Real people answer.

Tidewell publishes its warranty phone number on the back of every SKU label. Call it and a human answers within two rings, Monday through Saturday. We staff it from Phoenix for the US, Mississauga for Canada.

If something fails inside the warranty window, we ship a replacement before we ask any diagnostic questions. It is, statistically, almost never your fault.

); } /* ───────────────────────────────────────────── CONTACT — /contact ───────────────────────────────────────────── */ function ContactPage({ region, setRegion }) { const r = window.REGION_DATA[region]; const [sent, setSent] = useStateP(false); return (
Tidewell / Contact

Let's build something.

Tell us about your pool. We'll come back within one business day with a quote in {r.currency}, a recommended equipment loadout for your climate, and the nearest licensed Tidewell installer.

{r.flag} {r.label} office

Sales
{r.phone}
{r.phoneLabel} · 8 AM – 7 PM local
Warranty
warranty@tidewell.{region === "CA" ? "ca" : "com"}
One business day response, guaranteed
Address
{r.address}
Hours
Mon–Sat · 8 AM – 7 PM local

Wrong country?

Tidewell ships to both the United States and Canada. Switch regions to see prices in your currency and find your nearest hub.

{sent ? (
Thank you

Quote requested.

A Tidewell sales engineer will reach you within one business day. In the meantime, browse the catalog.

Browse catalog
) : (
{ e.preventDefault(); setSent(true); }}>