accords-library.com/pages/index.tsx

28 lines
597 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 styles from '../styles/Home.module.css'
2021-11-04 11:45:18 +00:00
import MainMenu from '../components/mainmenu'
2021-11-03 22:46:45 +00:00
const Home: NextPage = () => {
return (
<div className={styles.container}>
<Head>
<title>Create Next App</title>
<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>
2021-11-04 11:45:18 +00:00
<MainMenu></MainMenu>
2021-11-03 22:46:45 +00:00
2021-11-04 11:45:18 +00:00
<div className={styles.submenu}></div>
2021-11-03 22:46:45 +00:00
2021-11-04 11:45:18 +00:00
<main className={styles.main}>
2021-11-03 22:46:45 +00:00
</main>
</div>
)
}
export default Home