GitHub and Buy Me a Coffee links, various tweaks

This commit is contained in:
Gavin McDonald
2025-05-02 20:08:04 -04:00
parent 35afa28e44
commit 6a1f1174a3
15 changed files with 69 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
'use client';
type BuyMeACoffeeProps = {
className?: string;
};
export default function BuyMeACoffee({ className = '' }: BuyMeACoffeeProps) {
return (
<a href="https://www.buymeacoffee.com/mcdoh" className={className} target="_blank">
<img src="/img/bmc-button.svg" alt="Buy Me A Coffee" className="h-full" />
</a>
);
}