manifold/web/pages/index.tsx

19 lines
362 B
TypeScript

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