-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 3.75 KB
/
index.html
File metadata and controls
63 lines (63 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>StreamSuites Developer Console</title>
<meta name="description" content="Public feedback, beta intake, and authenticated developer tooling for StreamSuites at console.streamsuites.app." />
<link rel="icon" href="/assets/logos/favicon.ico" />
<link rel="stylesheet" href="/css/app.css" />
</head>
<body>
<header class="topbar">
<div class="shell topbar-inner">
<a class="brand" href="/">
<img src="/assets/logos/devxbluex.webp" alt="StreamSuites" />
<div class="brand-copy">
<span class="brand-mark">StreamSuites</span>
<span class="brand-sub">Developer Console</span>
</div>
</a>
<div class="standalone-actions">
<a class="header-link" href="/dashboard/">Open dashboard</a>
<span data-auth-slot></span>
</div>
</div>
</header>
<main class="shell page-shell">
<section class="hero">
<article class="hero-card">
<span class="eyebrow"><strong>console.streamsuites.app</strong> canonical surface</span>
<h1>Feedback, beta intake, and developer tooling without moving runtime authority.</h1>
<p class="muted">StreamSuites remains the single source of truth for auth, review queues, submissions, approvals, and future API key issuance. This repo is the Pages surface that exposes that authority cleanly.</p>
<div class="hero-actions">
<a class="solid-button" href="/feedback/">Open feedback hub</a>
<a class="ghost-button" href="/beta/apply/">Apply for beta</a>
<a class="ghost-button" href="/login/">Sign in</a>
</div>
</article>
<article class="hero-card">
<h2>Current foundation</h2>
<div class="summary-grid">
<div class="kpi"><span class="kpi-value">Public</span><span class="muted">Feedback intake, feature requests, beta orientation, and applications.</span></div>
<div class="kpi"><span class="kpi-value">Authenticated</span><span class="muted">A real dashboard shell for the developer console, reports hub, and keys workspace.</span></div>
<div class="kpi"><span class="kpi-value">Runtime-owned</span><span class="muted">Validation, storage, artifact metadata, and admin review remain in StreamSuites.</span></div>
</div>
</article>
</section>
<section class="main-stack">
<div class="route-grid">
<article class="route-card"><h3>Feedback hub</h3><p class="muted">Public intake for general product feedback and the approved request board.</p><a class="soft-button" href="/feedback/">Go to /feedback</a></article>
<article class="route-card"><h3>Beta program</h3><p class="muted">Public beta orientation and application routes remain outside the authenticated shell.</p><a class="soft-button" href="/beta/">Go to /beta</a></article>
<article class="route-card"><h3>Developer dashboard</h3><p class="muted">Authenticated home for account context, report launch paths, and console-native navigation.</p><a class="soft-button" href="/dashboard/">Go to /dashboard</a></article>
<article class="route-card"><h3>Reports</h3><p class="muted">The authenticated reports hub now separates public feedback intake from detailed developer reporting.</p><a class="soft-button" href="/reports/">Go to /reports</a></article>
</div>
</section>
</main>
<footer class="footer"><div class="shell footer-inner"><span>StreamSuites Developer Console</span><span>© <span data-year></span> Brainstream Media Group</span></div></footer>
<script type="module">
import { initStandalonePage } from "/js/auth.js";
await initStandalonePage({ navKey: "home" });
</script>
</body>
</html>