export default {

  async fetch() {

    return new Response(

      `<!DOCTYPE html>

<html>

<head>

  <meta charset="utf-8">

  <meta name="viewport" content="width=device-width, initial-scale=1">

  <title>Ambr.</title>

</head>

<body style="margin:0;min-height:100vh;display:flex;align-items:center;justify-content:center;background:#111;color:#eee;font-family:system-ui;text-align:center">

  <div>

    <h1 style="letter-spacing:.25em;font-weight:600">AMBR</h1>

    <p>Raw honey gels. Coming soon.</p>

    <p>@ambrgels</p>

  </div>

</body>

</html>`,

      { headers: { "content-type": "text/html;charset=utf-8" } }

    );

  },

};