-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
185 lines (179 loc) · 8.21 KB
/
Copy pathindex.html
File metadata and controls
185 lines (179 loc) · 8.21 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Compass Ultra — Release Intelligence</title>
<meta name="description" content="Release intelligence for teams that ship behind feature flags. Policy gates, AI risk analysis, snapshot diff, and PDF release proof.">
<meta property="og:title" content="Compass Ultra">
<meta property="og:description" content="Review flag state, policy gates, and rollout risk before production changes go live.">
<meta property="og:url" content="https://www.compassultra.com">
<meta property="og:image" content="https://dacameragirl.github.io/Compass-Ultra/docs/frame1_hero.png">
<style>
:root {
--bg: #070b14;
--panel: #0e1117;
--ink: #e6edf3;
--muted: #8b949e;
--line: rgba(255, 255, 255, 0.1);
--brand: #58a6ff;
--green: #33d69f;
--amber: #ffb800;
--purple: #bc8cff;
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
font-family: "Segoe UI", system-ui, sans-serif;
background:
radial-gradient(circle at 12% 8%, rgba(88, 166, 255, 0.16), transparent 28%),
radial-gradient(circle at 88% 10%, rgba(51, 214, 159, 0.12), transparent 30%),
linear-gradient(160deg, #070b14, #0d1b33 55%, #070b14);
color: var(--ink);
}
main { width: min(1080px, calc(100vw - 32px)); margin: 0 auto; padding: 40px 0 64px; }
.banner { width: 100%; border-radius: 16px; border: 1px solid rgba(88, 166, 255, 0.2); display: block; }
.kicker { color: var(--green); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 0.14em; margin: 24px 0 10px; }
h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.05; margin: 0 0 14px; }
.lede { font-size: 19px; line-height: 1.6; color: #c9d4e3; max-width: 760px; margin: 0; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 8px; }
.badge {
border: 1px solid var(--line);
border-radius: 999px;
padding: 6px 12px;
font-size: 12px;
font-weight: 700;
background: rgba(255, 255, 255, 0.03);
}
.badge.live { border-color: rgba(11, 99, 206, 0.5); color: #9ec5ff; }
.badge.demo { border-color: rgba(51, 214, 159, 0.45); color: var(--green); }
.badge.ai { border-color: rgba(188, 140, 255, 0.45); color: var(--purple); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 36px; }
.btn {
border: 1px solid var(--line);
border-radius: 10px;
padding: 12px 18px;
color: var(--ink);
background: #161b22;
text-decoration: none;
font-weight: 800;
font-size: 14px;
transition: border-color 0.15s, transform 0.15s;
}
.btn:hover { border-color: rgba(88, 166, 255, 0.45); transform: translateY(-1px); }
.btn.primary { background: var(--green); color: #061713; border-color: transparent; }
.btn.secondary { background: rgba(88, 166, 255, 0.12); border-color: rgba(88, 166, 255, 0.35); color: #9ec5ff; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.card, .panel {
border: 1px solid var(--line);
border-radius: 12px;
background: rgba(14, 17, 23, 0.92);
padding: 20px;
}
.card h2, .panel h2 { margin: 0 0 10px; font-size: 17px; }
.card p, .panel p { color: var(--muted); line-height: 1.55; margin: 0; font-size: 14px; }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.shots img {
width: 100%;
border-radius: 10px;
border: 1px solid var(--line);
display: block;
background: #0a0f18;
}
.demo-gif { width: 100%; border-radius: 12px; border: 1px solid var(--line); margin-top: 14px; }
.flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 16px; }
.step {
border: 1px solid var(--line);
border-radius: 10px;
padding: 10px;
text-align: center;
font-size: 11px;
color: var(--muted);
background: #0a1020;
}
.step strong { display: block; color: var(--ink); font-size: 12px; margin-bottom: 4px; }
.meter {
height: 12px;
border-radius: 999px;
background: linear-gradient(90deg, var(--green) 0 45%, var(--amber) 45% 72%, #f85149 72%);
border: 1px solid var(--line);
margin-top: 14px;
}
footer { margin-top: 28px; color: #6e7681; font-size: 12px; line-height: 1.6; }
footer a { color: #9ec5ff; }
@media (max-width: 820px) {
.grid, .shots { grid-template-columns: 1fr; }
.flow { grid-template-columns: repeat(2, 1fr); }
.lede { font-size: 16px; }
}
</style>
</head>
<body>
<main>
<img class="banner" src="docs/readme-banner.svg" alt="Compass Ultra release intelligence platform">
<p class="kicker">Public showcase repo · production at compassultra.com</p>
<h1>Ship with proof, not guesswork.</h1>
<p class="lede">Compass Ultra is the release control room around feature flags — policy gates, AI risk analysis, snapshot diff, and PDF certificates before peak-traffic deploys.</p>
<div class="badges">
<span class="badge live">Live on Vercel</span>
<span class="badge demo">Sandbox demo · no login</span>
<span class="badge ai">AI risk + deterministic fallback</span>
<span class="badge">React · Vite · Auth0 · Stripe</span>
</div>
<div class="actions">
<a class="btn primary" href="https://www.compassultra.com">Open live app</a>
<a class="btn secondary" href="https://www.compassultra.com/app?demo=true">Try peak-sale demo</a>
<a class="btn" href="https://www.compassultra.com/ai-devops">AI DevOps checker</a>
<a class="btn" href="https://github.com/DaCameraGirl/Compass-Ultra">Showcase README</a>
<a class="btn" href="https://github.com/DaCameraGirl/Compass-Ultra-Pro">Production source</a>
</div>
<section class="grid">
<article class="card">
<h2>Policy gates</h2>
<p>Nine automated checks for canary limits, dependencies, approvers, overrides, and change-ticket traceability.</p>
</article>
<article class="card">
<h2>AI risk analysis</h2>
<p>Live AI release review with financial impact estimates and a local fallback when the service is unavailable.</p>
</article>
<article class="card">
<h2>Release proof</h2>
<p>Snapshot diff, PDF readiness certificates, and GitHub / Jira / Slack payloads from one workspace.</p>
</article>
</section>
<section class="panel">
<h2>Release review loop</h2>
<p>Load flags → evaluate context → run gates → analyze risk → diff snapshots → export certificate → notify DevOps.</p>
<div class="flow">
<div class="step"><strong>Import</strong>flags</div>
<div class="step"><strong>Context</strong>evaluate</div>
<div class="step"><strong>Gates</strong>policy</div>
<div class="step"><strong>AI</strong>risk</div>
<div class="step"><strong>Diff</strong>snapshots</div>
<div class="step"><strong>PDF</strong>proof</div>
</div>
<div class="meter" aria-hidden="true"></div>
</section>
<section class="panel" style="margin-top:16px">
<h2>Product screenshots</h2>
<p>Peek at the workspace, demo flow, and AI analysis panel. Full interactive demo runs on the live site.</p>
<div class="shots">
<img src="docs/frame1_hero.png" alt="Compass Ultra landing and hero">
<img src="docs/frame2_demo.png" alt="Peak sale demo workspace">
<img src="docs/frame3_ai.png" alt="AI risk analysis panel">
</div>
<img class="demo-gif" src="docs/demo.gif" alt="Animated demo of Compass Ultra release workflow">
</section>
<footer>
<p>
<strong>This repository</strong> is the public showcase (docs + GitHub Pages).
The production app is at <a href="https://www.compassultra.com">www.compassultra.com</a>
(<a href="https://github.com/DaCameraGirl/Compass-Ultra-Pro">Compass-Ultra-Pro</a>).
API and AI run on Railway via
<a href="https://github.com/DaCameraGirl/compass-ultra-backend">compass-ultra-backend</a>.
</p>
</footer>
</main>
</body>
</html>