organize scripts
All checks were successful
/ build (push) Successful in 32s

This commit is contained in:
Ruben 2025-04-15 11:53:22 -05:00
commit 214441ad40
No known key found for this signature in database
GPG key ID: 8EA836555FB6D9A5
12 changed files with 12 additions and 19 deletions

14
scripts/button.js Normal file
View file

@ -0,0 +1,14 @@
// snippet that copies the html for my button(s)
function copyButtonSneexy() {
navigator.clipboard.writeText(
'<a href="https://synth.download"><img src="https://synth.download/assets/buttons/sneexy.svg" alt="Sneexy"></a>'
);
alert("button html copied!");
}
function copyButtonSynthDownload() {
navigator.clipboard.writeText(
'<a href="https://synth.download"><img src="https://synth.download/assets/buttons/synth.download.svg" alt="Synth.Download!"></a>'
);
alert("button html copied!");
}