import { Popover } from '@headlessui/react' import Link from 'next/link' import { useUser } from '../hooks/use-user' import { firebaseLogin } from '../lib/firebase/users' const navigation = [ { name: 'About', href: 'https://mantic.notion.site/About-Mantic-Markets-46a1a0fb6e294011a8b6b582e276359f', }, { name: 'Simulator', href: '/simulator' }, ] function SignInLink() { const user = useUser() return ( <> {user ? ( <> Create a market {user.name} ) : ( )} ) } export function Header() { return (
) }