18 lines
466 B
TypeScript
18 lines
466 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 thousands of prediction markets."
|
|
url="/markets"
|
|
/>
|
|
<ContractSearch />
|
|
</Page>
|
|
)
|
|
}
|