frontend/pages/index.tsx

22 lines
483 B
TypeScript
Raw Normal View History

2022-08-26 15:28:20 +03:00
import type { NextPage } from 'next'
import Head from 'next/head'
import styles from '../styles/Home.module.css'
const Home: NextPage = () => {
return (
<div className={styles.container}>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className={styles.main}>
2022-08-26 15:31:17 +03:00
2022-08-26 15:28:20 +03:00
</main>
</div>
)
}
export default Home