I've been saying "PDSes seem easy enough, they're what, some CRUD to a db? I can do that in my sleep". well i'm sleeping rn so let's go
at main 758 B view raw
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>Tranquil PDS</title> 7 <link rel="preconnect" href="https://fonts.googleapis.com"> 8 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 9 <link 10 href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap" 11 rel="stylesheet" 12 > 13 <style> 14 html { 15 background: #f9fafa; 16 } 17 @media (prefers-color-scheme: dark) { 18 html { 19 background: #0a0c0c; 20 } 21 } 22 </style> 23 </head> 24 <body> 25 <div id="app"></div> 26 <script type="module" src="/src/main.ts"></script> 27 </body> 28</html>