/** * Landing Page Service * Simple health check page for self-hosted worker */ /** * Create landing page response * @returns {Response} HTML response */ export function createLandingPageResponse() { const html = ` 9Router Worker

9Router Worker

Worker is running. Configure this URL in your 9Router dashboard.

`; return new Response(html, { status: 200, headers: { "Content-Type": "text/html; charset=utf-8", "Cache-Control": "public, max-age=3600" } }); }