blob: dce002b9cb4626d8e0fae651ec81d57a32b6912c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
type Props = {
link: string
};
---
<li class="px-0.5">
<a class="px-1 text-blue-500 hover:text-blue-400 transition ease-in-out duration-300" href={Astro.props.link}>
<slot></slot>
</a>
</li>
|