This commit is contained in:
Hadi
2026-04-06 15:12:34 +02:00
commit 4989225671
117 changed files with 11454 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
---
import Layout from "@src/layouts/Layout.astro";
import ToolList from "@src/components/ToolList.svelte";
---
<Layout title="Tools">
<div class="max-w-4xl mx-auto px-4 pb-4">
<div class="mb-6">
<a href="/" class="btn btn-ghost btn-sm gap-1">← Back</a>
</div>
<div class="mb-6">
<h1 class="text-xl font-bold tracking-tight">Tools</h1>
<p class="text-base-content/50 text-sm mt-1">All registered OSINT tools.</p>
</div>
<ToolList client:only="svelte" />
</div>
</Layout>