-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
69 lines (62 loc) · 2.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- favicon from Twemoji (CC-BY 4.0)-->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- HTML Meta Tags -->
<title>Bluesky Posts Heatmap Generator</title>
<meta name="description" content="Generates GitHub-style heatmaps from your Bluesky posts." />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://bluesky-heatmap.fly.dev" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Bluesky Posts Heatmap Generator" />
<meta property="og:description" content="Generates GitHub-style heatmaps from your Bluesky posts." />
<meta property="og:image" content="https://bluesky-heatmap.fly.dev/screenshot.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="bluesky-heatmap.fly.dev" />
<meta property="twitter:url" content="https://bluesky-heatmap.fly.dev" />
<meta name="twitter:title" content="Bluesky Posts Heatmap Generator" />
<meta name="twitter:description" content="Generates GitHub-style heatmaps from your Bluesky posts." />
<meta name="twitter:image" content="https://bluesky-heatmap.fly.dev/screenshot.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<a
class="github-fork-ribbon"
href="https://github.com/aliceisjustplaying/bluesky-heatmap"
data-ribbon="Fork me on GitHub"
title="Fork me on GitHub"
target="_blank"
>Fork me on GitHub</a
>
<div id="credits">
Created by <a href="https://bsky.app/profile/did:plc:by3jhwdqgbtrcc7q4tkkv3cf" target="_blank"
>@alice.bsky.sh</a
>
</div>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4JMPT8FWNV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-4JMPT8FWNV');
</script>
<!-- Cloudflare Web Analytics -->
<script
async
src="https://static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"token": "b4bb6e710627415e83e9994bf14333cd"}'
></script>
<!-- End Cloudflare Web Analytics -->
</body>
</html>