File size: 1,438 Bytes
639374a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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" 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>