-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
23 lines (23 loc) · 1023 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="description" content="A calendar app for nostr" />
<meta property="og:title" content="NostrTime" />
<meta property="og:type" content="website" />
<meta property="og:description" content="A calendar app for nostr" />
<meta property="og:image" content="/ostrich.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="NostrTime" />
<meta name="twitter:description" content="A calendar app for nostr" />
<meta name="twitter:image" content="/ostrich.png" />
<meta property="og:url" content="https://app.coracle.social" />
<title>NostrTime</title>
</head>
<body class="text-gray-800 bg-white dark:text-white dark:bg-gray-800">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>