Skip to content

Commit cd330a1

Browse files
authored
Update countdown deadline to Sep 30 2026 (#440)
1 parent b61173e commit cd330a1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

public/banner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@
291291
}
292292

293293
// ── Countdown logic ───────────────────────────────────────────────────
294-
var countDownDate = new Date("Sep 1, 2026 00:00:00").getTime();
294+
var countDownDate = new Date("Sep 30, 2026 00:00:00").getTime();
295295

296296
var unitFormatters = {
297297
day: new Intl.NumberFormat(locale, { style: "unit", unit: "day", unitDisplay: "narrow" }),

src/layouts/Landing.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const shuffledSigs = shuffle(signatures as any[]);
5656
const sigCountryCount = new Set(signatures.map((s: any) => s.region).filter(Boolean)).size;
5757
5858
// countdown
59-
const deadline = new Date('2026-09-01T00:00:00Z');
59+
const deadline = new Date('2026-09-30T00:00:00Z');
6060
const now = new Date();
6161
const daysLeft = Math.max(0, Math.ceil((deadline.getTime() - now.getTime()) / (1000 * 60 * 60 * 24)));
6262

0 commit comments

Comments
 (0)