-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
410 lines (366 loc) · 12.1 KB
/
Copy pathabout.html
File metadata and controls
410 lines (366 loc) · 12.1 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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>About - Orbit</title>
<link rel="icon" href="assets/orbit-circle-logo.ico" />
<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=Space+Grotesk:wght@400;500;600;700&family=Spline+Sans:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<style>
:root {
color-scheme: light;
--bg: #0b0f1a;
--bg-alt: #0f1724;
--surface: rgba(255, 255, 255, 0.06);
--surface-strong: rgba(255, 255, 255, 0.12);
--border: rgba(255, 255, 255, 0.16);
--text: #f8fafc;
--muted: #b6c1d2;
--accent: #3de7c0;
--accent-2: #f6b34b;
--accent-3: #5ba3ff;
--shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
--radius-lg: 24px;
--radius-md: 16px;
--radius-sm: 12px;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
}
body::before,
body::after {
content: "";
position: fixed;
inset: 0;
pointer-events: none;
z-index: -2;
}
body::before {
background:
radial-gradient(circle at 12% 18%, rgba(61, 231, 192, 0.18), transparent 48%),
radial-gradient(circle at 88% 18%, rgba(91, 163, 255, 0.2), transparent 52%),
radial-gradient(circle at 20% 82%, rgba(246, 179, 75, 0.18), transparent 55%),
linear-gradient(180deg, #0b0f1a 0%, #0b111f 45%, #0d1628 100%);
}
body::after {
background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
background-size: 90px 90px;
opacity: 0.4;
z-index: -1;
}
a {
color: inherit;
text-decoration: none;
}
.page {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24px clamp(20px, 5vw, 64px);
}
.brand {
display: flex;
align-items: center;
gap: 12px;
font-weight: 700;
letter-spacing: 0.02em;
}
.brand-mark {
width: 44px;
height: 44px;
border-radius: 50%;
display: grid;
place-items: center;
background: var(--surface-strong);
border: 1px solid var(--border);
overflow: hidden;
}
.brand-logo {
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
display: block;
transform: scale(1.08);
transform-origin: center;
}
.nav-links {
display: flex;
align-items: center;
gap: 18px;
font-family: "Spline Sans", "Trebuchet MS", sans-serif;
font-weight: 500;
}
.nav-links a {
color: var(--muted);
}
.nav-links a:hover {
color: var(--text);
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
border-radius: 999px;
padding: 10px 18px;
border: 1px solid var(--border);
font-weight: 600;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button.primary {
background: linear-gradient(135deg, var(--accent), var(--accent-3));
color: #08121d;
border: none;
box-shadow: 0 16px 30px rgba(61, 231, 192, 0.25);
}
.button.ghost {
background: transparent;
color: var(--text);
}
.button:hover {
transform: translateY(-1px);
}
.hero {
padding: 20px clamp(20px, 5vw, 64px) 0;
display: grid;
gap: 12px;
}
.hero h1 {
font-size: clamp(2rem, 4vw, 3.2rem);
margin: 0;
}
.hero p {
color: var(--muted);
font-family: "Spline Sans", "Trebuchet MS", sans-serif;
max-width: 720px;
margin: 6px 0 0;
}
.section {
padding: 32px clamp(20px, 5vw, 64px);
display: grid;
gap: 18px;
}
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 22px;
box-shadow: var(--shadow);
display: grid;
gap: 12px;
}
.card h2 {
margin: 0;
}
.card p {
margin: 0;
color: var(--muted);
font-family: "Spline Sans", "Trebuchet MS", sans-serif;
}
.pill-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.pill {
padding: 6px 12px;
border-radius: 999px;
background: var(--surface-strong);
border: 1px solid var(--border);
font-size: 0.85rem;
color: var(--muted);
font-family: "Spline Sans", "Trebuchet MS", sans-serif;
}
.split {
display: grid;
gap: 16px;
}
.stack {
display: grid;
gap: 10px;
}
.project-card {
border-radius: var(--radius-md);
border: 1px solid var(--border);
padding: 16px;
background: rgba(12, 18, 31, 0.6);
}
.project-card h3 {
margin: 0 0 6px;
}
.project-card ul {
margin: 0;
padding-left: 18px;
color: var(--muted);
font-family: "Spline Sans", "Trebuchet MS", sans-serif;
}
.tagline-grid {
display: grid;
gap: 8px;
}
.tagline {
padding: 10px 14px;
border-radius: var(--radius-sm);
background: var(--surface-strong);
border: 1px solid var(--border);
font-family: "Spline Sans", "Trebuchet MS", sans-serif;
}
footer {
margin-top: auto;
padding: 32px clamp(20px, 5vw, 64px) 40px;
color: var(--muted);
font-size: 0.9rem;
}
@media (min-width: 960px) {
.split {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}
</style>
</head>
<body>
<div class="page">
<header class="nav">
<div class="brand">
<div class="brand-mark">
<img class="brand-logo" src="assets/orbit-circle-logo.png" alt="Orbit logo" />
</div>
<div>Orbit</div>
</div>
<div class="nav-links">
<a href="/landing">Home</a>
<a class="button ghost" href="/signin">Sign in</a>
</div>
</header>
<section class="hero">
<h1>About Vlad and Orbit</h1>
<p>Student builder, robotics programmer, and creator of Orbit for the Build4Students hackathon.</p>
</section>
<section class="section">
<div class="card">
<h2>About Me</h2>
<p>
I’m Vlad Petrosyan, a high-school student from Erie, Pennsylvania who builds robotics and software that solve
real student problems. I’m the head programmer on my FTC robotics team, and I love taking ideas from concept
to something people can actually use. That means writing reliable Java for competition robots, prototyping
tools in Python and C++/Arduino, and building web apps that feel clean and practical.
</p>
<p>
I’m especially interested in self-hosted systems and Raspberry Pi projects because they give students more
control over their data and their workflow. When I build a project, I focus on clarity, speed, and making it
easier for people to stay organized. Orbit is my latest example—an all-in-one student hub designed for real
school life, built and tested like a product, not a demo.
</p>
</div>
<div class="card">
<h2>Skills</h2>
<div class="split">
<div class="stack">
<strong>Robotics</strong>
<div class="pill-row">
<span class="pill">FTC Java control systems</span>
<span class="pill">Autonomous routines</span>
<span class="pill">Sensor integration</span>
<span class="pill">Match-day debugging</span>
</div>
</div>
<div class="stack">
<strong>Software</strong>
<div class="pill-row">
<span class="pill">Python tooling</span>
<span class="pill">C++ / Arduino</span>
<span class="pill">Web development</span>
<span class="pill">API design</span>
</div>
</div>
<div class="stack">
<strong>Systems / Tools</strong>
<div class="pill-row">
<span class="pill">Raspberry Pi</span>
<span class="pill">Self-hosting</span>
<span class="pill">Local data storage</span>
<span class="pill">Student-centered UX</span>
</div>
</div>
</div>
</div>
<div class="card">
<h2>Projects</h2>
<div class="stack">
<div class="project-card">
<h3>Orbit</h3>
<p>A self-hosted student hub that organizes schedules, study tools, assignments, and chats.</p>
<ul>
<li>Combines planning, studying, and messaging in one dashboard</li>
<li>Web app + server with local data storage</li>
<li>Learned how to design real workflows for students</li>
</ul>
</div>
<div class="project-card">
<h3>FTC Robotics Software</h3>
<p>Competition-ready robot code with clean teleop and autonomous control.</p>
<ul>
<li>Runs robot systems and automates match tasks</li>
<li>Java, FTC SDK, sensors</li>
<li>Learned reliability under competition pressure</li>
</ul>
</div>
<div class="project-card">
<h3>Raspberry Pi Automation</h3>
<p>Self-hosted automation for schedules, tasks, and device workflows.</p>
<ul>
<li>Automates routines and tracks device status</li>
<li>Python, Linux, Raspberry Pi</li>
<li>Learned practical self-hosting and maintenance</li>
</ul>
</div>
</div>
</div>
<div class="card">
<h2>About Orbit</h2>
<p>
Orbit is my Build4Students hackathon project, built to solve everyday student life problems in one place. It
runs on a server and opens in a browser, starting with a landing page that explains the idea and lets
students sign in. Once inside, students get a dashboard that ties together their schedule, study sets,
assignments, and chats without juggling multiple apps.
</p>
<p>
Orbit lets students add classes and a weekly schedule, then shows countdowns and details for each class. It
includes study tools like flashcards, tests, practice, and matching. Messaging is private and organized, with
separate class chats, direct messages, and group chats. Friend requests must be accepted before chatting.
Messages are saved on the server for up to 30 days, and can be encrypted if the user sets a key.
</p>
<p>
Because Orbit is server-based and self-hostable, students and schools can keep data private while still
getting a modern, connected workflow.
</p>
</div>
</section>
<footer>Built by Vlad Petrosyan for Build4Students.</footer>
</div>
</body>
</html>