Merge pull request 'first push' (#6) from arthur/update-password-link into main

Reviewed-on: #6
This commit is contained in:
napo280 2025-04-18 14:10:19 +02:00
commit 2a57ab1630

View File

@ -7,11 +7,12 @@ const tiles = [
{ name: "Notre git", href: "https://git.la-banquise.fr" },
{ name: "Panel jeux", href: "https://panel.la-banquise.fr" },
{ name: "Discord", href: "https://discord.gg/QQWwzX5ptY" },
{ name: "Login", href: "https://auth.la-banquise.fr" },
{ name: "Change password", href: "https://ssp.la-banquise.fr" },
]
]
tiles.forEach((info) => {
const newTile = tile.cloneNode(true);
tiles.forEach((info) => {
const newTile = tile.cloneNode(true);
newTile.querySelectorAll(".item-name").forEach((el) => {
el.innerText = info.name;
});