2022-10-02 19:49:08 +00:00
|
|
|
import { CHALLENGES_ENABLED } from 'common/challenge'
|
2022-10-02 18:42:43 +00:00
|
|
|
import Masonry from 'react-masonry-css'
|
|
|
|
import { Page } from 'web/components/page'
|
|
|
|
import { SiteLink } from 'web/components/site-link'
|
|
|
|
import { Title } from 'web/components/title'
|
|
|
|
|
|
|
|
export default function LabsPage() {
|
|
|
|
return (
|
2022-10-02 19:12:33 +00:00
|
|
|
<Page className="px-4">
|
2022-10-02 18:42:43 +00:00
|
|
|
<Title text="Manifold Labs" />
|
|
|
|
|
|
|
|
<Masonry
|
|
|
|
breakpointCols={{ default: 2, 768: 1 }}
|
|
|
|
className="-ml-4 flex w-auto"
|
|
|
|
columnClassName="pl-4 bg-clip-padding"
|
|
|
|
>
|
2022-10-02 19:49:08 +00:00
|
|
|
{CHALLENGES_ENABLED && (
|
|
|
|
<LabCard
|
|
|
|
title="Challenges"
|
|
|
|
description="One-on-one bets between friends"
|
|
|
|
href="/challenges"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
|
2022-10-02 18:42:43 +00:00
|
|
|
<LabCard
|
|
|
|
title="Dating docs"
|
|
|
|
description="Browse dating docs or create your own"
|
|
|
|
href="/date-docs"
|
|
|
|
/>
|
2022-10-02 18:51:42 +00:00
|
|
|
<LabCard
|
|
|
|
title="Senate race"
|
|
|
|
description="See the state-by-state breakdown of the US Senate midterm elections"
|
|
|
|
href="/midterms"
|
|
|
|
/>
|
|
|
|
<LabCard
|
|
|
|
title="Magic the Guessering"
|
|
|
|
description="How well can you match these card names to their art?"
|
|
|
|
href="/mtg"
|
|
|
|
/>
|
|
|
|
<LabCard title="Cowp" description="???" href="/cowp" />
|
2022-10-02 18:42:43 +00:00
|
|
|
</Masonry>
|
|
|
|
</Page>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const LabCard = (props: {
|
|
|
|
title: string
|
|
|
|
description: string
|
|
|
|
href: string
|
|
|
|
}) => {
|
|
|
|
const { title, description, href } = props
|
|
|
|
return (
|
|
|
|
<SiteLink
|
|
|
|
href={href}
|
2022-10-02 18:51:42 +00:00
|
|
|
className="group mb-4 flex flex-col gap-2 rounded-lg bg-white p-4 shadow-md transition-shadow duration-200 hover:no-underline hover:shadow-lg"
|
2022-10-02 18:42:43 +00:00
|
|
|
>
|
|
|
|
<h3 className="text-lg font-semibold group-hover:underline group-hover:decoration-indigo-400 group-hover:decoration-2">
|
|
|
|
{title}
|
|
|
|
</h3>
|
2022-10-02 18:51:42 +00:00
|
|
|
<p className="text-gray-600">{description}</p>
|
2022-10-02 18:42:43 +00:00
|
|
|
</SiteLink>
|
|
|
|
)
|
|
|
|
}
|