bigpappic's picture
Please fix the issues with this app none of it is running the way it's supposed to
3221d07 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Projects | 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 p-6">
<div class="max-w-3xl mx-auto">
<h1 class="text-2xl font-bold mb-6 text-emerald-500">My Projects</h1>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="bg-black border border-emerald-500 p-4 rounded-lg shadow hover:shadow-md transition">
<h3 class="font-medium mb-2">Project 1</h3>
<p class="text-sm text-gray-600 mb-2">Last edited: Today</p>
<a href="#" class="text-blue-600 text-sm">Open β†’</a>
</div>
<div class="bg-white p-4 rounded-lg shadow border hover:shadow-md transition">
<h3 class="font-medium mb-2">Project 2</h3>
<p class="text-sm text-gray-600 mb-2">Last edited: Yesterday</p>
<a href="#" class="text-blue-600 text-sm">Open β†’</a>
</div>
<div class="bg-white p-4 rounded-lg shadow border hover:shadow-md transition">
<h3 class="font-medium mb-2">Project 3</h3>
<p class="text-sm text-gray-600 mb-2">Last edited: 2 days ago</p>
<a href="#" class="text-blue-600 text-sm">Open β†’</a>
</div>
</div>
</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>