BuyMeACoffee glow

This commit is contained in:
Gavin McDonald
2025-05-03 16:30:40 -04:00
parent 82ccb0f6fb
commit af70401916

View File

@@ -6,7 +6,11 @@ type BuyMeACoffeeProps = {
export default function BuyMeACoffee({ className = '' }: BuyMeACoffeeProps) {
return (
<a href="https://www.buymeacoffee.com/mcdoh" className={className} target="_blank">
<a
href="https://www.buymeacoffee.com/mcdoh"
className={`transition hover:drop-shadow-[0_0_3px_#ffd700] ${className}`}
target="_blank"
>
<img src="/img/bmc-button.svg" alt="Buy Me A Coffee" className="h-full" />
</a>
);