This commit is contained in:
metacryst
2025-11-13 15:30:11 -06:00
commit 493f1c2e1f
16 changed files with 3008 additions and 0 deletions

29
server/index.html Normal file
View File

@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Downloads</title>
<link rel="icon" href="Quill.png">
<style>
body {
margin: 0;
overflow: hidden;
}
.draggable {
-webkit-app-region: drag;
height: 20px;
position: fixed;
top: 0;
left: 0;
width: 100vw;
z-index: 999;
}
</style>
</head>
<body>
<div class="draggable"></div>
<webview src="http://localhost:3020" style="width:100vw; height:100vh;"></webview>
</body>
</html>