Update readme discord links

This commit is contained in:
Chris Veleris 2025-07-02 17:38:20 +03:00
parent db53f54bfc
commit 0f882adef2
2 changed files with 3 additions and 7 deletions

View file

@ -369,7 +369,7 @@ For questions or comments, please [open an issue](https://github.com/chrisvel/tu
Join the tududi community:
[![Discord](https://img.shields.io/discord/1234567890?color=7289da&label=Discord&logo=discord&logoColor=white&style=for-the-badge)](https://discord.gg/DmP5AcuM)
[![Discord](https://img.shields.io/discord/1234567890?color=7289da&label=Discord&logo=discord&logoColor=white&style=for-the-badge)](https://discord.gg/sd3jhSQKYA)
[![Reddit](https://img.shields.io/reddit/subreddit-subscribers/tududi?color=ff4500&label=Reddit&logo=reddit&logoColor=white&style=for-the-badge)](https://www.reddit.com/r/tududi/)
## 🌟 Please check my other projects!

View file

@ -576,7 +576,6 @@
<div class="container">
<nav>
<div class="logo">
<i class="fas fa-check-square"></i>
<span>tududi</span>
</div>
<ul class="nav-links">
@ -867,7 +866,7 @@
<p>Connect with other users, get support, share ideas, and stay updated with the latest developments. Our community is here to help you get the most out of tududi.</p>
</div>
<div style="display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 40px;">
<a href="https://discord.gg/DmP5AcuM" style="display: inline-block;">
<a href="https://discord.gg/sd3jhSQKYA" style="display: inline-block;">
<img src="https://img.shields.io/discord/1234567890?color=7289da&label=Discord&logo=discord&logoColor=white&style=for-the-badge" alt="Join Discord" style="height: 40px; transition: transform 0.3s ease;" onmouseover="this.style.transform='translateY(-2px)'" onmouseout="this.style.transform='translateY(0)'">
</a>
<a href="https://www.reddit.com/r/tududi/" style="display: inline-block;">
@ -945,7 +944,7 @@
<div class="footer-column">
<h3>Community</h3>
<ul class="footer-links">
<li><a href="https://discord.gg/DmP5AcuM"><i class="fab fa-discord"></i> Discord Server</a></li>
<li><a href="https://discord.gg/sd3jhSQKYA"><i class="fab fa-discord"></i> Discord Server</a></li>
<li><a href="https://www.reddit.com/r/tududi/"><i class="fab fa-reddit"></i> r/tududi</a></li>
</ul>
<p style="font-size: 0.9rem; color: #b0b0b0; margin-top: 15px;">Join our community for support, discussions, and updates!</p>
@ -971,7 +970,6 @@
themeToggle.checked = true;
document.querySelector('.theme-switch-label i').classList.remove('fa-moon');
document.querySelector('.theme-switch-label i').classList.add('fa-sun');
document.getElementById('hero-screenshot').src = "screenshots/all-dark.png";
}
// Theme toggle event listener
@ -981,13 +979,11 @@
localStorage.setItem('theme', 'dark');
document.querySelector('.theme-switch-label i').classList.remove('fa-moon');
document.querySelector('.theme-switch-label i').classList.add('fa-sun');
document.getElementById('hero-screenshot').src = "screenshots/all-dark.png";
} else {
document.body.removeAttribute('data-theme');
localStorage.setItem('theme', 'light');
document.querySelector('.theme-switch-label i').classList.remove('fa-sun');
document.querySelector('.theme-switch-label i').classList.add('fa-moon');
document.getElementById('hero-screenshot').src = "screenshots/all-light.png";
}
});
</script>