-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (27 loc) · 1.15 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ToolKit</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/base.css">
</head>
<body class="bg-gray-900 text-gray-200 flex flex-col min-h-screen">
<header class="bg-gray-800 text-white p-6">
<h1 class="text-3xl font-bold text-center">ToolKit</h1>
<p class="text-center mt-2">A collection of practical, ad-free community tools</p>
</header>
<main class="flex-grow max-w-6xl mx-auto py-10 px-4">
<section class="my-8">
<h2 class="text-2xl font-semibold mb-4">Tools by Category</h2>
<div id="tool-categories" class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"></div>
</section>
</main>
<footer class="bg-gray-800 text-white py-4 text-center mt-auto">
<p>Created by the community | <a href="https://pandadevv.dev" class="underline">pandadevv.dev</a></p>
</footer>
<script src="assets/js/main.js"></script>
<script src="assets/js/contributor.js"></script>
</body>
</html>