2022-01-11 06:16:58 +00:00
|
|
|
import Link from 'next/link'
|
|
|
|
import clsx from 'clsx'
|
|
|
|
|
2022-01-23 00:16:23 +00:00
|
|
|
import { useUser } from '../hooks/use-user'
|
|
|
|
|
2022-01-18 19:16:35 +00:00
|
|
|
export function ManifoldLogo(props: {
|
|
|
|
className?: string
|
|
|
|
darkBackground?: boolean
|
|
|
|
}) {
|
|
|
|
const { darkBackground, className } = props
|
2022-01-11 06:16:58 +00:00
|
|
|
|
2022-01-23 00:16:23 +00:00
|
|
|
const user = useUser()
|
|
|
|
|
2022-01-11 06:16:58 +00:00
|
|
|
return (
|
2022-01-23 00:16:23 +00:00
|
|
|
<Link href={user ? '/home' : '/'}>
|
2022-02-11 18:40:22 +00:00
|
|
|
<a className={clsx('flex flex-shrink-0 flex-row gap-4', className)}>
|
2022-01-27 22:50:55 +00:00
|
|
|
<img
|
2022-02-11 18:40:22 +00:00
|
|
|
className="transition-all hover:rotate-12"
|
2022-01-11 06:16:58 +00:00
|
|
|
src={darkBackground ? '/logo-white.svg' : '/logo.svg'}
|
|
|
|
width={45}
|
|
|
|
height={45}
|
|
|
|
/>
|
2022-03-02 01:18:46 +00:00
|
|
|
<img src={'/theoremone/TheoremOne-Logo.svg'} width={245} height={45} />
|
2022-01-11 06:16:58 +00:00
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
)
|
|
|
|
}
|