-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (85 loc) · 4.09 KB
/
index.html
File metadata and controls
97 lines (85 loc) · 4.09 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='0.9em' font-size='90'>🦉</text></svg>"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Create Your Online Identity - Join the decentralized social web today.</title>
<meta name="title" content="Create Your Online Identity - Join the decentralized social web today." />
<meta name="description" content="Nostr is an open, decentralized social network. Create your Nostr Identity in seconds, get your unique password, and start exploring a censorship-resistant way to connect online." />
<meta name="keywords" content="nostr, decentralized, social media, identity, crypto, keys, buho" />
<meta name="author" content="DrShift" />
<meta name="application-name" content="Buho Nostr Identity Tool" />
<meta name="subject" content="Contribute to amke this site even more accessible and fun." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://nostrid.mybuho.de" />
<meta property="og:title" content="Create Your Online Identity - Join the decentralized social web today." />
<meta property="og:description" content="Nostr is an open, decentralized social network. Create your Nostr Identity in seconds, get your unique password, and start exploring a censorship-resistant way to connect online." />
<meta property="og:image" content="https://github.com/DoktorShift/images/blob/main/Preview_KeyGen.png?raw=true" />
<!-- X (Twitter) -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://nostrid.mybuho.de" />
<meta property="twitter:title" content="Create Your Online Identity - Join the decentralized social web today." />
<meta property="twitter:description" content="Nostr is an open, decentralized social network. Create your Nostr Identity in seconds, get your unique password, and start exploring a censorship-resistant way to connect online." />
<meta property="twitter:image" content="https://github.com/DoktorShift/images/blob/main/Preview_KeyGen.png?raw=true" />
<!-- Security Headers -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; img-src 'self' data: https:; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; script-src 'self' 'sha256-G3IUOPd1MtJH+94i9wJQbEjtEVUg1Qd3SmJjMBV7/0M=' 'unsafe-eval'; connect-src 'self' wss: https:;"
/>
<!-- Preload fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<style>
html,
body {
font-family: "Inter", system-ui, -apple-system, sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #10b981;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #059669;
}
/* Dark mode scrollbar */
.dark ::-webkit-scrollbar-track {
background: #374151;
}
.dark ::-webkit-scrollbar-thumb {
background: #10b981;
}
</style>
</head>
<body class="antialiased">
<div id="root"></div>
<script>
// Clear any problematic service workers
if ("serviceWorker" in navigator) {
navigator.serviceWorker.getRegistrations().then(function (registrations) {
for (let registration of registrations) {
registration.unregister();
}
});
}
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>