refactor(pages): add content for the index page
This commit is contained in:
parent
a5a041cabf
commit
226b1542bb
@ -1,12 +1,17 @@
|
||||
import type { NextPage } from 'next'
|
||||
|
||||
import Head from '../components/Head/NextHead'
|
||||
import Head from 'components/Head/NextHead'
|
||||
|
||||
import styles from '../styles/pages/home.module.scss'
|
||||
|
||||
const Home: NextPage = () => {
|
||||
return (
|
||||
<>
|
||||
<main className={styles.application}>
|
||||
<Head />
|
||||
</>
|
||||
|
||||
<p className={styles.message}>Hello Beautiful World of Coding !</p>
|
||||
<span className={styles.message}>Some sort of tests</span>
|
||||
</main>
|
||||
)
|
||||
}
|
||||
|
||||
|
7
styles/pages/home.module.scss
Normal file
7
styles/pages/home.module.scss
Normal file
@ -0,0 +1,7 @@
|
||||
@import 'typographies';
|
||||
|
||||
.application {
|
||||
@extend %title;
|
||||
|
||||
position: relative;
|
||||
}
|
Loading…
Reference in New Issue
Block a user