2025-01-17 22:16:14 +00:00
|
|
|
---
|
|
|
|
type Props = {
|
|
|
|
href: String;
|
|
|
|
link: String;
|
|
|
|
};
|
|
|
|
|
|
|
|
const { href, link } = Astro.props;
|
|
|
|
---
|
|
|
|
|
|
|
|
<a href={`${href}`}>
|
|
|
|
<div
|
2025-01-19 13:10:44 +00:00
|
|
|
class="m-4 flex w-fit animate-reveal flex-row items-center gap-1 justify-self-center rounded-full bg-tertiary px-2 py-1 text-sm font-medium capitalize text-primary opacity-0 transition-colors [animation-delay:0.1s] hover:bg-accent"
|
2025-01-17 22:16:14 +00:00
|
|
|
>
|
|
|
|
{link}
|
|
|
|
</div>
|
|
|
|
</a>
|