feature: Layout functional

This commit is contained in:
Keith Solomon
2025-07-16 10:27:39 -05:00
parent 559cbbe0be
commit 4f81592d4f
6 changed files with 9 additions and 22 deletions

View File

@@ -1,20 +1,19 @@
---
// Sidebar.astro
import "../styles/global.css";
---
<aside class="w-64 bg-white border-r h-full p-4">
<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 px-3 py-2 rounded hover:bg-gray-100">
<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 px-3 py-2 rounded hover:bg-gray-100">
<button class="w-full text-left text-gray-900 px-3 py-2 rounded bg-gray-300 hover:bg-gray-100">
Task
</button>
</li>