manifold/web/pages/_app.tsx

44 lines
1.2 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>Mantic Markets</title>
<meta
property="og:title"
name="twitter:title"
content="Mantic Markets"
key="title"
/>
<meta
name="description"
content="Mantic 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="Mantic 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
/>
2021-12-16 18:40:23 +00:00
<meta property="og:url" content="https://mantic.markets" key="url" />
2021-12-16 04:52:07 +00:00
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@manticmarkets" />
<meta
property="og:image"
name="twitter:image"
content="https://mantic.markets/logo-cover.png"
/>
</Head>
<Component {...pageProps} />
</>
)
}
export default MyApp