2022-03-17 01:11:10 +01:00
|
|
|
import type { NextPage } from 'next'
|
2022-02-12 23:07:11 +01:00
|
|
|
|
2022-04-05 05:08:50 +02:00
|
|
|
import Head from 'components/Head/NextHead'
|
|
|
|
|
|
|
|
import styles from '../styles/pages/home.module.scss'
|
2022-03-16 18:31:33 +01:00
|
|
|
|
2022-02-12 23:07:11 +01:00
|
|
|
const Home: NextPage = () => {
|
2022-03-16 18:31:33 +01:00
|
|
|
return (
|
2022-04-05 05:08:50 +02:00
|
|
|
<main className={styles.application}>
|
2022-03-16 18:31:33 +01:00
|
|
|
<Head />
|
2022-04-05 05:08:50 +02:00
|
|
|
|
|
|
|
<p className={styles.message}>Hello Beautiful World of Coding !</p>
|
|
|
|
<span className={styles.message}>Some sort of tests</span>
|
|
|
|
</main>
|
2022-03-17 01:11:10 +01:00
|
|
|
)
|
|
|
|
}
|
2022-02-12 23:07:11 +01:00
|
|
|
|
2022-03-17 01:11:10 +01:00
|
|
|
export default Home
|