manifold/web/components/landing-page-panel.tsx
2022-09-22 12:46:48 -07:00

63 lines
2.1 KiB
TypeScript

import Image from 'next/future/image'
import { SparklesIcon } from '@heroicons/react/solid'
import { Contract } from 'common/contract'
import { Spacer } from './layout/spacer'
import { firebaseLogin } from 'web/lib/firebase/users'
import { ContractsGrid } from './contract/contracts-grid'
import { Col } from './layout/col'
import { Row } from './layout/row'
import { withTracking } from 'web/lib/service/analytics'
import { useTracking } from 'web/hooks/use-tracking'
export function LandingPagePanel(props: { hotContracts: Contract[] }) {
const { hotContracts } = props
useTracking('view landing page')
return (
<>
<Col className="mb-6 rounded-xl sm:m-12 sm:mt-0">
<Image
height={250}
width={250}
className="self-center"
alt="Manifold logo"
src="/flappy-logo.gif"
/>
<div className="m-4 max-w-[550px] self-center">
<h1 className="text-3xl sm:text-6xl xl:text-6xl">
<div className="font-semibold sm:mb-2">
A{' '}
<span className="bg-gradient-to-r from-indigo-500 to-blue-500 bg-clip-text font-bold text-transparent">
market
</span>{' '}
for every question
</div>
</h1>
<Spacer h={6} />
<div className="mb-4 px-2 ">
Create a play-money prediction market on any topic you care about.
Trade with your friends to forecast the future.
<br />
</div>
</div>
<Spacer h={6} />
<button
className="self-center rounded-md border-none bg-gradient-to-r from-indigo-500 to-blue-500 py-4 px-6 text-lg font-semibold normal-case text-white hover:from-indigo-600 hover:to-blue-600"
onClick={withTracking(firebaseLogin, 'landing page button click')}
>
Get started
</button>{' '}
</Col>
<Row className="m-4 mb-6 items-center gap-1 text-xl font-semibold text-gray-800">
<SparklesIcon className="inline h-5 w-5" aria-hidden="true" />
Trending markets
</Row>
<ContractsGrid contracts={hotContracts?.slice(0, 10) || []} />
</>
)
}