pixelwizard-tools / tools.html
Zeeshanhaider's picture
make a new tools website
ff158c3 verified
Raw
History Blame Contribute Delete
3.21 kB
<!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>