e8ab863557
* Add algolia and instantsearch packages * Switch to hooks-web package * Implement algolia search! * Fix types * Fix tags page * Closed sort option * Implement select for filtering on open, closed, resolved, all. * Support search in dev environment * Fix runtime error in landing page
18 lines
464 B
TypeScript
18 lines
464 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>
|
|
)
|
|
}
|