-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (81 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Goose</title>
<script
async
data-do-not-track="true"
data-domains="goose.sthom.kiwi"
data-website-id="37f04082-b36c-4f54-9c47-ab8e66ae7a0a"
src="https://stats.sthom.kiwi/script.js"
></script>
</head>
<body
class="flex min-h-screen flex-col bg-slate-200 align-middle font-sans text-neutral-800 dark:bg-slate-900 dark:text-neutral-300"
>
<audio class="audio-honk hidden" src="/audio/goose_honk_b_01.wav"></audio>
<audio class="audio-honk hidden" src="/audio/goose_honk_b_02.wav"></audio>
<audio class="audio-honk hidden" src="/audio/goose_honk_b_03.wav"></audio>
<audio class="audio-honk hidden" src="/audio/goose_honk_b_05.wav"></audio>
<audio class="audio-honk hidden" src="/audio/goose_honk_b_06.wav"></audio>
<audio class="audio-quack hidden" src="/audio/quack_5.mp3"></audio>
<main
class="flex h-full grow flex-col items-center justify-center gap-4 overflow-hidden pb-10 md:gap-6 md:pb-20 lg:gap-8"
id="root"
>
<noscript>
<img
alt=""
src="/goose.png"
decoding="async"
width="256"
height="256"
/>
<p class="max-w-7xl">
This site requires Javascript to run. Alternatively, just enjoy the
image on its own.
</p>
</noscript>
</main>
<footer
class="mx-auto flex w-full max-w-7xl flex-col items-center gap-4 self-end py-2 px-4 text-sm sm:grid sm:grid-cols-3"
>
<div class="justify-self-start text-sm">
Copyright © 2023
<a
rel="external"
class="custom-link"
data-umami-event="footer-sthom"
href="https://sthom.kiwi"
>
Stuart Thomson
</a>
</div>
<div class="justify-self-center text-sm">
<a
rel="external"
class="custom-link"
data-umami-event="footer-github"
href="https://github.com/s-thom/goose.sthom.kiwi"
>
Source code
</a>
(requests welcome)
</div>
<div class="justify-self-end text-sm">
<a
rel="external"
class="custom-link"
data-umami-event="footer-why"
href="https://sthom.kiwi/why-the-goose"
>
Why?
</a>
</div>
</footer>
<script type="module" src="/src/main.tsx" async></script>
</body>
</html>