accords-library.com/pages/library.tsx

21 lines
412 B
TypeScript
Raw Normal View History

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