import { Fragment } from 'react' import { Popover, Transition } from '@headlessui/react' import { MenuIcon, XIcon } from '@heroicons/react/outline' const navigation = [ { name: 'Product', href: '#' }, { name: 'Features', href: '#' }, { name: 'Marketplace', href: '#' }, { name: 'Company', href: '#' }, ] export const Hero = () => { return (
{/*
*/}
Close menu
{navigation.map((item) => ( {item.name} ))}

Existing customer?{' '} Login

{/* We're hiring Visit our careers page */}

Create your own prediction markets

Create and resolve your own prediction markets to earn a percent of the bet volume. Powered by Solana smart contracts.

{/*

Start your free 14-day trial, no credit card necessary. By providing your email, you agree to our{' '} terms of service .

*/}
{/*
*/}
) }