File size: 911 Bytes
1a62613 257af98 1a62613 257af98 1a62613 257af98 1a62613 257af98 1a62613 257af98 1a62613 257af98 1a62613 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cube Warp Homepage</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<style>
body { margin: 0; padding: 0; overflow: hidden; }
canvas { display: block; }
</style>
</head>
<body class="bg-black">
<div id="container"></div>
<div class="absolute top-0 left-0 w-full h-full flex items-center justify-center pointer-events-none">
<div class="text-center text-white">
<h1 class="text-6xl font-bold mb-4">Cube Warp</h1>
<p class="text-xl opacity-80">Move your mouse to warp the cubes</p>
</div>
</div>
<script src="cube-warp.js"></script>
</body>
</html>
|