Files
Prompt_Catalog/src/components/Sidebar.astro
2025-07-16 10:27:39 -05:00

22 lines
486 B
Plaintext

---
// Sidebar.astro
---
<aside class="w-64 border-r h-full p-4 text-gray-100">
<h2 class="text-lg font-semibold mb-4">Prompt Types</h2>
<ul class="space-y-2">
<li>
<button class="w-full text-left text-gray-900 px-3 py-2 rounded bg-gray-300 hover:bg-gray-100">
System
</button>
</li>
<li>
<button class="w-full text-left text-gray-900 px-3 py-2 rounded bg-gray-300 hover:bg-gray-100">
Task
</button>
</li>
</ul>
</aside>