Skip to content

Commit 409da1c

Browse files
fix: Switch to standard PayPal donation URL format
1 parent 5542054 commit 409da1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/DonationButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function DonationButton() {
66

77
const handleDonate = () => {
88
// Direct PayPal payment link with email
9-
window.open('https://www.paypal.com/paypalme/dogme84', '_blank');
9+
window.open('https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=dogme84@gmail.com&item_name=AlphaForge+Knob+Modeler&currency_code=USD', '_blank');
1010
};
1111

1212
if (!visible) return null;

public-site/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ <h3>⚡ Instant Export</h3>
240240
View on GitHub
241241
</a>
242242

243-
<a href="https://www.paypal.com/paypalme/dogme84" target="_blank" class="btn btn-coffee" style="margin-left: 1rem;">
243+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=dogme84@gmail.com&item_name=AlphaForge+Knob+Modeler&currency_code=USD" target="_blank" class="btn btn-coffee" style="margin-left: 1rem;">
244244
☕ Buy me a coffee
245245
</a>
246246
</div>

0 commit comments

Comments
 (0)