nostrudel/index.html

36 lines
1.3 KiB
HTML
Raw Normal View History

2023-08-18 15:11:35 -05:00
<!doctype html>
2024-01-03 11:31:14 -06:00
<html lang="en" dir="auto">
2023-02-07 17:04:17 -06:00
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
2023-02-07 17:04:18 -06:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0" />
2023-02-07 17:04:18 -06:00
<link rel="stylesheet" href="./src/styles.css" />
2023-02-07 17:04:19 -06:00
<title>noStrudel</title>
2024-05-09 07:31:01 -05:00
<meta name="description" content="A simple nostr web client focused on exploring nostr" />
2023-02-07 17:04:18 -06:00
<link rel="icon" href="/favicon.ico" sizes="any" />
2024-05-09 07:31:01 -05:00
<link rel="icon" href="/logo.svg" sizes="any" type="image/svg+xml" />
2023-02-07 17:04:18 -06:00
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
2023-02-07 17:04:19 -06:00
<meta name="theme-color" content="#8DB600" />
2023-04-11 16:38:07 -05:00
<meta property="og:url" content="https://nostrudel.ninja" />
<meta property="og:type" content="website" />
<meta property="og:title" content="noStrudel" />
2024-05-09 07:31:01 -05:00
<meta property="og:description" content="A simple nostr web client focused on exploring nostr" />
2023-04-11 16:38:07 -05:00
<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>
2023-02-07 17:04:17 -06:00
</head>
<body>
<div id="root"></div>
2023-02-07 17:04:18 -06:00
<script type="module" src="./src/index.tsx"></script>
2023-02-07 17:04:17 -06:00
</body>
</html>