-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (77 loc) · 3.21 KB
/
index.html
File metadata and controls
80 lines (77 loc) · 3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Airframes Installers - Easy Decoder & Feeder Setup</title>
<meta name="description" content="Streamlined installation of flight, balloon, and ship tracking decoders & Airframes feeder clients. One-command setup for ACARS, VDL2, HFDL decoders.">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<header>
<a href="https://airframes.io" class="logo-link">
<img src="images/logotype-bw.svg" alt="Airframes" class="logo">
</a>
<h1 class="title">Installer Suite</h1>
<h2 class="tagline" id="glitch">DECODE THE SKIES</h2>
<p class="description">Streamlined installation scripts for aviation, maritime, and atmospheric tracking systems</p>
</header>
<main>
<div class="cards">
<div class="card flight">
<div class="card-icon">✈️</div>
<h3>Flight Tracking</h3>
<p>ACARS, VDL2, HFDL decoders</p>
<div class="card-status ready">Available Now</div>
</div>
<div class="card balloon">
<div class="card-icon">🎈</div>
<h3>Balloon Tracking</h3>
<p>High-altitude balloon telemetry</p>
<div class="card-status ready">Available Now</div>
</div>
<div class="card ship">
<div class="card-icon">🚢</div>
<h3>Ship Tracking</h3>
<p>AIS maritime decoders</p>
<div class="card-status ready">Available Now</div>
</div>
<div class="card satellite">
<div class="card-icon">🛰️</div>
<h3>Satellite Tracking</h3>
<p>LEO/GEO satellite telemetry</p>
<div class="card-status coming">Coming Soon</div>
</div>
<div class="card spacestation">
<div class="card-icon">🚀</div>
<h3>Space Station Tracking</h3>
<p>ISS and orbital platform data</p>
<div class="card-status coming">Coming Soon</div>
</div>
</div>
<div class="install-section">
<h3>Quick Start</h3>
<div class="code-block">
<code>curl -sSL https://install.airframes.sh/installer | bash</code>
<button class="copy-btn" onclick="navigator.clipboard.writeText('curl -sSL https://install.airframes.sh/installer | bash')">Copy</button>
</div>
<p class="install-note">Supports Linux, macOS, and Windows (WSL)</p>
</div>
</main>
<footer>
<nav class="footer-nav">
<a href="https://app.airframes.io">Home</a>
<a href="https://app.airframes.io/about">About</a>
<a href="https://discord.gg/airframes">Discord</a>
<a href="https://community.airframes.io">Community</a>
<a href="https://docs.airframes.io">Docs</a>
<a href="https://x.com/airframesio">X</a>
<a href="https://shop.airframes.io">Shop</a>
</nav>
</footer>
</div>
<div id="bg"></div>
</body>
</html>