2021-12-02 23:49:46 +00:00
|
|
|
import type { NextPage } from 'next'
|
|
|
|
import Head from 'next/head'
|
|
|
|
import React from 'react'
|
|
|
|
import { Hero } from '../components/hero'
|
2021-12-01 04:20:13 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2021-12-01 04:20:13 +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"
|
|
|
|
/>
|
2021-12-01 04:20:13 +00:00
|
|
|
</Head>
|
|
|
|
|
2021-12-02 23:44:03 +00:00
|
|
|
<Hero />
|
2021-12-01 04:20:13 +00:00
|
|
|
</div>
|
2021-12-02 23:49:46 +00:00
|
|
|
)
|
|
|
|
}
|
2021-12-01 04:20:13 +00:00
|
|
|
|
2021-12-02 23:49:46 +00:00
|
|
|
export default Home
|