refactor(pages): add content for index.tsx
This commit is contained in:
parent
3943d90bfc
commit
d5f46f080f
@ -1,4 +1,6 @@
|
|||||||
import type { NextPage } from 'next'
|
import type { NextPage } from 'next'
|
||||||
|
import { GitHub } from 'react-feather'
|
||||||
|
import Link from 'next/link'
|
||||||
|
|
||||||
import Head from 'components/Head/NextHead'
|
import Head from 'components/Head/NextHead'
|
||||||
|
|
||||||
@ -9,8 +11,23 @@ const Home: NextPage = () => {
|
|||||||
<main className={styles.application}>
|
<main className={styles.application}>
|
||||||
<Head />
|
<Head />
|
||||||
|
|
||||||
<p className={styles.message}>Hello Beautiful World of Coding !</p>
|
<p className={styles.title}>
|
||||||
<span className={styles.message}>Some sort of tests</span>
|
You feel a calming tranquility. <br />
|
||||||
|
<span className={styles.subtitle}>
|
||||||
|
You're filled with determination...
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<Link href='https://github.com/Walidoux'>
|
||||||
|
<a className={styles['redirect-link']}>
|
||||||
|
<GitHub />
|
||||||
|
<span className={styles.text}>Walidoux's Github</span>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
|
||||||
|
<video autoPlay loop muted playsInline className={styles.video}>
|
||||||
|
<source src='/videos/Background.m4v' type='video/mp4; codecs=hvc1' />
|
||||||
|
<source src='/videos/Background.webm' type='video/webm; codecs=vp9' />
|
||||||
|
</video>
|
||||||
</main>
|
</main>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user