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 (
{/*
*/}
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.
{/*
Start your free 14-day trial, no credit card necessary. By providing your email, you agree to
our{' '}
terms of service
.
*/}
{/*
*/}
)
}
const NetilfyForm = (props: {
children: any
} & Partial>) => {
const { children, ...other } = props
return (
)
}