import React from 'react' import { LightningBoltIcon, ScaleIcon, UserCircleIcon, BeakerIcon, ArrowDownIcon, } from '@heroicons/react/outline' import { firebaseLogin } from '../lib/firebase/users' import { ContractsGrid } from '../components/contract/contracts-list' import { Col } from '../components/layout/col' import Link from 'next/link' import { Contract } from '../lib/firebase/contracts' export default function LandingPage(props: { hotContracts: Contract[] }) { const { hotContracts } = props return (
) } const scrollToAbout = () => { const aboutElem = document.getElementById('about') window.scrollTo({ top: aboutElem?.offsetTop, behavior: 'smooth' }) } function Hero() { return (

Create your own
prediction markets

Better forecasting through accessible prediction markets
for you and your community

) } function FeaturesSection() { const features = [ { name: 'Easy to participate', description: 'Sign up for free and make your own predictions in seconds!', icon: UserCircleIcon, }, { name: 'Play money, real results', description: 'Get accurate predictions by betting with Manifold Dollars, our virtual currency.', icon: LightningBoltIcon, }, { name: 'Creator-driven markets', description: 'Resolve markets you create with your own judgment—enabling new markets with subjective or personal questions.', icon: ScaleIcon, }, { name: 'Become smarter', description: 'Bet on questions that matter and share the forecasts. With better information, we can all make better decisions.', icon: BeakerIcon, }, ] return (

Manifold Markets

Better forecasting for everyone

The easiest way to get an accurate forecast on anything

{features.map((feature) => (

{feature.name}

{feature.description}
))}
Learn more
) } function ExploreMarketsSection(props: { hotContracts: Contract[] }) { const { hotContracts } = props return (

Today's top markets

) }