refactor(pages): add content for the index page

This commit is contained in:
Walid 2022-04-05 03:08:50 +00:00
parent a5a041cabf
commit 226b1542bb
No known key found for this signature in database
GPG Key ID: 4BDA1ABD227F9279
2 changed files with 15 additions and 3 deletions

View File

@ -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>
)
}

View File

@ -0,0 +1,7 @@
@import 'typographies';
.application {
@extend %title;
position: relative;
}