-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
283 lines (251 loc) · 8.58 KB
/
index.html
File metadata and controls
283 lines (251 loc) · 8.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="color-scheme" content="dark light" />
<title>Jason — neurodiversity-friendly apps</title>
<meta name="description" content="Hi, I'm Jason. I'm experimenting with vibe coding to build neurodiversity-friendly apps across platforms." />
<style>
:root{
--bg: #0b1020;
--text: rgba(255,255,255,.92);
--muted: rgba(255,255,255,.72);
--border: rgba(255,255,255,.14);
--panel: rgba(255,255,255,.06);
--panel2: rgba(255,255,255,.09);
--shadow: 0 18px 70px rgba(0,0,0,.45);
--accentA: #6ee7ff;
--accentB: #a78bfa;
--accentC: #34d399;
--accentD: #f59e0b;
--radius: 18px;
--max: 980px;
--mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
[data-theme="light"]{
--bg: #f7f7fb;
--text: rgba(0,0,0,.88);
--muted: rgba(0,0,0,.66);
--border: rgba(0,0,0,.12);
--panel: rgba(0,0,0,.04);
--panel2: rgba(0,0,0,.06);
--shadow: 0 18px 70px rgba(0,0,0,.12);
}
*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
margin:0;
font-family: var(--sans);
color: var(--text);
background:
radial-gradient(1100px 650px at 15% -10%, rgba(110,231,255,.22), transparent 60%),
radial-gradient(950px 600px at 95% 0%, rgba(167,139,250,.22), transparent 55%),
radial-gradient(900px 600px at 80% 100%, rgba(52,211,153,.16), transparent 55%),
linear-gradient(180deg, var(--bg), var(--bg));
overflow-x:hidden;
}
.wrap{
margin: 0 auto;
font-size: clamp(15px, 1.7vw, 17px);
line-height: 1.7;
color: var(--muted);
max-width: 70ch;
text-align: center;
}
.top{
display:flex;
align-items:center;
justify-content: space-between;
gap: 12px;
padding: 10px 12px;
border: 1px solid var(--border);
background: linear-gradient(180deg, var(--panel2), transparent);
border-radius: var(--radius);
backdrop-filter: blur(10px);
box-shadow: var(--shadow);
position: sticky;
top: 14px;
z-index: 10;
}
.mark{
width: 38px; height: 38px;
border-radius: 13px;
border: 1px solid var(--border);
background: conic-gradient(from 220deg, var(--accentA), var(--accentB), var(--accentC), var(--accentD), var(--accentA));
box-shadow: 0 12px 30px rgba(0,0,0,.20);
flex: 0 0 auto;
}
.title{
display:flex;
align-items:center;
gap: 10px;
min-width: 0;
}
.title .meta{ min-width:0; }
.title .meta .name{ font-weight: 750; font-size: 14px; margin:0; letter-spacing: .2px; }
.title .meta .sub{ font-size: 12px; margin-top:2px; color: var(--muted); }
.btn{
display:inline-flex;
align-items:center;
gap: 8px;
border: 1px solid var(--border);
background: linear-gradient(180deg, var(--panel), transparent);
padding: 9px 11px;
border-radius: 12px;
font-size: 13px;
font-weight: 650;
cursor: pointer;
color: var(--text);
user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn:focus-visible{ outline: 3px solid rgba(110,231,255,.35); outline-offset: 2px; }
main{
margin: 0 auto;
border: 1px solid var(--border);
background: linear-gradient(180deg, var(--panel), transparent);
border-radius: calc(var(--radius) + 6px);
box-shadow: var(--shadow);
padding: clamp(18px, 3vw, 28px);
text-align: center;
}
h1{
margin: 0 0 14px;
font-size: clamp(44px, 7vw, 76px);
line-height: 0.98;
letter-spacing: -1.1px;
font-weight: 900;
text-align: center;
}
p{
margin: 0;
font-size: clamp(15px, 1.7vw, 17px);
line-height: 1.7;
color: var(--muted);
max-width: 72ch;
}
.stack{
display: grid;
gap: 16px;
margin-top: 20px;
justify-items: center;
}
.card{
border: 1px solid var(--border);
background: linear-gradient(180deg, var(--panel2), transparent);
border-radius: var(--radius);
padding: 14px 14px;
}
.card h2{
margin: 0 0 8px;
font-size: 14px;
letter-spacing: .2px;
font-weight: 800;
text-transform: uppercase;
color: var(--text);
opacity: .92;
}
ul{ margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
li{ margin: 6px 0; }
.mono{ font-family: var(--mono); }
.platforms{
display:flex;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
align-items:center;
color: var(--muted);
}
.pill{
display:inline-flex;
align-items:center;
gap: 8px;
border: 1px solid var(--border);
background: linear-gradient(180deg, var(--panel), transparent);
padding: 8px 10px;
border-radius: 999px;
font-size: 13px;
}
.icon{ width: 18px; height: 18px; display:inline-block; }
.icon svg{ width: 100%; height: 100%; display:block; fill: currentColor; }
footer{
margin-top: 22px;
color: var(--muted);
font-size: 12px;
display:flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
align-items:center;
text-align: center;
}
.lead{ margin-top: 6px; }
.traits{ display: grid; gap: 10px; margin-top: 10px; }
.traits p{ margin: 0 auto; max-width: 60ch; }
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
.btn{ transition:none; }
}
</style>
</head>
<body>
<div class="wrap">
<main class="center">
<h1>Hi, I’m Jason.</h1>
<p class="lead">
I’m experimenting with vibe coding with the intent of creating
<strong>neurodiversity-friendly</strong> apps — minimal friction, clear intent, quick capture, gentle defaults,
and “less nagging, more helping.” (The apps. Not me.)
</p>
<section class="glass" aria-label="Traits">
<h2>Building solutions for:</h2>
<div class="traits">
<p><strong>Time Blindness</strong></p>
<p><strong>Task Initiation</strong></p>
<p><strong>Working Memory Overload</strong></p>
</div>
</section>
<section class="glass" aria-label="Platforms">
<h2>Multi-platform</h2>
<div class="platforms" aria-label="Apple, Windows, Android">
<span class="pill" title="Apple">
<span class="icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M16.8 13.7c0-2 1.6-3 1.7-3.1-1-.9-2.5-1-3-1-1.3-.1-2.5.8-3.1.8-.7 0-1.7-.8-2.8-.8-1.4 0-2.8.8-3.5 2.1-1.5 2.6-.4 6.4 1.1 8.5.7 1 1.5 2 2.6 2 .9 0 1.3-.6 2.4-.6 1.1 0 1.4.6 2.5.6 1.1 0 1.8-1 2.5-2 0 0 .9-1.3 1.2-2.6-3.2-1.2-3.6-4.8-3.6-4.9z"/>
<path d="M14.9 3.2c.5-.6.8-1.4.7-2.2-.8 0-1.7.5-2.2 1.1-.5.6-.9 1.4-.7 2.2.9.1 1.7-.4 2.2-1.1z"/>
</svg>
</span>
Apple
</span>
<span class="pill" title="Windows">
<span class="icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M3 5.2 10.2 4v7.3H3V5.2zm7.2 8.0V20L3 18.8v-5.6h7.2zm1.2-9.4L21 2v9.3h-9.6V3.8zm0 9.4H21V22l-9.6-1.8v-7z"/>
</svg>
</span>
Windows
</span>
<span class="pill" title="Android">
<span class="icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M7 10c0-2.5 2.2-4.5 5-4.5s5 2 5 4.5v6.5c0 .8-.7 1.5-1.5 1.5H8.5C7.7 18 7 17.3 7 16.5V10zm2.2-5.8L8.1 2.8c-.2-.2-.2-.6.1-.8.2-.2.6-.2.8.1l1.2 1.4c.5-.2 1.1-.3 1.9-.3s1.4.1 1.9.3l1.2-1.4c.2-.2.6-.3.8-.1.3.2.3.6.1.8l-1.1 1.4c1.2.8 2 2 2 3.4H7.2c0-1.4.8-2.6 2-3.4zM10 10.8a.7.7 0 1 0 0-1.4.7.7 0 0 0 0 1.4zm4 0a.7.7 0 1 0 0-1.4.7.7 0 0 0 0 1.4z"/>
<path d="M5.8 10.5h-.3c-.8 0-1.5.7-1.5 1.5v3c0 .8.7 1.5 1.5 1.5h.3v-6zM18.2 10.5h.3c.8 0 1.5.7 1.5 1.5v3c0 .8-.7 1.5-1.5 1.5h-.3v-6z"/>
</svg>
</span>
Android
</span>
</div>
</section>
<footer>
<div>© <span id="year"></span> Jason</div>
<div class="mono">Static • calm • GitHub Pages</div>
</footer>
</main>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>