2022-03-17 01:11:10 +01:00
|
|
|
import type { NextPage } from 'next'
|
2022-04-13 02:16:51 +02:00
|
|
|
import { GitHub } from 'react-feather'
|
|
|
|
import Link from 'next/link'
|
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
|
|
|
|
2022-04-13 02:16:51 +02:00
|
|
|
<p className={styles.title}>
|
2022-04-18 20:17:31 +02:00
|
|
|
You feel a calming tranquility... <br />
|
2022-04-13 02:16:51 +02:00
|
|
|
<span className={styles.subtitle}>
|
2022-04-18 20:17:31 +02:00
|
|
|
You're filled with determination.
|
2022-04-13 02:16:51 +02:00
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
<Link href='https://github.com/Walidoux'>
|
2022-04-18 20:17:31 +02:00
|
|
|
<a className={styles['redirect-link']} target='_blank'>
|
2022-04-13 02:16:51 +02:00
|
|
|
<GitHub />
|
|
|
|
<span className={styles.text}>Walidoux's Github</span>
|
|
|
|
</a>
|
|
|
|
</Link>
|
2022-04-05 05:08:50 +02:00
|
|
|
</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
|