File size: 458 Bytes
7660c1f
 
 
 
 
 
 
 
 
6b9b285
 
 
7660c1f
 
6b9b285
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-2 md:gap-2 lg:gap-4 pt-2">
  <span class="border-b-2 border-b-black block w-[30px] md:w-[40px] lg:w-[50px]"></span>
  <h3 class="text-xl md:text-2xl lg:text-3xl mt-2 md:mt-3 lg:mt-0 font-bold text-black">
    { title }
  </h3>
  <p class="md:text-lg lg:text-xl text-black">
    { description }
  </p>
</div>