/** * Dashboard UI — self-contained HTML page for gstack's team engineering intelligence platform. * * Served by a Supabase edge function. All auth (PKCE), data fetching, and rendering * happen client-side. The server only injects supabaseUrl and anonKey into the template. */ export function getDashboardHTML(supabaseUrl: string, anonKey: string): string { return ` gstack Dashboard `; }