manifold/web/pages/markets.tsx

18 lines
464 B
TypeScript
Raw Normal View History

import { ContractSearch } from '../components/contract-search'
import { Page } from '../components/page'
import { SEO } from '../components/SEO'
2021-12-19 05:59:34 +00:00
// TODO: Rename endpoint to "Explore"
export default function Markets() {
return (
<Page>
2022-01-19 17:57:35 +00:00
<SEO
title="Explore"
description="Discover what's new, trending, or soon-to-close. Or search among our hundreds of markets."
url="/markets"
/>
2022-07-07 20:55:28 +00:00
<ContractSearch />
</Page>
)
}