-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
456 lines (383 loc) · 11 KB
/
Copy pathindex.html
File metadata and controls
456 lines (383 loc) · 11 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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DCWP8H9LZ4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DCWP8H9LZ4');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ghost One</title>
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="apple-touch-icon" href="assets/favicon.png">
<style>
:root {
--bg: #0d0d0d;
--fg: #ffffff;
--accent: #00e0ff;
--card: #1a1a1a;
--radius: 14px;
--font: "Inter", sans-serif;
}
body {
margin: 0;
overflow-x: hidden;
font-family: var(--font);
background: var(--bg);
color: var(--fg);
line-height: 1.6;
}
/* NAV BAR */
nav {
width: 100%;
background: #111;
padding: 15px 0;
position: sticky;
top: 0;
z-index: 10;
border-bottom: 1px solid #222;
display: flex;
justify-content: center;
}
nav .nav-inner {
width: 100%;
max-width: 900px;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
padding: 0 20px;
justify-content: center;
transform: translateX(60px);
}
nav .logo {
font-size: 1.3rem;
font-weight: bold;
color: var(--accent);
justify-self: start;
margin-left: 185px;
text-decoration: none;
}
nav .links {
display: flex;
gap: 25px;
justify-self: center;
}
nav .links a {
color: var(--fg);
text-decoration: none;
font-size: 1rem;
opacity: 0.8;
}
nav .links a:hover {
opacity: 1;
}
header {
text-align: center;
padding: 80px 20px 60px;
max-width: 900px;
margin: auto;
}
header h1 {
font-size: 3rem;
margin-bottom: 10px;
}
header p {
font-size: 1.2rem;
opacity: 0.8;
}
.hero-img {
width: 480px;
height: auto;
border-radius: var(--radius);
margin: 40px auto;
display: block;
}
.hero-img.large {
width: 800px;
}
section {
max-width: 900px;
margin: 60px auto;
padding: 0 20px;
}
h2 {
font-size: 2rem;
margin-bottom: 20px;
color: var(--accent);
text-align: center;
}
.grid {
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
background: var(--card);
padding: 20px;
border-radius: var(--radius);
border: 1px solid #222;
transition: all 0.2s ease;
}
/* Feature card glow */
.card.feature {
box-shadow: 0 0 18px rgba(0, 224, 255, 0.14);
}
/* Hover pop for feature + spec cards */
.card.feature:hover,
.card.spec:hover {
transform: translateY(-4px);
box-shadow: 0 6px 26px rgba(0, 224, 255, 0.18);
}
/* Premium Tech Spec styling */
.card.spec {
border-top: 3px solid var(--accent);
padding-top: 18px;
}
.card.spec h3 {
margin-bottom: 6px;
}
.card.spec p {
font-family: "JetBrains Mono", monospace;
font-size: 0.95rem;
line-height: 1.45;
}
/* ⭐ Sponsor Section (logo left, centered text, smooth outline) */
.sponsor {
position: relative;
margin: 80px auto;
max-width: 900px;
border-radius: var(--radius);
overflow: hidden;
height: 260px;
background: url("assets/forge_bg.png") center/cover no-repeat;
box-shadow: 0 0 22px rgba(0, 224, 255, 0.12);
}
.sponsor-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.45);
display: flex;
align-items: center;
padding: 30px;
gap: 30px;
}
.sponsor-left {
flex: 0 0 auto;
}
.sponsor-logo {
width: 110px; /* smaller */
border-radius: 10px; /* smooth outline */
background: rgba(255, 255, 255, 0.08);
padding: 10px;
box-shadow: 0 0 12px rgba(0, 224, 255, 0.15);
}
.sponsor-right {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center; /* centers text vertically */
}
.sponsor-right h2 {
color: #fff;
font-size: 1.6rem;
margin: 0 0 10px 0;
font-weight: 600;
text-align: left;
}
.sponsor-link {
color: var(--accent);
font-size: 1.1rem;
text-decoration: none;
font-weight: bold;
opacity: 0.9;
}
.sponsor-link:hover {
opacity: 1;
}
/* TEAM SECTION */
.team-card {
text-align: center;
padding: 25px;
transition: transform 0.2s ease;
}
.team-card:hover {
transform: translateY(-4px);
}
.pfp-box {
width: 140px;
height: 140px;
border-radius: var(--radius);
overflow: hidden;
margin: 15px auto 20px;
border: 2px solid #333;
box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.pfp-box img {
width: 100%;
height: 100%;
object-fit: cover;
}
.role {
font-size: 0.95rem;
opacity: 0.7;
margin-top: -5px;
margin-bottom: 10px;
}
.github-link {
display: inline-block;
margin-top: 10px;
color: var(--accent);
text-decoration: none;
font-weight: bold;
font-size: 1rem;
}
.github-link:hover {
opacity: 0.8;
}
footer {
text-align: center;
padding: 40px;
opacity: 0.6;
font-size: 0.9rem;
}
</style>
</head>
<body>
<nav>
<div class="nav-inner">
<a href="index.html" class="logo">Ghost One</a>
<div class="links">
<a href="index.html">Home</a>
<a href="files.html">Files</a>
<a href="journal.html">Journal</a>
<a href="https://github.com/gethin101/gethin.app" target="_blank">GitHub</a>
</div>
<div></div>
</div>
</nav>
<header>
<h1>Ghost One</h1>
<p>A custom Flipper‑inspired multi‑tool device - built from scratch</p>
<p>Funded by Forge Hackclub</p>
<p><b>RENDER COMING SOON</b></p>
<!-- <img class="hero-img" src="assets/render_1.png" alt="Device Render"> -->
</header>
<section>
<h2>Features</h2>
<div class="grid">
<div class="card feature"><h3>Sensor Integration</h3><p>Built-in IR & Sub-gHz modules with WiFi & BLE capabilities</p></div>
<div class="card feature"><h3>Open-source Code</h3><p>Customisable and easy to use firmware in a single file</p></div>
<div class="card feature"><h3>Compact Design</h3><p>Optimized PCB & 3D printed case make it pocket-sized and compact</p></div>
<div class="card feature"><h3>HID Payloads</h3><p>Emulate rubber ducky payloads and HID scripts on devices via bluetooth</p></div>
<div class="card feature"><h3>Storage</h3><p>Supports micro SD cards for efficient file management</p></div>
<div class="card feature"><h3>Custom UI</h3><p>Simple, clean interface on an OLED display for easy navigation</p></div>
</div>
</section>
<section>
<p><b>ANOTHER RENDER COMING SOON</b></p>
<!-- <img class="hero-img large" src="assets/render_2.png" alt="Device Render 2"> -->
</section>
<section>
<h2>Tech Specs</h2>
<div class="grid">
<div class="card spec">
<h3>MCU</h3>
<p>ESP32-S3 N16R8<br>
Dual‑core Xtensa LX7 @ 240 MHz<br>
16 MB Flash + 8 MB PSRAM<br>
Wi‑Fi 2.4 GHz + Bluetooth LE 5.0<br>
USB C‑OTG support</p>
</div>
<div class="card spec">
<h3>Display</h3>
<p>0.96‑inch SSD1306 OLED<br>
128×64 Resolution<br>
White monochrome<br>
I²C interface</p>
</div>
<div class="card spec">
<h3>Power</h3>
<p>3.7 V LiPo battery<br>
TP4056 USB‑C LiPo charger<br>
DD0403MB 3.3 V LDO</p>
</div>
<div class="card spec">
<h3>Sub‑1 GHz RF</h3>
<p>CC1101 transceiver module<br>
SMA antenna - Type C3<br>
Supports 315 / 433 / 868 / 915 MHz bands</p>
</div>
<div class="card spec">
<h3>Infrared</h3>
<p>IR transmitter + receiver module<br>
(940 nm TX / 950 nm RX)<br>
Supports NEC, RC5/RC6, SIRC, Samsung, RCA</p>
</div>
<div class="card spec">
<h3>Storage</h3>
<p>SPI‑based microSD (TF) card reader<br>
Supports 16 GB microSDHC card</p>
</div>
<div class="card spec">
<h3>USB</h3>
<p>USB‑C via ESP32‑S3<br>
Supports USB‑OTG<br>
Charging handled by TP4056 module</p>
</div>
<div class="card spec">
<h3>Nav Controls</h3>
<p>5‑way navigation button<br>
3D‑printed 5‑way button cap<br>
6×6×5 mm tactile “back” button</p>
</div>
<div class="card spec">
<h3>Custom PCB</h3>
<p>Integrates breakout modules<br>
Routed for mixed‑signal domains<br>
Designed for clean internal layout</p>
</div>
</div>
</section>
<section class="sponsor">
<div class="sponsor-overlay">
<div class="sponsor-left">
<a href="https://forge.hackclub.com/projects/373" target="_blank">
<img src="assets/forge_logo.png" class="sponsor-logo" alt="Forge Logo">
</a>
</div>
<div class="sponsor-right">
<h2>Sponsored by Forge - Hack Club</h2>
<a class="sponsor-link" href="https://forge.hackclub.com/projects/373" target="_blank">View Project →</a>
</div>
</div>
</section>
<section>
<h2>Team</h2>
<div class="grid">
<div class="card team-card">
<h3>Gethin</h3>
<p class="role">Co-owner</p>
<div class="pfp-box">
<img src="assets/gethin_pfp.png" alt="Gethin PFP">
</div>
<a class="github-link" href="https://github.com/gethin101" target="_blank">Github →</a>
</div>
<div class="card team-card">
<h3>Evan</h3>
<p class="role">Co-owner</p>
<div class="pfp-box">
<img src="assets/evan_pfp.png" alt="Evan PFP">
</div>
<a class="github-link" href="https://github.com/Evan-121" target="_blank">Github →</a>
</div>
</div>
</section>
<footer>
© 2026 Ghost One — All rights reserved.
</footer>
</body>
</html>