manifold/web/pages/markets.tsx
2022-05-05 16:17:25 -04:00

17 lines
463 B
TypeScript

import { ContractSearch } from '../components/contract-search'
import { Page } from '../components/page'
import { SEO } from '../components/SEO'
// TODO: Rename endpoint to "Explore"
export default function Markets() {
return (
<Page>
<SEO
title="Explore"
description="Discover what's new, trending, or soon-to-close. Or search among our hundreds of markets."
url="/markets"
/>
<ContractSearch />
</Page>
)
}