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 { Header } from '../components/header' import Link from 'next/link' export default function LandingPage() { return (
) } function Hero() { const scrollToAbout = () => { const aboutElem = document.getElementById('about') window.scrollTo({ top: aboutElem?.offsetTop, behavior: 'smooth' }) } 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 Mantic 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 (

Mantic 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() return (

Explore our markets

) }