13 lines
311 B
Plaintext
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>
|