File size: 353 Bytes
7660c1f 7d64866 7660c1f 7d64866 7660c1f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
---
export interface Props {
title: string;
description: string;
}
const { title, description } = Astro.props;
---
<div class="flex flex-col gap-4">
<span class="border-b-2 border-b-black block w-[50px]"></span>
<h3 class="text-3xl font-bold text-black">
{ title }
</h3>
<p class="text-xl text-black">
{ description }
</p>
</div> |