export default {
async fetch(request, env, ctx) {
// The clean, armored HTML structure is stored safely inside this string variables block
const html = `
AEON SYSTEM | SYSTEM GATEWAY
SYSTEMIC CONTINUITY FOR SOVEREIGN ASSETS.
The current grid is a liability. It relies on fragile paper futures and aging infrastructure. We build the Physical Hedge. The AEON System provides terminal reliability through solid-state engineering, ensuring your property remains an autonomous node.
`;
// This section returns the raw HTML text to the browser with the correct headers
return new Response(html, {
headers: {
'content-type': 'text/html;charset=UTF-8',
},
});
},
};