bigpappic's picture
Please fix the issues with this app none of it is running the way it's supposed to
35d793a verified
<!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>