VibeGame / index.html
dylanebert
add tools
eb1a39a
raw
history blame contribute delete
747 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<title>VibeGame</title>
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(135deg, #0b0a09 0%, #0f0e0c 100%);
color: #ffffff;
overflow: hidden;
min-height: 100vh;
}
#app {
opacity: 0;
animation: fadeIn 0.3s ease-out 0.1s forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>