Skip to content

Commit 68e0f59

Browse files
committed
Add support sections
1 parent 45aec30 commit 68e0f59

File tree

2 files changed

+102
-0
lines changed

2 files changed

+102
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,19 @@ Contributions to tududi are welcome! Whether it's bug fixes, new features, docum
188188
- Translation guidelines
189189
- Pull request checklist
190190

191+
## 💖 Support the Project
192+
193+
If you find tududi useful, consider supporting its development:
194+
195+
<p align="center">
196+
<a href="https://github.com/sponsors/chrisvel"><img src="https://img.shields.io/badge/GitHub_Sponsors-Support-ea4aaa?logo=githubsponsors&logoColor=white&style=for-the-badge" alt="GitHub Sponsors"></a>
197+
<a href="https://www.patreon.com/ChrisVeleris"><img src="https://img.shields.io/badge/Patreon-Support-F96854?logo=patreon&logoColor=white&style=for-the-badge" alt="Patreon"></a>
198+
<a href="https://coff.ee/chrisveleris"><img src="https://img.shields.io/badge/Buy_Me_a_Coffee-Support-FFDD00?logo=buymeacoffee&logoColor=black&style=for-the-badge" alt="Buy Me a Coffee"></a>
199+
<a href="https://www.paypal.com/donate/?hosted_button_id=QEQCKLXPB6XAE"><img src="https://img.shields.io/badge/PayPal-Donate-0070BA?logo=paypal&logoColor=white&style=for-the-badge" alt="PayPal"></a>
200+
</p>
201+
202+
Your support helps keep tududi free, open-source, and actively maintained. Every contribution — big or small — makes a difference!
203+
191204
## 📜 License
192205

193206
This project is licensed under the [MIT License](LICENSE).

index.html

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1741,6 +1741,95 @@ <h3>Access the application</h3>
17411741
</div>
17421742
</section>
17431743

1744+
<section class="sponsor" style="padding: 100px 0; background: linear-gradient(135deg, var(--primary-color) 0%, #1565c0 100%); color: white; position: relative; overflow: hidden;">
1745+
<style>
1746+
.sponsor::before {
1747+
content: '';
1748+
position: absolute;
1749+
top: 0;
1750+
left: 0;
1751+
right: 0;
1752+
bottom: 0;
1753+
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sponsor-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23sponsor-grid)"/></svg>');
1754+
opacity: 0.3;
1755+
}
1756+
.sponsor-grid {
1757+
display: grid;
1758+
grid-template-columns: repeat(4, 1fr);
1759+
gap: 20px;
1760+
max-width: 800px;
1761+
margin: 0 auto;
1762+
}
1763+
.sponsor-link {
1764+
background: rgba(255, 255, 255, 0.1);
1765+
backdrop-filter: blur(10px);
1766+
border: 1px solid rgba(255, 255, 255, 0.2);
1767+
border-radius: 15px;
1768+
padding: 20px 15px;
1769+
text-align: center;
1770+
text-decoration: none;
1771+
color: white;
1772+
font-weight: 600;
1773+
font-size: 0.95rem;
1774+
transition: all 0.3s ease;
1775+
display: flex;
1776+
flex-direction: column;
1777+
align-items: center;
1778+
gap: 10px;
1779+
}
1780+
.sponsor-link:hover {
1781+
transform: translateY(-5px) scale(1.02);
1782+
background: rgba(255, 255, 255, 0.2);
1783+
border-color: rgba(255, 255, 255, 0.4);
1784+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
1785+
color: white;
1786+
}
1787+
.sponsor-link i {
1788+
font-size: 1.8rem;
1789+
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
1790+
}
1791+
.sponsor-link span {
1792+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
1793+
}
1794+
@media (max-width: 768px) {
1795+
.sponsor-grid {
1796+
grid-template-columns: repeat(2, 1fr);
1797+
gap: 15px;
1798+
}
1799+
.sponsor-link {
1800+
padding: 15px 10px;
1801+
}
1802+
.sponsor-link i {
1803+
font-size: 1.5rem;
1804+
}
1805+
}
1806+
</style>
1807+
<div class="container" style="position: relative; z-index: 1;">
1808+
<div class="section-header" style="margin-bottom: 60px;">
1809+
<h2 style="color: white; font-size: 2.8rem; margin-bottom: 20px;">Support tududi</h2>
1810+
<p style="color: rgba(255, 255, 255, 0.9); font-size: 1.2rem;"><strong>tududi</strong> is free and open-source. If it helps you stay productive, consider supporting its development — every contribution keeps the project alive and growing.</p>
1811+
</div>
1812+
<div class="sponsor-grid">
1813+
<a href="https://github.com/sponsors/chrisvel" class="sponsor-link">
1814+
<i class="fab fa-github"></i>
1815+
<span>GitHub Sponsors</span>
1816+
</a>
1817+
<a href="https://www.patreon.com/ChrisVeleris" class="sponsor-link">
1818+
<i class="fab fa-patreon"></i>
1819+
<span>Patreon</span>
1820+
</a>
1821+
<a href="https://coff.ee/chrisveleris" class="sponsor-link">
1822+
<i class="fas fa-mug-hot"></i>
1823+
<span>Buy Me a Coffee</span>
1824+
</a>
1825+
<a href="https://www.paypal.com/donate/?hosted_button_id=QEQCKLXPB6XAE" class="sponsor-link">
1826+
<i class="fab fa-paypal"></i>
1827+
<span>PayPal</span>
1828+
</a>
1829+
</div>
1830+
</div>
1831+
</section>
1832+
17441833
<section class="cta">
17451834
<div class="container">
17461835
<h2>Take Control of Your Productivity</h2>

0 commit comments

Comments
 (0)