<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Windjammer Counter</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background: #f0f0f0;
}
.counter {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
text-align: center;
}
h1 {
color: #333;
margin: 0 0 1rem 0;
}
button {
background: #007bff;
color: white;
border: none;
padding: 0.5rem 1rem;
margin: 0 0.5rem;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
}
button:hover {
background: #0056b3;
}
#app {
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module">
import init from './pkg/windjammer_ui.js';
init();
</script>
</body>
</html>