diff --git a/web/pages/labs/index.tsx b/web/pages/labs/index.tsx
index f08a3b8e..6b39c59c 100644
--- a/web/pages/labs/index.tsx
+++ b/web/pages/labs/index.tsx
@@ -16,6 +16,12 @@ export default function LabsPage() {
className="-ml-4 flex w-auto"
columnClassName="pl-4 bg-clip-padding"
>
+
+
{CHALLENGES_ENABLED && (
-
+
+
diff --git a/web/pages/midterms.tsx b/web/pages/midterms.tsx
index d508743c..d1dfb509 100644
--- a/web/pages/midterms.tsx
+++ b/web/pages/midterms.tsx
@@ -1,4 +1,5 @@
import { Col } from 'web/components/layout/col'
+import { Spacer } from 'web/components/layout/spacer'
import { Page } from 'web/components/page'
import { Title } from 'web/components/title'
import {
@@ -75,23 +76,133 @@ const senateMidterms: StateElectionMarket[] = [
},
]
+const governorMidterms: StateElectionMarket[] = [
+ {
+ state: 'TX',
+ creatorUsername: 'LarsDoucet',
+ slug: 'republicans-will-win-the-2022-texas',
+ isWinRepublican: true,
+ },
+ {
+ state: 'GA',
+ creatorUsername: 'MattP',
+ slug: 'will-stacey-abrams-win-the-2022-geo',
+ isWinRepublican: false,
+ },
+ {
+ state: 'FL',
+ creatorUsername: 'Tetraspace',
+ slug: 'if-charlie-crist-is-the-democratic',
+ isWinRepublican: false,
+ },
+ {
+ state: 'PA',
+ creatorUsername: 'JonathanMast',
+ slug: 'will-josh-shapiro-win-the-2022-penn',
+ isWinRepublican: false,
+ },
+ {
+ state: 'PA',
+ creatorUsername: 'JonathanMast',
+ slug: 'will-josh-shapiro-win-the-2022-penn',
+ isWinRepublican: false,
+ },
+ {
+ state: 'CO',
+ creatorUsername: 'ScottLawrence',
+ slug: 'will-jared-polis-be-reelected-as-co',
+ isWinRepublican: false,
+ },
+ {
+ state: 'OR',
+ creatorUsername: 'Tetraspace',
+ slug: 'if-tina-kotek-is-the-2022-democrati',
+ isWinRepublican: false,
+ },
+ {
+ state: 'MD',
+ creatorUsername: 'Tetraspace',
+ slug: 'if-wes-moore-is-the-2022-democratic',
+ isWinRepublican: false,
+ },
+ {
+ state: 'AK',
+ creatorUsername: 'SG',
+ slug: 'will-a-republican-win-the-2022-alas',
+ isWinRepublican: true,
+ },
+ {
+ state: 'AZ',
+ creatorUsername: 'SG',
+ slug: 'will-a-republican-win-the-2022-ariz',
+ isWinRepublican: true,
+ },
+ {
+ state: 'AZ',
+ creatorUsername: 'SG',
+ slug: 'will-a-republican-win-the-2022-ariz',
+ isWinRepublican: true,
+ },
+ {
+ state: 'WI',
+ creatorUsername: 'SG',
+ slug: 'will-a-democrat-win-the-2022-wiscon',
+ isWinRepublican: false,
+ },
+ {
+ state: 'NV',
+ creatorUsername: 'SG',
+ slug: 'will-a-democrat-win-the-2022-nevada',
+ isWinRepublican: false,
+ },
+ {
+ state: 'KS',
+ creatorUsername: 'SG',
+ slug: 'will-a-democrat-win-the-2022-kansas',
+ isWinRepublican: false,
+ },
+ {
+ state: 'NV',
+ creatorUsername: 'SG',
+ slug: 'will-a-democrat-win-the-2022-new-me',
+ isWinRepublican: false,
+ },
+ {
+ state: 'ME',
+ creatorUsername: 'SG',
+ slug: 'will-a-democrat-win-the-2022-maine',
+ isWinRepublican: false,
+ },
+]
+
const App = () => {
return (
-
+
+ Senate
-
-
- Related markets
+
+ Governors
+
+
+
+ House
-
+
+ Related markets
+
+
+
+
)