-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
58 lines (58 loc) · 2.5 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
<!doctype html>
<html lang="en" class="h-full">
<head>
<meta charset="UTF-8" />
<title>Pinstr</title>
<link rel="icon" type="image/svg+xml" href="/assets/pinstr.svg" sizes="any" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
<link rel="canonical" href="https://pinstr.app" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A decentralized, free, and open-source social network for curating and sharing interests with the world."
/>
<meta
name="keywords"
content="nostr, bitcoin, decentralized, opensource, foss, pin, board, bookmark, social, network"
/>
<meta name="theme-color" content="#ffffff" />
<!-- Opengraph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Pinstr" />
<meta
property="og:description"
content="A decentralized, free, and open-source social network for curating and sharing interests with the world."
/>
<meta property="og:image" content="https://pinstr.app/assets/pinstr512.png" />
<meta property="og:url" content="https://pinstr.app" />
<meta property="og:site_name" content="Pinstr" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://pinstr.app" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Pinstr" />
<meta
property="og:description"
content="A decentralized, free, and open-source social network for curating and sharing interests with the world."
/>
<meta property="og:image" content="https://pinstr.app/assets/pinstr512.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="pinstr.app" />
<meta property="twitter:url" content="https://pinstr.app" />
<meta name="twitter:title" content="Pinstr" />
<meta
name="twitter:description"
content="A decentralized, free, and open-source social network for curating and sharing interests with the world."
/>
<meta name="twitter:image" content="https://pinstr.app/assets/pinstr512.png" />
<!-- robots -->
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<!-- Manifest -->
<link rel="manifest" href="/manifest.json" />
</head>
<body class="h-full">
<div id="root" class="h-full"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>