manifold/web/components/market-intro-panel.tsx

28 lines
632 B
TypeScript
Raw Normal View History

2022-09-12 22:30:51 +00:00
import Image from 'next/future/image'
import { Col } from './layout/col'
import { BetSignUpPrompt } from './sign-up-prompt'
export function MarketIntroPanel() {
return (
<Col>
<div className="text-xl">Play-money predictions</div>
<Image
2022-09-14 02:11:53 +00:00
height={125}
width={125}
className="my-4 self-center"
src="/welcome/manipurple.png"
alt="Manifold Markets gradient logo"
2022-09-12 22:30:51 +00:00
/>
2022-09-12 22:35:32 +00:00
<div className="mb-4 text-sm">
Manifold Markets is a play-money prediction market platform where you
can forecast anything.
2022-09-12 22:30:51 +00:00
</div>
<BetSignUpPrompt />
</Col>
2022-09-14 02:23:36 +00:00
)
2022-09-12 22:30:51 +00:00
}