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 @@
---
// PromptCard.astro
import "../styles/global.css";
const { title, description } = Astro.props;
---
<div class="border rounded p-4 bg-white shadow-sm">
<h3 class="text-lg font-semibold">{title}</h3>
<p class="text-sm text-gray-600 mt-1">{description}</p>
</div>