import React from 'react' import { LightningBoltIcon, ScaleIcon, UserCircleIcon, BeakerIcon, ArrowDownIcon, } from '@heroicons/react/outline' import { firebaseLogin } from '../lib/firebase/users' import { useContracts } from '../hooks/use-contracts' import { SearchableGrid } from '../components/contracts-list' import { Col } from '../components/layout/col' import { NavBar } from '../components/nav-bar' import Link from 'next/link' import { useQueryAndSortParams } from '../hooks/use-sort-and-query-params' export default function LandingPage() { return (
) } const scrollToAbout = () => { const aboutElem = document.getElementById('about') window.scrollTo({ top: aboutElem?.offsetTop, behavior: 'smooth' }) } function Hero() { return (
About

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() { const contracts = useContracts() const { query, setQuery, sort, setSort } = useQueryAndSortParams() return (

Explore our markets

) }