File size: 1,585 Bytes
4a97429 67c755a 35d793a 4a97429 35d793a 4a97429 35d793a 4a97429 2f7ad55 1bb6c36 2f7ad55 1bb6c36 2f7ad55 4a97429 |
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 29 30 31 32 33 34 35 36 37 38 39 40 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download | Mrs T's Funhouse</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow flex items-center justify-center">
<div class="text-center p-6 bg-black border border-emerald-500 rounded-lg shadow-md max-w-md mx-4">
<h1 class="text-3xl font-bold mb-4 text-emerald-500">Download App</h1>
<div class="flex flex-col gap-4">
<a href="#" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700 transition">
Windows (Coming Soon)
</a>
<a href="#" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700 transition">
Mac (Coming Soon)
</a>
<a href="#" class="px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700 transition">
Linux (Coming Soon)
</a>
</div>
<p class="mt-4 text-gray-600">
Version 1.0.0 | Windows (25MB) | Mac (30MB) | Linux (22MB)
</p>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html> |