Skip to content

Commit 1c12f9e

Browse files
committed
chore: Bumped year on licence and added by me a coffee widget on site
1 parent cf713fa commit 1c12f9e

6 files changed

Lines changed: 35 additions & 5 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Kkermit.
3+
Copyright (c) 2026 Kkermit.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,6 @@ Connect with us on [Discord](https://discord.gg/xcMVwAVjSD) for support / any re
449449

450450

451451
## License
452-
Released under the terms of [MIT License](https://github.com/Kkkermit/Testify/blob/main/LICENSE) license.
452+
Released under the terms of [MIT License](https://github.com/Kkkermit/Testify/blob/main/LICENSE) license [2026].
453453

454454
**Thanks to [TheLegendDev](https://github.com/TheLegenDev) for the readme template from [Nub Bot](https://github.com/TheLegenDev/Nub-Bot)** 💛

site/css/styles.css

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,23 @@ body {
266266
border-color: #ffffff;
267267
}
268268

269-
.light-mode #back-to-top,
269+
#back-to-top {
270+
background-color: #BD5FFF;
271+
}
272+
273+
#back-to-top:hover {
274+
background-color: #ca7fff;
275+
}
276+
277+
.light-mode #back-to-top {
278+
background-color: #BD5FFF;
279+
color: #ffffff;
280+
}
281+
282+
.light-mode #back-to-top:hover {
283+
background-color: #ca7fff;
284+
}
285+
270286
.light-mode #theme-toggle {
271287
background-color: #8a2be2;
272288
color: #ffffff;

site/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,5 +1122,18 @@ <h4 class="text-lg font-bold mb-4 text-white">Connect</h4>
11221122
</footer>
11231123

11241124
<script src="./js/main.js"></script>
1125+
<script
1126+
data-name="BMC-Widget"
1127+
data-cfasync="false"
1128+
src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js"
1129+
data-id="kkermit"
1130+
data-description="Support me on Buy me a coffee!"
1131+
data-message=""
1132+
data-color="#BD5FFF"
1133+
data-position="Right"
1134+
data-x_margin="18"
1135+
data-y_margin="18"
1136+
crossorigin="anonymous"
1137+
></script>
11251138
</body>
11261139
</html>

site/js/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,8 @@ document.addEventListener("DOMContentLoaded", function () {
217217
backToTopButton.innerHTML = '<i class="fas fa-arrow-up"></i>';
218218
backToTopButton.title = "Back to top";
219219
backToTopButton.className =
220-
"fixed bottom-5 right-5 bg-primary hover:bg-primary-light text-white border-none rounded-full w-12 h-12 flex items-center justify-center cursor-pointer shadow-md transition-all duration-300 opacity-0 z-50";
220+
"fixed bottom-[18px] right-[120px] text-white border-none rounded-full w-12 h-12 flex items-center justify-center cursor-pointer shadow-md transition-all duration-300 opacity-0 z-50";
221+
backToTopButton.style.backgroundColor = "#BD5FFF";
221222
document.body.appendChild(backToTopButton);
222223

223224
window.addEventListener("scroll", () => {

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// ██║ ███████╗███████║ ██║ ██║██║ ██║
66
// ╚═╝ ╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
77

8-
// Developed by: Kkermit. All rights reserved. (2025)
8+
// Developed by: Kkermit. All rights reserved. (2026)
99
// MIT License
1010

1111
const { Client, Collection } = require(`discord.js`);

0 commit comments

Comments
 (0)