export default { async fetch(request) { const html = ` Site Retired

Simply Smart Gardening has been retired

This website is no longer available.

`; return new Response(html, { status: 410, statusText: "Gone", headers: { "Content-Type": "text/html; charset=UTF-8", "Cache-Control": "no-store, max-age=0", "X-Robots-Tag": "noindex, nofollow" } }); } };