fix: update Buy Me a Coffee links to correct profile URL

This commit is contained in:
Kayvan Sylvan
2026-02-17 09:41:09 -08:00
parent 2fc3c12f8b
commit 17ef82055a
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
</p>
<nav class="flex items-center gap-4 ">
<BuyMeCoffee url="https://www.buymeacoffee.com/" /> <!-- And here -->
<BuyMeCoffee url="https://buymeacoffee.com/kayvansylvan" /> <!-- And here -->
</nav>
</div>
</footer>

View File

@@ -1,5 +1,5 @@
<script lang="ts">
export let url: string = 'https://www.buymeacoffee.com/johnconnor.sec';
export let url: string = 'https://buymeacoffee.com/kayvansylvan';
export let text: string = 'Buy me a coffee';
</script>