eduflow-nexus / projects.html
TomAs22222's picture
app called sparkhub and makesure all buttons work etc,make it so buttons requireinbg back end only goes to a TEMP DEV TESTING THING AND I WILL WIRE IN BACK END LATER
639374a verified
Raw
History Blame Contribute Delete
1.44 kB
<!DOCTYPE html>
<html lang="en" class="h-full">
<head>
<!-- Same head content as index.html -->
<!-- ... -->
</head>
<body class="min-h-full bg-gray-50">
<div class="flex h-full">
<!-- Same sidebar as index.html -->
<!-- ... -->
<!-- Main Content -->
<div class="flex flex-col flex-1 overflow-hidden">
<!-- Same header as index.html -->
<!-- Update title to "Projects" -->
<!-- Main Content Area -->
<main class="flex-1 overflow-y-auto p-4 md:p-8">
<div class="flex items-center justify-between mb-8">
<h1 class="text-2xl font-bold text-gray-800">Your Projects</h1>
<button class="px-4 py-2 bg-primary text-white rounded-lg font-medium hover:bg-secondary transition-colors" onclick="showDevAlert()">
<i data-feather="plus" class="mr-2 inline"></i>
New Project
</button>
</div>
<!-- Projects Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Project cards with dev alert on click -->
<!-- Similar structure to index.html project cards -->
</div>
</main>
</div>
</div>
<script>
// Same scripts as index.html
</script>
</body>
</html>