/* Down The Cove homepage — hero, trust, categories, product rails, club, ask-first */ const { Button, ProductCard, Badge } = window.DownTheCoveDesignSystem_3cc6fe; const SIcon = window.DtcIcon; function Hero({ variant, onShop, onHelp }) { const fathers = variant !== "evergreen"; if (fathers) { return (
A coastal Father's Day gift box wrapped with navy ribbon and a wax seal Father's Day · Sun 21 June
for the one who'd rather be by the water

Give the coast this Father's Day.

Hand-packed boxes of fishing kit, seafood tools and smoking hampers — sealed with a wax stamp, sent the length of the UK.

Free UK delivery over £30 · order by Thu 18 June
); } return (
A family crabbing on a Cornish harbour wall
Useful coastal things

Chosen with care, by the cove.

Fishing kit, seafood tools, smoking hampers and coastal gifts — chosen to last and sent the length of the UK.

Free UK delivery over £30 Order by Thu 18 June for Father's Day
); } function TrustMarquee({ items }) { const group = (k) => (
{items.map((it, i) => ( {it.t} ))}
); return (
{group(0)}{group(1)}
); } function Categories({ cats, onPick, onGifts }) { return (

Browse the shop

Find your corner of the coast

{cats.map((c) => ( ))}
); } function tile(p, cart, onQty, wish, onWish) { return ( onQty(p.id, n)} wishlisted={!!wish[p.id]} onToggleWishlist={() => onWish(p.id)} /> ); } function GiftEdit({ products, cart, onQty, wish, onWish, onShop }) { return (

The Father's Day gift edit

Sorted, sealed & ready to give

{ e.preventDefault(); onShop(); }}> All gifts
{products.map((p) => tile(p, cart, onQty, wish, onWish))}
); } function Bestsellers({ products, cart, onQty, wish, onWish, onShop }) { return (

From the cove

This week's favourites

{ e.preventDefault(); onShop(); }}> View all
{products.map((p) => tile(p, cart, onQty, wish, onWish))}
); } function CoveClub({ onJoin }) { return (
cove club

Subscription box

A little of the coast, posted monthly.

Hand-picked seasonal kit, a recipe card and a regional fishing guide — chosen by us, delivered to your door.

  • New coastal goods every month
  • Members save 10% in the shop
  • Skip, pause or cancel anytime
From £29per month, free delivery
); } function GiftFinder({ onPick }) { const buckets = [ { id: "under25", label: "Under £25", sub: "Little luxuries", icon: "gift" }, { id: "25to50", label: "£25–£50", sub: "Crowd-pleasers", icon: "anchor" }, { id: "over50", label: "£50+", sub: "The big one", icon: "star" }, ]; return (

Father's Day gift finder

Sorted in a tap — shop by budget

{buckets.map((b) => ( ))}
); } function BrandStory({ onShop }) { return (
A family crabbing together on a Cornish harbour wall
founded by the water

A family shop, packed in Cornwall.

We sell the coastal kit we actually use — chosen to last, fairly priced and sent the length of the UK. Useful things, no hard sell.

Free UK delivery
over £30
Easy 30-day
returns
Secure
checkout
); } Object.assign(window, { Hero, TrustMarquee, Categories, GiftEdit, Bestsellers, CoveClub, GiftFinder, BrandStory });