tooltopia-hub / index.html
shimanta420's picture
Create a fully functional 50+ online tools website
abc8a56 verified
<!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>