Skip to content

Commit cebb0ad

Browse files
committed
Enabled showcase countdown, fixes #115
1 parent 41b490b commit cebb0ad

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/pages/Showcase.jsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useEffect, useState } from "react";
22
import TextLink from "../components/TextLink";
33

4-
const ENABLE_SHOWCASE_COUNTDOWN = false;
4+
const ENABLE_SHOWCASE_COUNTDOWN = true;
55

66
function Showcase() {
77
const [timeLeft, setTimeLeft] = useState({
@@ -14,9 +14,9 @@ function Showcase() {
1414

1515
useEffect(() => {
1616
// Local time: Nov 21, 2025 at 1 PM
17-
const showcaseYear = 2025;
18-
const showcaseMonth = 10; // November (0-indexed)
19-
const showcaseDay = 21;
17+
const showcaseYear = 2026;
18+
const showcaseMonth = 3; // April (0-indexed)
19+
const showcaseDay = 17;
2020
const showcaseHour = 13;
2121
const showcaseMinute = 0;
2222
const showcaseSecond = 0;
@@ -110,7 +110,7 @@ function Showcase() {
110110
<>
111111
{/* Date with better contrast */}
112112
<p className="inline-block text-2xl sm:text-3xl md:text-4xl font-light text-yellow-400 mb-4 px-3 py-1 bg-black/70 rounded-lg drop-shadow-lg">
113-
November 21, 2025
113+
April 17, 2026
114114
</p>
115115

116116
{/* Time with text shadow */}

0 commit comments

Comments
 (0)