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