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>Elysia Static</title> 7 <link rel="icon" type="image/x-icon" href="../favicon.ico"> 8 <style> 9 /* Dark theme fallback styles for before JS loads */ 10 @media (prefers-color-scheme: dark) { 11 body { 12 background-color: oklch(0.23 0.015 285); 13 color: oklch(0.90 0.005 285); 14 } 15 16 pre { 17 background-color: oklch(0.33 0.015 285) !important; 18 color: oklch(0.90 0.005 285) !important; 19 } 20 21 .bg-muted { 22 background-color: oklch(0.33 0.015 285) !important; 23 } 24 } 25 </style> 26 </head> 27 <body> 28 <div id="elysia"></div> 29 <script type="module" src="./editor.tsx"></script> 30 </body> 31</html>