Input box, sidebar, ws connection

This commit is contained in:
metacryst
2025-10-03 11:44:00 -05:00
parent 989dbd88a0
commit d02103a0bc
16 changed files with 360 additions and 56 deletions

View File

@@ -7,11 +7,17 @@
<link rel="stylesheet" href="_/code/shared.css">
<script src="_/code/util.js"></script>
<script type="module">
import ProfileButton from "./components/ProfileButton.js"
import "./components/ProfileButton.js"
import "./components/InputBox.js"
import "./components/Sidebar.js"
import ConnectionHandler from "./ws/ConnectionHandler.js"
window.ConnectionHandler = new ConnectionHandler()
</script>
</head>
<body>
<span id="title" class="link" onclick='window.location.href="/"'>hyperia</span>
<profile-button style="z-index: 1; cursor: default; position: fixed; top: 5.5vh; right: 4.5vw"></profile-button>
<input-box></input-box>
<side-bar></side-bar>
</body>
</html>