-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
293 lines (277 loc) · 18.4 KB
/
Copy pathindex.html
File metadata and controls
293 lines (277 loc) · 18.4 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Orb — the AI assistant that talks first</title>
<meta name="description" content="A proactive AI assistant that reaches out before you ask. No account, no developer cloud — it runs on hardware you own.">
<meta property="og:title" content="Orb — the AI assistant that talks first">
<meta property="og:description" content="It briefs you, catches what you'd miss, and does real work on your own computer. Yours, actually.">
<meta property="og:image" content="https://orb.nathanlangley.dev/og.png">
<meta property="og:url" content="https://orb.nathanlangley.dev/">
<meta name="twitter:card" content="summary_large_image">
<link rel="icon" type="image/png" href="icon.png">
<meta name="theme-color" content="#000000">
<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=Montserrat:wght@800;900&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg: #000; --panel: #0b0e16; --card: #10141f;
--line: rgba(255,255,255,.10); --line2: rgba(255,255,255,.2);
--ink: #fff; --dim: #aab4c6; --faint: #6b7688;
--cy: #4cc9f0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: "Inter", -apple-system, sans-serif;
-webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.caps { font-family: "Montserrat", "Inter", sans-serif; font-weight: 900;
text-transform: uppercase; letter-spacing: .015em; }
/* reveal */
.r { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.r.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .r { opacity: 1; transform: none; transition: none; } }
/* ── nav ── */
header { position: absolute; top: 0; left: 0; right: 0; z-index: 40; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.navlinks { display: flex; gap: 30px; font-size: 14.5px; font-weight: 600; color: #d6dce8; }
.navlinks a:hover { color: #fff; }
.navbtn { padding: 11px 24px; border-radius: 999px; font-weight: 700; font-size: 14.5px;
background: #fff; color: #000; }
@media (max-width: 860px) { .navlinks { display: none; } }
/* ── hero (full-bleed key art, like the game page) ── */
.hero {
position: relative; min-height: min(100svh, 920px);
display: flex; flex-direction: column; align-items: center; justify-content: center;
text-align: center; padding: 120px 20px 80px; overflow: hidden;
}
.hero .art {
position: absolute; inset: 0; z-index: 0;
background: url("og.png") center 38% / cover no-repeat;
transform: scale(1.12);
}
.hero .shade { position: absolute; inset: 0; z-index: 1;
background:
radial-gradient(1100px 640px at 50% 34%, rgba(76,201,240,.14), transparent 62%),
radial-gradient(760px 460px at 50% 56%, rgba(0,0,0,.52), transparent 72%),
linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.16) 34%, rgba(0,0,0,.45) 68%, #000 98%); }
.hero > .inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.applogo { width: clamp(96px, 12vw, 132px); height: auto; border-radius: 26px;
box-shadow: 0 24px 70px rgba(0,0,0,.7), 0 0 90px rgba(76,201,240,.4);
border: 1px solid rgba(255,255,255,.18); margin-bottom: 30px; }
h1 { font-size: clamp(34px, 5.6vw, 64px); line-height: 1.04; max-width: 17ch;
text-shadow: 0 3px 14px rgba(0,0,0,.95), 0 10px 60px rgba(0,0,0,.8); }
.hero h1 .cy { color: var(--cy);
text-shadow: 0 3px 14px rgba(0,0,0,.95), 0 0 40px rgba(76,201,240,.55); }
.badges { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; justify-content: center; }
.badge {
display: inline-flex; align-items: center; gap: 11px;
background: #000; border: 1.5px solid #a6a6a6; border-radius: 12px;
padding: 10px 20px 10px 16px; min-height: 58px; transition: .2s;
}
.badge:hover { border-color: #fff; transform: translateY(-2px); }
.badge svg { width: 26px; height: 26px; fill: #fff; flex: 0 0 auto; }
.badge .tx { text-align: left; line-height: 1.12; }
.badge .s { display: block; font-size: 10.5px; color: #d2d2d2; letter-spacing: .02em; }
.badge .l { display: block; font-size: 17.5px; font-weight: 600; letter-spacing: .01em; }
.heronote { margin-top: 20px; font-size: 13px; color: #b8c1d2; font-weight: 500; }
.scrollcue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
z-index: 2; color: #cfd6e4; font-size: 22px; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translate(-50%, 8px); } }
/* ── section scaffolding ── */
section { padding: clamp(70px, 10vh, 110px) 0; background: #000; position: relative; }
.shead { text-align: center; margin-bottom: 14px; }
h2 { font-size: clamp(26px, 3.6vw, 42px); }
.slead { margin: 16px auto 0; text-align: center; color: var(--dim); font-size: 16px;
line-height: 1.75; max-width: 58ch; }
/* ── news cards (2-up, thumb top) ── */
.news { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
@media (max-width: 760px) { .news { grid-template-columns: 1fr; } }
.ncard { background: var(--card); border: 1px solid var(--line); border-radius: 22px;
overflow: hidden; transition: transform .3s, border-color .3s; }
.ncard:hover { transform: translateY(-6px) scale(1.01); border-color: var(--line2); }
.ncard img { width: 100%; height: clamp(200px, 30vw, 280px); object-fit: cover; }
.ncard .body { padding: 22px 24px 26px; }
.ncard .k { font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--cy);
text-transform: uppercase; margin-bottom: 10px; }
.ncard h3 { font-size: 20px; font-weight: 800; line-height: 1.3; }
.ncard p { margin-top: 9px; color: var(--dim); font-size: 14.5px; line-height: 1.65; }
.ncard .go { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--cy); }
.morelink { display: block; text-align: center; margin-top: 30px; font-weight: 700;
font-size: 15px; color: var(--cy); }
/* ── see the latest (links + email) ── */
.latest { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.socials { display: flex; gap: 18px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.soc { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center;
justify-content: center; background: #161b28; border: 1px solid var(--line);
transition: transform .25s, border-color .25s; }
.soc:hover { transform: translateY(-4px); border-color: var(--cy); }
.soc svg { width: 26px; height: 26px; fill: #e8edf6; }
.notify { display: flex; gap: 10px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.notify input[type=email] { width: min(76vw, 320px); padding: 15px 20px; border-radius: 999px;
background: #0d1120; border: 1.5px solid var(--line2); color: var(--ink);
font-size: 15px; font-family: inherit; outline: none; }
.notify input[type=email]:focus { border-color: var(--cy); }
.notify button { padding: 15px 30px; border-radius: 999px; border: 0; cursor: pointer;
background: #fff; color: #000; font-weight: 800; font-size: 15px; font-family: inherit; }
.notify button:hover { background: var(--cy); }
.joined { display: none; margin-top: 20px; text-align: center; color: var(--cy); font-weight: 700; }
/* ── open-source CTA (career-block pattern) ── */
.build { position: relative; overflow: hidden; border-radius: 28px;
background: linear-gradient(100deg, #0c1120, #090c15);
border: 1px solid var(--line); padding: clamp(36px, 6vw, 64px);
display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.build::after { content: ""; position: absolute; top: -40%; right: -12%;
width: 560px; height: 560px; pointer-events: none;
background: radial-gradient(circle, rgba(76,201,240,.14), transparent 62%); }
.build > * { position: relative; z-index: 1; }
.build h2 { max-width: 16ch; text-align: left; }
.build p { margin-top: 14px; color: var(--dim); font-size: 15.5px; line-height: 1.75; max-width: 46ch; }
.build .bbtn { margin-top: 26px; display: inline-block; padding: 16px 34px; border-radius: 999px;
background: #fff; color: #000; font-weight: 800; font-size: 15.5px; }
.build .bbtn:hover { background: var(--cy); }
/* ── footer ── */
footer { background: #05070d; border-top: 1px solid var(--line); padding: 60px 0 48px; text-align: center; }
footer .brand { justify-content: center; margin-bottom: 22px; display: flex; }
.fbadges { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.flinks { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap;
font-size: 14px; font-weight: 600; color: var(--dim); margin-bottom: 26px; }
.flinks a:hover { color: #fff; }
.legal { color: var(--faint); font-size: 13px; line-height: 1.8; }
::selection { background: rgba(76,201,240,.35); }
</style>
</head>
<body>
<header>
<div class="wrap nav">
<a class="brand" href="/"><img src="icon.png" alt="">Orb</a>
<nav class="navlinks">
<a href="#news">News</a>
<a href="https://nathanlangley.dev/Orb-Wiki/self-hosting.html">Self-host</a>
<a href="https://nathanlangley.dev/Orb-Wiki/">Docs</a>
<a href="https://github.com/getorb/Orb-Backend">GitHub</a>
</nav>
<a class="navbtn" href="https://apps.apple.com/us/app/orb-ai/id6776376035">Download</a>
</div>
</header>
<div class="hero">
<div class="art" aria-hidden="true"></div>
<div class="shade" aria-hidden="true"></div>
<div class="inner">
<img class="applogo" src="icon.png" alt="Orb app icon">
<h1 class="caps">The AI assistant that <span class="cy">talks first!</span></h1>
<div class="badges">
<a class="badge" href="https://apps.apple.com/us/app/orb-ai/id6776376035" aria-label="Download on the App Store">
<svg viewBox="0 0 24 24"><path d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.56-1.702"/></svg>
<span class="tx"><span class="s">Download on the</span><span class="l">App Store</span></span>
</a>
<a class="badge" href="https://github.com/getorb/Orb-Backend" aria-label="Self-host from GitHub">
<svg viewBox="0 0 24 24"><path d="M12 .5C5.65.5.5 5.65.5 12c0 5.08 3.29 9.39 7.86 10.91.58.11.79-.25.79-.55v-2.17c-3.2.7-3.87-1.36-3.87-1.36-.52-1.33-1.28-1.68-1.28-1.68-1.04-.71.08-.7.08-.7 1.15.08 1.76 1.19 1.76 1.19 1.03 1.75 2.69 1.25 3.35.95.1-.74.4-1.25.72-1.54-2.55-.29-5.24-1.28-5.24-5.68 0-1.26.45-2.28 1.19-3.09-.12-.29-.52-1.46.11-3.05 0 0 .97-.31 3.18 1.18a11.1 11.1 0 0 1 5.79 0c2.2-1.49 3.17-1.18 3.17-1.18.63 1.59.24 2.76.12 3.05.74.81 1.18 1.83 1.18 3.09 0 4.41-2.69 5.38-5.25 5.66.41.35.77 1.04.77 2.1v3.11c0 .3.21.66.8.55A11.51 11.51 0 0 0 23.5 12C23.5 5.65 18.35.5 12 .5z"/></svg>
<span class="tx"><span class="s">Self-host free on</span><span class="l">GitHub</span></span>
</a>
</div>
<div class="heronote">Free · iPhone · Open-source server (MIT)</div>
</div>
<div class="scrollcue" aria-hidden="true">▾</div>
</div>
<section id="news">
<div class="wrap">
<div class="shead r"><h2 class="caps">Orb News</h2></div>
<p class="slead r">Orb is an iPhone assistant that messages you first — your schedule, the email you missed, the deadline tonight. Connect your PC and it'll do real work for you and report back.</p>
<div class="news">
<a class="ncard r" href="https://apps.apple.com/us/app/orb-ai/id6776376035">
<img src="shots/news_live.webp" alt="Orb key art" loading="lazy" width="720" height="378">
<div class="body">
<div class="k">July 2026</div>
<h3>Orb 1.0 is live on the App Store</h3>
<p>The assistant that talks first is out — free, no account, works on-device the second you install it.</p>
<span class="go">Get it →</span>
</div>
</a>
<a class="ncard r" href="https://nathanlangley.dev/Orb-Wiki/self-hosting.html">
<img src="shots/news_selfhost.webp" alt="Live agent sessions streaming from a self-hosted Orb server" loading="lazy" width="720" height="378">
<div class="body">
<div class="k">Self-host</div>
<h3>Run your own server in ~15 minutes</h3>
<p>One copy-paste setup gives Orb hands and memory on a computer you own. Open source, MIT.</p>
<span class="go">The walkthrough →</span>
</div>
</a>
</div>
<a class="morelink r" href="https://nathanlangley.dev/Orb-Wiki/">Orb documentation →</a>
</div>
</section>
<section class="latest">
<div class="wrap">
<div class="shead r"><h2 class="caps">See the latest</h2></div>
<p class="slead r">The code, the docs, and the occasional update as Orb grows — pick your channel.</p>
<div class="socials r">
<a class="soc" href="https://github.com/getorb/Orb-Backend" aria-label="GitHub">
<svg viewBox="0 0 24 24"><path d="M12 .5C5.65.5.5 5.65.5 12c0 5.08 3.29 9.39 7.86 10.91.58.11.79-.25.79-.55v-2.17c-3.2.7-3.87-1.36-3.87-1.36-.52-1.33-1.28-1.68-1.28-1.68-1.04-.71.08-.7.08-.7 1.15.08 1.76 1.19 1.76 1.19 1.03 1.75 2.69 1.25 3.35.95.1-.74.4-1.25.72-1.54-2.55-.29-5.24-1.28-5.24-5.68 0-1.26.45-2.28 1.19-3.09-.12-.29-.52-1.46.11-3.05 0 0 .97-.31 3.18 1.18a11.1 11.1 0 0 1 5.79 0c2.2-1.49 3.17-1.18 3.17-1.18.63 1.59.24 2.76.12 3.05.74.81 1.18 1.83 1.18 3.09 0 4.41-2.69 5.38-5.25 5.66.41.35.77 1.04.77 2.1v3.11c0 .3.21.66.8.55A11.51 11.51 0 0 0 23.5 12C23.5 5.65 18.35.5 12 .5z"/></svg>
</a>
<a class="soc" href="https://nathanlangley.dev/Orb-Wiki/" aria-label="Documentation">
<svg viewBox="0 0 24 24"><path d="M4 3h9a4 4 0 0 1 4 4v14l-.6-.5A5 5 0 0 0 13.2 19H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm16 2.5V19a3 3 0 0 1 1 .8V6a3 3 0 0 0-1-.5zM6 7h7v1.6H6V7zm0 4h7v1.6H6V11z"/></svg>
</a>
<a class="soc" href="https://apps.apple.com/us/app/orb-ai/id6776376035" aria-label="App Store">
<svg viewBox="0 0 24 24"><path d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.56-1.702"/></svg>
</a>
</div>
<form class="notify r" action="https://formsubmit.co/nlangley1868@gmail.com" method="POST">
<input type="hidden" name="_subject" value="Orb release list signup">
<input type="hidden" name="_captcha" value="false">
<input type="hidden" name="_next" value="https://orb.nathanlangley.dev/?joined=1">
<input type="email" name="email" required placeholder="you@example.com" aria-label="Email address">
<button type="submit">Get updates</button>
</form>
<div class="joined" id="joined">You're on the list. Talk soon.</div>
</div>
</section>
<section>
<div class="wrap">
<div class="build r">
<h2 class="caps">The brain is open source</h2>
<p>The entire server — voice loop, agent, proactive engine, the mind — is MIT-licensed and yours to read, run, and change. Bring your own keys. Keep your own data.</p>
<a class="bbtn" href="https://github.com/getorb/Orb-Backend">View on GitHub</a>
</div>
</div>
</section>
<footer>
<div class="wrap">
<a class="brand" href="/"><img src="icon.png" alt="">Orb</a>
<div class="fbadges">
<a class="badge" href="https://apps.apple.com/us/app/orb-ai/id6776376035" aria-label="Download on the App Store">
<svg viewBox="0 0 24 24"><path d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.56-1.702"/></svg>
<span class="tx"><span class="s">Download on the</span><span class="l">App Store</span></span>
</a>
</div>
<div class="flinks">
<a href="https://apps.apple.com/us/app/orb-ai/id6776376035">App Store</a>
<a href="https://nathanlangley.dev/Orb-Wiki/self-hosting.html">Self-host</a>
<a href="https://nathanlangley.dev/Orb-Wiki/">Docs</a>
<a href="https://github.com/getorb/Orb-Backend">GitHub</a>
<a href="privacy.html">Privacy</a>
<a href="https://nathanlangley.dev/Orb-Wiki/">Support</a>
</div>
<div class="legal">© 2026 Nathan Langley<br>
Orb runs on your hardware. No account, no developer cloud, no telemetry.</div>
</div>
</footer>
<script>
const io = new IntersectionObserver(es => es.forEach(e => {
if (e.isIntersecting) { e.target.classList.add("on"); io.unobserve(e.target); }
}), { threshold: 0.12 });
document.querySelectorAll(".r").forEach(n => io.observe(n));
if (new URLSearchParams(location.search).has("joined")) {
document.getElementById("joined").style.display = "block";
document.querySelectorAll(".notify").forEach(f => f.style.display = "none");
document.querySelector(".latest").scrollIntoView();
}
</script>
</body>
</html>