2021-12-02 23:39:11 +00:00
|
|
|
import type { NextPage } from "next";
|
|
|
|
import Head from "next/head";
|
|
|
|
import React from "react";
|
|
|
|
import LandingPage from "./landing-page";
|
2021-12-01 04:20:13 +00:00
|
|
|
|
|
|
|
const Home: NextPage = () => {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Head>
|
|
|
|
<title>Mantic Markets</title>
|
|
|
|
<meta name="description" content="Create and bet" />
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
2021-12-02 23:21:43 +00:00
|
|
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
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-01 19:58:00 +00:00
|
|
|
<LandingPage />
|
2021-12-01 04:20:13 +00:00
|
|
|
</div>
|
2021-12-02 23:39:11 +00:00
|
|
|
);
|
|
|
|
};
|
2021-12-01 04:20:13 +00:00
|
|
|
|
2021-12-02 23:39:11 +00:00
|
|
|
export default Home;
|