-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
index.html
33 lines (28 loc) · 1.32 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Secret Santa Planner</title>
<meta name="title" content="Secret Santa Planner" />
<meta name="description" content="Organize your Secret Santa gift exchange easily and securely. No accounts needed, no emails - just have fun!" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://mael.dev/secretsanta/" />
<meta property="og:title" content="Secret Santa Planner - by mael.dev" />
<meta property="og:description" content="Organize your Secret Santa gift exchange easily and securely. No accounts needed, no emails - just have fun!" />
<meta property="og:image" content="./static/cats.png" />
<!-- Favicon -->
<link rel="icon" href="./static/mistletoe.png" />
<!-- Social Links -->
<link rel="me" href="https://github.com/arcanis" />
<link rel="me" href="https://bsky.app/profile/mael.dev" />
<!-- Theme Color -->
<meta name="theme-color" content="#DC2626" />
</head>
<body>
<div id="root" class="text-xs sm:text-sm font-cherry-swash"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>