We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c19e95 commit 2c58d25Copy full SHA for 2c58d25
src/landing/win10/index.html
@@ -7,19 +7,8 @@
7
<link rel="stylesheet" href="/css/home.css">
8
<main>
9
<div>
10
- <h1>Windows 10 support ends in</h1>
11
- <h2 id="amount">X days</h2>
+ <h1>RIP Windows 10</h1>
12
</div>
13
</main>
14
<script>
15
- let rn = new Date(); // Current date
16
- let target = new Date("2025-10-14") // Day of death
17
-
18
- console.log(target)
19
20
- let differ = target.getTime() - rn.getTime();
21
22
- differ = Math.round(differ / (1000 * 3600 * 24));
23
24
- document.getElementById("amount").textContent = differ + " days";
25
</script>
0 commit comments