next-app-boilerplate/pages/index.tsx

31 lines
778 B
TypeScript
Raw Normal View History

import type { NextPage } from 'next'
import { GitHub } from 'react-feather'
import Link from 'next/link'
2022-02-12 23:07:11 +01:00
import Head from 'components/Head/NextHead'
import styles from '../styles/pages/home.module.scss'
2022-02-12 23:07:11 +01:00
const Home: NextPage = () => {
return (
<main className={styles.application}>
<Head />
<p className={styles.title}>
You feel a calming tranquility... <br />
<span className={styles.subtitle}>
You&apos;re filled with determination.
</span>
</p>
<Link href='https://github.com/Walidoux'>
<a className={styles['redirect-link']} target='_blank'>
<GitHub />
<span className={styles.text}>Walidoux&apos;s Github</span>
</a>
</Link>
</main>
)
}
2022-02-12 23:07:11 +01:00
export default Home