manifold/web/pages/index.tsx

60 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-12-03 01:18:00 +00:00
import React from 'react'
2022-01-23 00:16:23 +00:00
import Router from 'next/router'
2022-05-07 23:44:01 +00:00
import { Contract, getContractsBySlugs } from '../lib/firebase/contracts'
import { Page } from '../components/page'
2022-01-23 00:16:23 +00:00
import { FeedPromo } from '../components/feed-create'
import { Col } from '../components/layout/col'
import { useUser } from '../hooks/use-user'
import { ManifoldLogo } from '../components/nav/manifold-logo'
2021-12-19 05:59:34 +00:00
export async function getStaticProps() {
2022-05-07 23:44:01 +00:00
const hotContracts = await getContractsBySlugs([
'if-boris-johnson-is-leader-of-the-c',
'will-ethereum-merge-to-proofofstake',
'will-russia-control-the-majority-of',
'will-elon-musk-buy-twitter-this-yea',
'will-an-ai-get-gold-on-any-internat',
'how-many-us-supreme-court-justices',
'who-will-win-the-nba-finals-champio',
'what-database-will-manifold-be-prim',
])
2021-12-19 05:59:34 +00:00
return {
2022-01-23 00:16:23 +00:00
props: { hotContracts },
2021-12-19 05:59:34 +00:00
revalidate: 60, // regenerate after a minute
}
}
2022-01-23 00:16:23 +00:00
const Home = (props: { hotContracts: Contract[] }) => {
const { hotContracts } = props
const user = useUser()
2022-01-23 00:16:23 +00:00
if (user) {
Router.replace('/home')
return <></>
}
return (
<Page assertUser="signed-out">
<div className="px-4 pt-2 md:mt-0 lg:hidden">
<ManifoldLogo />
</div>
<Col className="items-center">
<Col className="max-w-3xl">
<FeedPromo hotContracts={hotContracts ?? []} />
{/* <p className="mt-6 text-gray-500">
2022-03-25 05:53:12 +00:00
View{' '}
<SiteLink href="/markets" className="font-bold text-gray-700">
all markets
</SiteLink>
</p> */}
</Col>
</Col>
</Page>
2022-01-05 06:32:52 +00:00
)
}
export default Home