My personal site hosted @ https://indexx.dev
1---
2interface Props {
3 title: string;
4 description: string;
5 date: string;
6 href: string;
7 note?: string;
8}
9
10const { title, description, date, href, note } = Astro.props;
11---
12
13<a href={href} target="_blank" class="text-reset">
14 <div class="project-card" style="color: #fff;">
15 <small class="text-muted">{date}</small>
16 <h4>{title}</h4>
17 {description}
18 {
19 note && (
20 <>
21 <br />
22 <small class="text-muted">{note}</small>
23 </>
24 )
25 }
26 </div>
27</a>