File size: 366 Bytes
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-yellow-300 block w-[50px]"></span>
  <h3 class="text-3xl font-bold text-yellow-300">
    { title }
  </h3>
  <p class="text-xl text-gray-300">
    { description }
  </p>
</div>