-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathindex.html
35 lines (33 loc) · 1.35 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, viewport-fit=cover" />
<link rel="stylesheet" href="./src/styles.css" />
<title>noStrudel</title>
<meta name="description" content="A simple nostr web client focused on exploring nostr" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/logo.svg" sizes="any" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="theme-color" content="#8DB600" />
<meta property="og:url" content="https://nostrudel.ninja" />
<meta property="og:type" content="website" />
<meta property="og:title" content="noStrudel" />
<meta property="og:description" content="A simple nostr web client focused on exploring nostr" />
<meta
property="og:image"
content="https://repository-images.githubusercontent.com/581644549/d5eec580-ba3d-41e8-87db-58c313bf3f45"
/>
<script>
window.CACHE_RELAY_ENABLED = false;
window.IMAGE_PROXY_PATH = "";
window.REQUEST_PROXY = "";
window.PROXY_FIRST = false;
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/index.tsx"></script>
</body>
</html>