feature: Scaffold project

This commit is contained in:
Keith Solomon
2025-07-16 09:26:49 -05:00
parent ed5c14318f
commit 559cbbe0be
18 changed files with 5877 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
---
// SearchBar.astro
import "../styles/global.css";
---
<div class="border-b p-4 bg-white">
<input
type="text"
placeholder="Search prompts..."
class="w-full p-2 border rounded focus:outline-none focus:ring"
/>
</div>