2026-08-05 13:14:03 +00:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<title>Regress</title>
|
2026-08-05 14:14:38 +00:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
|
|
|
<link
|
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Share+Tech+Mono&display=swap"
|
|
|
|
|
rel="stylesheet"
|
|
|
|
|
/>
|
2026-08-05 13:14:03 +00:00
|
|
|
<!-- No-op outside an Archipelago iframe (see nostr-provider.js's own
|
|
|
|
|
window === window.top guard) — safe to always include. Provides
|
|
|
|
|
window.nostr + auto sign-in via the node's selected nostr identity
|
|
|
|
|
when opened inside the Archipelago shell. -->
|
|
|
|
|
<script src="/nostr-provider.js" data-session-url="/api/auth/login" data-session-mode="cookie" data-me-url="/api/auth/me" data-health-url="/api/health"></script>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="app"></div>
|
|
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|