diff --git a/web/pages/tournaments/index.tsx b/web/pages/tournaments/index.tsx index e9645957..7b1d8ceb 100644 --- a/web/pages/tournaments/index.tsx +++ b/web/pages/tournaments/index.tsx @@ -99,13 +99,6 @@ const tourneys: Tourney[] = [ endTime: toDate('Jan 6, 2023'), groupId: 'SxGRqXRpV3RAQKudbcNb', }, - { - title: 'SF 2022 Ballot', - blurb: 'Which ballot initiatives will pass this year in SF and CA?', - award: '', - endTime: toDate('Nov 8, 2022'), - groupId: 'VkWZyS5yxs8XWUJrX9eq', - }, // { // title: 'Clearer Thinking Regrant Project', // blurb: 'Something amazing', @@ -113,6 +106,27 @@ const tourneys: Tourney[] = [ // endTime: toDate('Sep 22, 2022'), // groupId: '2VsVVFGhKtIdJnQRAXVb', // }, + + // Tournaments without awards get featured belows + { + title: 'SF 2022 Ballot', + blurb: 'Which ballot initiatives will pass this year in SF and CA?', + endTime: toDate('Nov 8, 2022'), + groupId: 'VkWZyS5yxs8XWUJrX9eq', + }, + + { + title: '2024 Democratic Nominees', + blurb: 'How would different Democratic candidates fare in 2024?', + endTime: toDate('Nov 2, 2024'), + groupId: 'gFhjgFVrnYeFYfxhoLNn', + }, + { + title: 'Private Tech Companies', + blurb: 'What will these companies exit for?', + endTime: toDate('Dec 31, 2030'), + groupId: 'faNUnphw6Eoq7OJBRJds', + }, ] type SectionInfo = { @@ -144,19 +158,22 @@ export default function TournamentPage(props: { sections: SectionInfo[] }) { description="Win money by betting in forecasting touraments on current events, sports, science, and more" /> - {sections.map(({ tourney, slug, numPeople }) => ( -
- - {tourney.blurb} - -
- ))} + {sections.map( + ({ tourney, slug, numPeople }) => + tourney.award && ( +
+ + {tourney.blurb} + +
+ ) + )}
{Salem.blurb}
+ + {/* Title break */} +
+ + + {sections.map( + ({ tourney, slug, numPeople }) => + !tourney.award && ( +
+ + {tourney.blurb} + +
+ ) + )} )