accords-library.com/pages/index.tsx

21 lines
462 B
TypeScript
Raw Normal View History

2021-11-03 22:46:45 +00:00
import type { NextPage } from 'next'
import Head from 'next/head'
import Menu from '../components/menu'
2021-11-03 22:46:45 +00:00
const Home: NextPage = () => {
return (
<>
2021-11-03 22:46:45 +00:00
<Head>
<title>Accord&rsquo;s Library - Discover Analyse Translate Archive</title>
2021-11-03 22:46:45 +00:00
<meta name="description" content="Generated by create next app" />
2021-11-04 11:45:18 +00:00
<link rel="icon" href="/favicon.png" />
2021-11-03 22:46:45 +00:00
</Head>
<Menu></Menu>
</>
2021-11-03 22:46:45 +00:00
)
}
export default Home