This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
werefox-dev/src/info/components/identity-card-button.js

16 lines
489 B
JavaScript
Raw Normal View History

import Link from "next/link";
export default function IdentityCardButton({ url, button_text }) {
return (
<div>
<Link href={url}>
<a target="_blank">
<div className="p-4 hover:text-werefox-pink-dark dark:hover:text-werefox-pink ring-2 ring-werefox-blue-dark dark:ring-werefox-blue hover:ring-werefox-pink-dark dark:hover:ring-werefox-pink hover:animate-yip transition">
{button_text}
</div>
</a>
</Link>
</div>
);
}