manifold/web/pages/index.tsx

38 lines
1.2 KiB
TypeScript
Raw Normal View History

import type { NextPage } from 'next'
import Head from 'next/head'
import React from 'react'
import { Hero } from '../components/hero'
const Home: NextPage = () => {
return (
<div>
<Head>
<title>Mantic Markets</title>
2021-12-03 00:33:33 +00:00
<meta property="og:title" name="twitter:title" content="Mantic Markets" />
2021-12-03 00:43:02 +00:00
<meta name="description" content="Decentralized user-created prediction markets on Solana" />
<meta property="og:description" name="twitter:description" content="Decentralized user-created prediction markets on Solana" />
2021-12-03 00:33:33 +00:00
<meta property="og:url" content="https://mantic.markets" />
2021-12-03 00:43:02 +00:00
<meta property="og:image" name="twitter:image" content="https://mantic.markets/logo-cover.png" />
2021-12-03 00:33:33 +00:00
<link rel="icon" href="/favicon.ico" />
2021-12-02 23:21:43 +00:00
<link rel="preconnect" href="https://fonts.googleapis.com" />
2021-12-02 23:53:21 +00:00
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossOrigin="true"
/>
2021-12-02 23:39:11 +00:00
<link
href="https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap"
rel="stylesheet"
/>
</Head>
2021-12-02 23:44:03 +00:00
<Hero />
</div>
)
}
export default Home