export default { async fetch() { const html = ` Scarface !!

SCARFACE !!

Computer engineering student
contect: mail@scarface.dev

24+

Projects

4

Bots

162+

Users

`; return new Response(html, { headers: { "content-type": "text/html; charset=UTF-8", "cache-control": "public, max-age=3600" } }); } }