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

22 lines
489 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 bg-blue-100 text-blue-700 px-3 py-2 rounded hover:bg-blue-200">
System
</button>
</li>
<li>
<button class="w-full text-left bg-green-100 text-green-700 px-3 py-2 rounded hover:bg-green-200">
Task
</button>
</li>
</ul>
</aside>