bfd0af1c80
* new logo * Switch out mantis for crane in logos * White svg on dark background. Align correctly on landing page. * Mobile navbar: hide your name, write out Manifold Markets Co-authored-by: mantikoros <sgrugett@gmail.com>
49 lines
1.3 KiB
XML
49 lines
1.3 KiB
XML
import 'tailwindcss/tailwind.css'
|
|
import type { AppProps } from 'next/app'
|
|
import Head from 'next/head'
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Manifold Markets</title>
|
|
|
|
<meta
|
|
property="og:title"
|
|
name="twitter:title"
|
|
content="Manifold Markets"
|
|
key="title"
|
|
/>
|
|
<meta
|
|
name="description"
|
|
content="Manifold Markets is creating better forecasting through user-created prediction markets."
|
|
key="description1"
|
|
/>
|
|
<meta
|
|
property="og:description"
|
|
name="twitter:description"
|
|
content="Manifold Markets is creating better forecasting through user-created prediction markets."
|
|
key="description2"
|
|
/>
|
|
<meta property="og:url" content="https://manifold.markets" key="url" />
|
|
<meta name="twitter:card" content="summary" key="card" />
|
|
<meta name="twitter:site" content="@manifoldmarkets" />
|
|
<meta
|
|
property="og:image"
|
|
content="https://manifold.markets/logo-cover.png"
|
|
key="image1"
|
|
/>
|
|
<meta
|
|
name="twitter:image"
|
|
content="https://manifold.markets/logo-bg-white.png"
|
|
key="image2"
|
|
/>
|
|
</Head>
|
|
|
|
<Component {...pageProps} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default MyApp
|