-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (53 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head prefix="og: https://ogp.me/ns#">
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/cardgame_deck.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PPAP: Planning Poker App Portable</title>
<!-- Open Graph Protocol -->
<meta property="og:title" content="PPAP: Planning Poker App Portable" />
<meta property="og:site_name" content="PPAP: Planning Poker App Portable" />
<meta
property="og:description"
content="A simple planning poker app for scrum."
/>
<meta property="og:url" content="https://ppap.p-craft.dev/" />
<meta
property="og:image"
content="https://ppap.p-craft.dev/cardgame_deck.png"
/>
<meta property="og:type" content="website" />
</head>
<body class="font-sans m-0 min-w-80">
<a href="/"
><h1 class="sm:text-4xl text-2xl m-4 underline">Planning Poker App Portable</h1></a
>
<div id="app" class="max-w-7xl my-0 mx-auto px-8 text-center"></div>
<footer
class="fixed bottom-1 h-6 w-full flex flex-row justify-end gap-1 px-1"
>
<a
href="https://github.com/ef81sp/ppap"
target="_blank"
rel="noopener"
rel="noreferrer"
>
<img src="/github-mark.png" alt="GitHub (open in new tab)" class="object-contain h-6" />
</a>
<a
href="https://www.buymeacoffee.com/p_craft"
target="_blank"
rel="noopener"
rel="noreferrer"
>
<img
src="/bmc-logo-yellow.png"
alt="Buy me a coffee (open in new tab)"
class="object-contain h-6 rounded-md"
/>
</a>
</footer>
<script type="module" src="/src/main.mts"></script>
</body>
</html>