manifold/web/pages/index.tsx
2021-12-01 18:22:45 -06:00

21 lines
421 B
TypeScript

import type { NextPage } from 'next'
import Head from 'next/head'
import React from 'react'
import LandingPage from './landing-page'
const Home: NextPage = () => {
return (
<div>
<Head>
<title>Mantic Markets</title>
<meta name="description" content="Create and bet" />
<link rel="icon" href="/favicon.ico" />
</Head>
<LandingPage />
</div>
)
}
export default Home