-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
41 lines (41 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<base href="/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SpaceX Launches</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>️👩🚀</text></svg>"></link>
<link rel="stylesheet" href="/src/style.css">
<link rel="preload" as="style" href="/src/links.css">
<link rel="preload" as="style" href="/src/skeleton.css">
<link rel="preconnect" href="https://api.spacex.land">
<script>
// @ts-expect-error: ugh
if (!window.process) window.process = { env: '' };
</script>
<script type="module" src="/src/main.ts"></script>
</head>
<body>
<header>
<h1>L<span>aunch</span>CTL</h1>
<a href="https://apolloelements.dev">
<img src="https://apolloelements.dev/logo.svg" aria-label="Apollo Elements"></a>
</a>
<a href="https://github.com/apollo-elements/launchctl">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 16" fill="none">
<title>GitHub</title>
<path fill="currentColor" fill-rule="evenodd" d="M8.18391.249268C3.82241.249268.253906 3.81777.253906 8.17927c0 3.46933 2.279874 6.44313 5.451874 7.53353.3965.0991.49563-.1983.49563-.3965v-1.3878c-2.18075.4956-2.67638-.9912-2.67638-.9912-.3965-.8922-.89212-1.1895-.89212-1.1895-.69388-.4957.09912-.4957.09912-.4957.793.0992 1.1895.793 1.1895.793.69388 1.2887 1.88338.8922 2.27988.6939.09912-.4956.29737-.8921.49562-1.0904-1.78425-.1982-3.5685-.8921-3.5685-3.96496 0-.89212.29738-1.586.793-2.08162-.09912-.19825-.3965-.99125.09913-2.08163 0 0 .69387-.19825 2.18075.793.59475-.19825 1.28862-.29737 1.9825-.29737.69387 0 1.38775.09912 1.98249.29737 1.4869-.99125 2.1808-.793 2.1808-.793.3965 1.09038.1982 1.88338.0991 2.08163.4956.59475.793 1.28862.793 2.08162 0 3.07286-1.8834 3.66766-3.66764 3.86586.29737.3965.59474.8921.59474 1.586v2.1808c0 .1982.0991.4956.5948.3965 3.172-1.0904 5.4518-4.0642 5.4518-7.53353-.0991-4.3615-3.6676-7.930002-8.02909-7.930002z" clip-rule="evenodd"></path>
</svg>
</a>
</header>
<main>
<spacex-app>
<h2 slot="router-fallback" class="loading">S<span>pace</span>X</h2>
<spacex-latest-launch slot="router-fallback"></spacex-latest-launch>
<spacex-next-launch slot="router-fallback"></spacex-next-launch>
<spacex-launches slot="router-fallback"></spacex-launches>
</spacex-app>
</main>
</body>
</html>