Spaces:
Running
Running
File size: 2,909 Bytes
abc8a56 | 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 | <!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tooltopia Hub - 50+ Online Tools</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
500: '#6366f1',
},
secondary: {
500: '#10b981',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<header-component></header-component>
<main class="container mx-auto px-4 py-8">
<section class="mb-12">
<h1 class="text-4xl font-bold mb-6 text-center">50+ Powerful Online Tools</h1>
<p class="text-xl text-gray-400 text-center max-w-3xl mx-auto">All your essential tools in one place - free, fast, and easy to use!</p>
</section>
<search-component></search-component>
<section class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
<tool-card icon="code" title="HTML Formatter" category="Developer"></tool-card>
<tool-card icon="image" title="Image Compressor" category="Media"></tool-card>
<tool-card icon="file-text" title="PDF to Word" category="Documents"></tool-card>
<tool-card icon="link" title="URL Shortener" category="Web"></tool-card>
<tool-card icon="lock" title="Password Generator" category="Security"></tool-card>
<tool-card icon="hash" title="Base64 Encoder" category="Developer"></tool-card>
<tool-card icon="calendar" title="Date Calculator" category="Utilities"></tool-card>
<tool-card icon="dollar-sign" title="Currency Converter" category="Finance"></tool-card>
</section>
<div class="mt-12 text-center">
<button class="bg-primary-500 hover:bg-primary-600 text-white font-bold py-3 px-6 rounded-full transition-all">
Load More Tools
</button>
</div>
</main>
<footer-component></footer-component>
<script src="components/header.js"></script>
<script src="components/search.js"></script>
<script src="components/tool-card.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |