Improve SEO descriptions
This commit is contained in:
parent
f3404b893d
commit
b3282c4302
|
@ -9,23 +9,23 @@ function MyApp({ Component, pageProps }: AppProps) {
|
|||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>Manifold Markets</title>
|
||||
<title>Manifold Markets — A market for every prediction</title>
|
||||
|
||||
<meta
|
||||
property="og:title"
|
||||
name="twitter:title"
|
||||
content="Manifold Markets"
|
||||
content="Manifold Markets — A market for every prediction"
|
||||
key="title"
|
||||
/>
|
||||
<meta
|
||||
name="description"
|
||||
content="Manifold Markets is creating better forecasting through user-created prediction markets."
|
||||
content="Manifold Markets lets you create a prediction market in under two minutes. Come trade on politics, memes, or anything that comes to mind."
|
||||
key="description1"
|
||||
/>
|
||||
<meta
|
||||
property="og:description"
|
||||
name="twitter:description"
|
||||
content="Manifold Markets is creating better forecasting through user-created prediction markets."
|
||||
content="Manifold Markets lets you create a prediction market in under two minutes. Come trade on politics, memes, or anything that comes to mind."
|
||||
key="description2"
|
||||
/>
|
||||
<meta property="og:url" content="https://manifold.markets" key="url" />
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import _ from 'lodash'
|
||||
import { SearchableGrid } from '../components/contracts-list'
|
||||
import { Page } from '../components/page'
|
||||
import { SEO } from '../components/SEO'
|
||||
import { useContracts } from '../hooks/use-contracts'
|
||||
import { useQueryAndSortParams } from '../hooks/use-sort-and-query-params'
|
||||
import { Contract, listAllContracts } from '../lib/firebase/contracts'
|
||||
|
@ -23,6 +24,11 @@ export default function Markets(props: { contracts: Contract[] }) {
|
|||
|
||||
return (
|
||||
<Page>
|
||||
<SEO
|
||||
title="Explore"
|
||||
description="Discover what's new, trending, or soon-to-close. Or search among our hundreds of markets."
|
||||
url="/markets"
|
||||
/>
|
||||
<SearchableGrid
|
||||
contracts={contracts}
|
||||
query={query}
|
||||
|
|
Loading…
Reference in New Issue
Block a user