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> |