2022-08-13 15:12:53 +02:00
|
|
|
import NextHead from 'components/NextHead'
|
2022-03-17 01:11:10 +01:00
|
|
|
import type { NextPage } from 'next'
|
2022-04-13 02:16:51 +02:00
|
|
|
import Link from 'next/link'
|
2022-05-16 14:25:01 +02:00
|
|
|
import useTranslation from 'next-translate/useTranslation'
|
2022-08-13 15:12:53 +02:00
|
|
|
import { FiGithub } from 'react-icons/fi'
|
2022-03-16 18:31:33 +01:00
|
|
|
|
2022-02-12 23:07:11 +01:00
|
|
|
const Home: NextPage = () => {
|
2022-05-16 14:25:01 +02:00
|
|
|
const { t } = useTranslation()
|
|
|
|
|
2022-03-16 18:31:33 +01:00
|
|
|
return (
|
2022-08-13 15:12:53 +02:00
|
|
|
<main className='flex min-h-screen max-w-full flex-col items-center justify-center bg-gradient-to-br from-primary to-secondary'>
|
2022-05-16 14:25:01 +02:00
|
|
|
<NextHead />
|
2022-04-05 05:08:50 +02:00
|
|
|
|
2022-08-13 15:12:53 +02:00
|
|
|
<p className='px-3 text-center text-4xl italic text-white'>
|
2022-05-16 14:25:01 +02:00
|
|
|
{t('home:title')} <br />
|
2022-08-13 15:12:53 +02:00
|
|
|
<span className='px-3 text-center text-lg italic text-white opacity-90'>
|
|
|
|
{t('home:subtitle')}
|
|
|
|
</span>
|
2022-04-13 02:16:51 +02:00
|
|
|
</p>
|
2022-08-13 15:12:53 +02:00
|
|
|
|
|
|
|
<Link href='https://github.com/Walidoux/next-app-boilerplate'>
|
|
|
|
<a className='mt-7 flex cursor-pointer items-center justify-center rounded-xl border-none bg-white bg-none py-[10px] px-6 font-semibold text-black no-underline outline-none transition duration-300 hover:bg-black hover:text-white'>
|
2022-05-16 14:25:01 +02:00
|
|
|
<FiGithub fontSize={20} />
|
2022-08-13 15:15:08 +02:00
|
|
|
<span className='ml-3'>{t('common:repo-github')}</span>
|
2022-04-13 02:16:51 +02:00
|
|
|
</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
|