manifold/web/pages/_app.tsx

49 lines
1.3 KiB
TypeScript
Raw Normal View History

import 'tailwindcss/tailwind.css'
import type { AppProps } from 'next/app'
2021-12-16 04:52:07 +00:00
import Head from 'next/head'
function MyApp({ Component, pageProps }: AppProps) {
2021-12-16 04:52:07 +00:00
return (
<>
<Head>
<title>Manifold Markets</title>
2021-12-16 04:52:07 +00:00
<meta
property="og:title"
name="twitter:title"
content="Manifold Markets"
2021-12-16 04:52:07 +00:00
key="title"
/>
<meta
name="description"
content="Manifold Markets is creating better forecasting through user-created prediction markets."
2021-12-16 18:40:23 +00:00
key="description1"
2021-12-16 04:52:07 +00:00
/>
<meta
property="og:description"
name="twitter:description"
content="Manifold Markets is creating better forecasting through user-created prediction markets."
2021-12-16 18:40:23 +00:00
key="description2"
2021-12-16 04:52:07 +00:00
/>
<meta property="og:url" content="https://manifold.markets" key="url" />
<meta name="twitter:card" content="summary" key="card" />
<meta name="twitter:site" content="@manifoldmarkets" />
2021-12-16 04:52:07 +00:00
<meta
property="og:image"
content="https://manifold.markets/logo-cover.png"
key="image1"
2022-01-07 03:54:11 +00:00
/>
<meta
2021-12-16 04:52:07 +00:00
name="twitter:image"
content="https://manifold.markets/logo-bg-white.png"
key="image2"
2021-12-16 04:52:07 +00:00
/>
</Head>
<Component {...pageProps} />
</>
)
}
export default MyApp