2025-01-17 22:16:14 +00:00
|
|
|
---
|
|
|
|
type Props = {
|
|
|
|
href: String;
|
|
|
|
link: String;
|
|
|
|
};
|
|
|
|
|
2025-02-13 16:55:09 +00:00
|
|
|
const { href, link } = Astro.props;
|
2025-01-17 22:16:14 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
<a href={`${href}`}>
|
2025-02-13 16:55:09 +00:00
|
|
|
<div
|
|
|
|
class="bg-button text-secondary hover:bg-button-active flex w-fit flex-row items-center gap-1 justify-self-center rounded-full px-3 py-1.5 text-center text-sm font-medium text-nowrap capitalize transition-colors duration-300"
|
|
|
|
>
|
2025-01-17 22:16:14 +00:00
|
|
|
{link}
|
|
|
|
</div>
|
|
|
|
</a>
|