Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <title>wisp.place</title>
7 <meta name="description" content="Manage your decentralized static sites hosted on AT Protocol." />
8
9 <!-- Open Graph / Facebook -->
10 <meta property="og:type" content="website" />
11 <meta property="og:url" content="https://wisp.place/editor" />
12 <meta property="og:title" content="Editor - wisp.place" />
13 <meta property="og:description" content="Manage your decentralized static sites hosted on AT Protocol." />
14 <meta property="og:site_name" content="wisp.place" />
15
16 <!-- Twitter -->
17 <meta name="twitter:card" content="summary" />
18 <meta name="twitter:url" content="https://wisp.place/editor" />
19 <meta name="twitter:title" content="Editor - wisp.place" />
20 <meta name="twitter:description" content="Manage your decentralized static sites hosted on AT Protocol." />
21
22 <!-- Theme -->
23 <meta name="theme-color" content="#7c3aed" />
24
25 <link rel="icon" type="image/x-icon" href="../favicon.ico">
26 <link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
27 <link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
28 <link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
29 <link rel="manifest" href="../site.webmanifest">
30 <style>
31 /* Dark theme fallback styles for before JS loads */
32 @media (prefers-color-scheme: dark) {
33 body {
34 background-color: oklch(0.23 0.015 285);
35 color: oklch(0.90 0.005 285);
36 }
37
38 pre {
39 background-color: oklch(0.33 0.015 285) !important;
40 color: oklch(0.90 0.005 285) !important;
41 }
42
43 .bg-muted {
44 background-color: oklch(0.33 0.015 285) !important;
45 }
46 }
47 </style>
48 </head>
49 <body>
50 <div id="elysia"></div>
51 <script type="module" src="./editor.tsx"></script>
52 </body>
53</html>