add new binky
All checks were successful
/ test (push) Successful in 16s

This commit is contained in:
Soph :3 2024-08-29 02:55:32 +03:00
parent a91e7967b4
commit 01ab567df8
Signed by: sophie
GPG key ID: EDA5D222A0C270F2
2 changed files with 2 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -16,6 +16,7 @@ const binky = [
["https://satorikeiko.surge.sh", "satorikeiko.png"], ["https://satorikeiko.surge.sh", "satorikeiko.png"],
["https://nekoaerospace.nekoweb.org", "nekoaerospace.png"], ["https://nekoaerospace.nekoweb.org", "nekoaerospace.png"],
["https://derg.rest", "tom.png"], ["https://derg.rest", "tom.png"],
["https://sillylaird.nekoweb.org/", "sillylairdb.png"]
]; ];
binky.forEach((z) => { binky.forEach((z) => {
@ -23,7 +24,7 @@ binky.forEach((z) => {
a.href = z[0]; a.href = z[0];
a.ariaLabel = `${z[1]}'s website`; a.ariaLabel = `${z[1]}'s website`;
a.className = "hasBadge"; a.className = "hasBadge";
const img = document.createElement("img"); const img = document.createElement("img");
img.src = `/assets/binkies/${z[1]}`; img.src = `/assets/binkies/${z[1]}`;
img.width = 88; img.width = 88;