-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (99 loc) · 3.45 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Gimbal Ghost</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png">
<link rel="manifest" href="/icons/site.webmanifest">
<link rel="mask-icon" href="/icons/safari-pinned-tab.svg" color="#000000">
<link rel="shortcut icon" href="/icons/favicon.ico">
<meta name="msapplication-TileColor" content="#2563eb">
<meta name="msapplication-config" content="/icons/browserconfig.xml">
<meta name="theme-color" content="#2563eb">
<meta property="og:url" content="https://gimbal-ghost.github.io" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Gimbal Ghost" />
<meta property="og:description" content="Render 3D Video of Transmitter Gimbals from Blackbox Logs" />
<meta property="og:image" content="https://gimbal-ghost.github.io/gimbal-ghost-og.png" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PLG3MG3ZWM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-PLG3MG3ZWM');
</script>
</head>
<body class="bg-slate-900 text-slate-200">
<div class="grid h-screen place-items-center">
<div class="flex flex-col items-center">
<img src="/gimbal-ghost.png" alt="Gimbal Ghost" class="object-contain h-40 mb-6">
<h1 class="text-center text-5xl font-bold mb-6 text-transparent bg-clip-text bg-gradient-to-b from-blue-500 to-blue-800">
Gimbal Ghost
</h1>
<h2 class="text-center text-xl font-semibold mb-3">
Render 3D video of transmitter gimbals from blackbox logs
</h2>
<h3 class="text-center text-slate-400 mb-6">
Think stick cam for your flight videos, but with a ghost moving the gimbals.
</h3>
<video class="mb-6" autoplay loop muted playsinline>
<source src="/example-render.webm" type="video/webm" />
<source src="/example-render.mov" type="video/mp4" codecs="hvc1" />
</video>
<a href="https://github.com/gimbal-ghost/gimbal-ghost/releases/latest/download/GimbalGhost.exe" class="mb-6" download>
<button
id="download"
class="
text-lg
font-bold
active:bg-slate-800
active:text-slate-100
rounded-full
hover:outline
outline-offset-4
p-4
disabled:cursor-not-allowed
disabled:opacity-50
outline-blue-600
bg-gradient-to-b
from-blue-500
to-blue-800
"
>
Download for Windows
</button>
</a>
<a href="https://github.com/gimbal-ghost/gimbal-ghost/releases/latest/download/GimbalGhost.AppImage" class="mb-6" download>
<button
id="download"
class="
text-lg
font-bold
active:bg-slate-800
active:text-slate-100
rounded-full
hover:outline
outline-offset-4
p-4
disabled:cursor-not-allowed
disabled:opacity-50
outline-blue-600
bg-gradient-to-b
from-blue-500
to-blue-800
"
>
Download for Linux
</button>
</a>
<a href="https://github.com/gimbal-ghost/gimbal-ghost" class="hover:underline">
Check it out on GitHub
</a>
</div>
</div>
<script type="module" src="./src/main.js"></script>
</body>
</html>