nostrudel/index.html

18 lines
607 B
HTML
Raw Normal View History

2023-02-07 17:04:17 -06:00
<!DOCTYPE html>
<html lang="en">
<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:17 -06:00
<title>personal-nostr-client</title>
2023-02-07 17:04:18 -06:00
<meta name="description" content="A simple web based nostr client i built myself." />
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:18 -06:00
<script async src="./lib/twitter-widgets.js" charset="utf-8"></script>
2023-02-07 17:04:17 -06:00
</body>
</html>