export const handleHome = async (): Promise => { const html = await Bun.file(`${import.meta.dir}/../home.html`).text(); return new Response(html, { status: 200, headers: { 'content-type': 'text/html; charset=utf-8', }, }); };