Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ <h3>Seconds</h3>
<script>
// Countdown logic
const countdown = () => {
const countDate = new Date("January 01, 2026 00:00:00").getTime();
const countDate = new Date("January 01, 2027 00:00:00").getTime();
const now = new Date().getTime();
const gap = countDate - now;

Expand All @@ -279,3 +279,4 @@ <h3>Seconds</h3>
<p>All Rights Reserved &copy;2025, Daniel Mukenya &trade; </p>
</body>
</html>