a control panel for my server
at main 21 lines 684 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>Control Panel</title> 7 <link rel="icon" type="image/jpeg" href="control.jpg" /> 8 <link rel="preconnect" href="https://fonts.googleapis.com" /> 9 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> 10 <link 11 href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500&display=swap" 12 rel="stylesheet" 13 /> 14 <link rel="stylesheet" href="./styles.css" /> 15 </head> 16 17 <body> 18 <div id="app"></div> 19 <script type="module" src="./client.ts"></script> 20 </body> 21</html>