24 lines
632 B
HTML
24 lines
632 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Chat</title>
|
|
<link rel="stylesheet" href="/static/css/site.css" />
|
|
|
|
<script type="module">
|
|
import init, { init_chat } from "/pkg/frontend.js";
|
|
await init().catch((err) => {
|
|
console.error("Failed to initialize WASM", err);
|
|
});
|
|
init_chat();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<main class="welcome-card">
|
|
<h1>Chat</h1>
|
|
<p>WebSocket connection initialized. Open the console to see messages.</p>
|
|
</main>
|
|
</body>
|
|
</html>
|