1
0
Fork 0
winter-software.com/src/components/Card.astro
Mia Rose Winter 34d3a6b277
Some checks failed
hugo-deploy / deploy (push) Failing after 35s
Added projects, content
2024-06-03 00:17:46 +02:00

13 lines
311 B
Plaintext

---
interface Props {
title: string;
}
const { title } = Astro.props;
---
<article class="flex flex-col bg-base-200 p-8 rounded-sm border border-neutral shadow-neutral shadow-[6px_6px_0_0] min-h-72 break-inside-avoid-column">
<h3 class="text-2xl font-medium mb-4">{title}</h3>
<slot />
</article>