Skip to content

Commit 608c3df

Browse files
author
Cassandre Pochet
committed
fix: 🐛 Hide More info for 2024-2025
1 parent 8af8582 commit 608c3df

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

src/pages/SpeakersPage.tsx

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,14 @@ export default function SpeakersPage() {
3232
})}
3333
</h2>
3434

35-
<h3 className="text-lg text-gray-500 mb-12">
36-
{t({
37-
fr: "Plus d'infos à venir",
38-
en: "More info coming soon",
39-
})}
40-
</h3>
35+
{year === "2026" && (
36+
<h3 className="text-lg text-gray-500 mb-12">
37+
{t({
38+
fr: "Plus d'infos à venir",
39+
en: "More info coming soon",
40+
})}
41+
</h3>
42+
)}
4143

4244
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-10">
4345
{speakers

0 commit comments

Comments
 (0)