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-23 18:48:20 +00:00
|
|
|
class="animate-reveal bg-tertiary text-primary hover:bg-accent m-4 flex w-fit flex-row items-center gap-1 justify-self-center rounded-full px-2 py-1 text-center text-sm font-medium text-nowrap capitalize opacity-0 transition-colors [animation-delay:0.1s]"
|
2025-01-17 22:16:14 +00:00
|
|
|
>
|
|
|
|
{link}
|
|
|
|
</div>
|
|
|
|
</a>
|