23 lines
779 B
HTML
23 lines
779 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Hyperia</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" href="_/icons/logo.svg">
|
|
<link rel="stylesheet" href="_/code/shared.css">
|
|
<script src="_/code/quill.js"></script>
|
|
<script type="module">
|
|
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>
|
|
<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> |