File size: 3,214 Bytes
ff158c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PixelWizard Tools</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
    <custom-navbar></custom-navbar>
    
    <main class="flex-grow container mx-auto px-4 py-12">
        <h1 class="text-4xl font-bold text-center mb-12 text-primary-500">
            <i data-feather="tool"></i> PixelWizard Tools
        </h1>
        
        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
            <!-- Color Picker -->
            <div class="tool-card group">
                <div class="card-header">
                    <i data-feather="droplet" class="text-primary-500"></i>
                    <h3 class="text-2xl font-bold">Color Wizard</h3>
                    <p class="text-gray-600">Generate and explore color palettes</p>
                </div>
                <div class="tool-preview" style="background: linear-gradient(135deg, #6366f1, #8b5cf6);"></div>
                <div class="card-footer">
                    <a href="/color-picker.html" class="btn-tool">Open Tool</a>
                </div>
            </div>

            <!-- Image Compressor -->
            <div class="tool-card group">
                <div class="card-header">
                    <i data-feather="image" class="text-secondary-500"></i>
                    <h3 class="text-2xl font-bold">Image Alchemist</h3>
                    <p class="text-gray-600">Compress and optimize images</p>
                </div>
                <div class="tool-preview">
                    <img src="http://static.photos/technology/640x360/5" alt="Image compression preview" class="h-full w-full object-cover">
                </div>
                <div class="card-footer">
                    <a href="/image-compressor.html" class="btn-tool">Open Tool</a>
                </div>
            </div>

            <!-- Code Formatter -->
            <div class="tool-card group">
                <div class="card-header">
                    <i data-feather="code" class="text-primary-500"></i>
                    <h3 class="text-2xl font-bold">Code Enchanter</h3>
                    <p class="text-gray-600">Format and beautify your code</p>
                </div>
                <div class="tool-preview bg-gray-900 text-gray-300 p-4 font-mono overflow-auto">
                    <pre class="text-sm">function helloWorld() {
  console.log("Hello Pixel Wizard!");
}</pre>
                </div>
                <div class="card-footer">
                    <a href="/code-formatter.html" class="btn-tool">Open Tool</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>
    <script>feather.replace();</script>
</body>
</html>