manifold/web/pages/index.tsx

21 lines
425 B
TypeScript
Raw Normal View History

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