/* 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 (
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.
}>
Shop Father's Day gifts
}>
Shop bestsellers
Free UK delivery over £30 · order by Thu 18 June
);
}
return (
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.
}>
Shop the cove
}>
Shop bestsellers
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 (
);
}
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 (
{products.map((p) => tile(p, cart, onQty, wish, onWish))}
);
}
function Bestsellers({ products, cart, onQty, wish, onWish, onShop }) {
return (
{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
}>
Join the Cove Club
);
}
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 (
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
}>
Shop the cove
);
}
Object.assign(window, { Hero, TrustMarquee, Categories, GiftEdit, Bestsellers, CoveClub, GiftFinder, BrandStory });