driver.js / docs /src /components /UsecaseItem.astro
kamrify's picture
Update design
7d64866
raw
history blame
353 Bytes
---
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>