File size: 1,567 Bytes
6e8f694
 
 
 
 
 
 
ae793e3
6e8f694
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ae793e3
 
 
6e8f694
 
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
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CodeCraft Studio</title>
    <link rel="stylesheet" href="style.css">
    <script defer src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-900 text-gray-100">
    <custom-navbar></custom-navbar>
    <main class="container mx-auto px-4 py-8">
        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
            <project-card 
                title="Neon Dreams" 
                description="CSS animation showcase" 
                tech="HTML/CSS/JS"
                image="http://static.photos/technology/640x360/1"
            ></project-card>
            <project-card 
                title="Pixel Perfect" 
                description="Responsive UI components" 
                tech="React/Tailwind"
                image="http://static.photos/minimal/640x360/2"
            ></project-card>
            <project-card 
                title="Code Canvas" 
                description="Interactive coding playground" 
                tech="Vue/Node"
                image="http://static.photos/abstract/640x360/3"
            ></project-card>
        </div>
    </main>
    <custom-footer></custom-footer>
    <script src="components/navbar.js"></script>
    <script src="components/project-card.js"></script>
    <script src="components/footer.js"></script>
    <script src="script.js"></script>
    <script>
      feather.replace();
    </script>
</body>
</html>