2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/pages/index.tsx

84 lines
2.6 KiB
TypeScript
Raw Normal View History

2021-12-28 16:06:58 +01:00
import { GetStaticProps, NextPage } from 'next'
2021-10-24 05:19:39 +02:00
import Link from 'next/link'
import Image from 'next/image'
import Translation from 'next-translate/Trans'
2021-10-24 05:48:06 +02:00
import useTranslation from 'next-translate/useTranslation'
2021-10-24 05:19:39 +02:00
import { Head } from 'components/Head'
import { Header } from 'components/Header'
2021-10-24 05:48:06 +02:00
import { Main } from 'components/design/Main'
import { Footer, FooterProps } from 'components/Footer'
import { SocialMediaLink } from 'components/design/SocialMediaButton'
import { ButtonLink } from 'components/design/Button'
2021-10-24 05:48:06 +02:00
import { ScrollableBody } from 'components/ScrollableBody'
2021-10-24 05:19:39 +02:00
2021-12-28 16:06:58 +01:00
const Home: NextPage<FooterProps> = (props) => {
2021-10-24 05:19:39 +02:00
const { t } = useTranslation()
const { version } = props
2021-10-24 05:19:39 +02:00
return (
2021-10-24 05:48:06 +02:00
<ScrollableBody>
2021-10-24 05:19:39 +02:00
<Head />
<Header />
2021-10-24 05:48:06 +02:00
<Main>
<div className='flex flex-col items-center w-4/5'>
<div className='max-w-xs'>
2021-10-24 05:19:39 +02:00
<Link href='/authentication/signup'>
<a>
<Image
width={351}
height={341}
src='/images/svg/design/home.svg'
alt={"Thream's chat app"}
/>
</a>
</Link>
</div>
<div className='text-center'>
2021-10-24 05:48:06 +02:00
<h1 className='my-4 text-3xl font-medium font-headline text-green-800 dark:text-green-400'>
Thream
</h1>
<div
className='font-paragraph text-lg max-w-lg'
data-cy='main-description'
>
2021-10-24 05:19:39 +02:00
<Translation
i18nKey='home:description'
2021-10-24 05:48:06 +02:00
components={[
<strong
className='text-green-800 dark:text-green-400 font-bold'
key='bold'
/>
]}
2021-10-24 05:19:39 +02:00
/>
</div>
2021-10-24 05:48:06 +02:00
<div className='flex justify-center items-center text-center mt-8 space-x-4'>
<Link href='/authentication/signup' passHref>
<ButtonLink data-cy='get-started'>
{t('home:get-started')}
</ButtonLink>
</Link>
<SocialMediaLink
socialMedia='GitHub'
2021-10-24 05:48:06 +02:00
href='https://github.com/Thream'
target='_blank'
rel='noopener noreferrer'
/>
2021-10-24 05:48:06 +02:00
</div>
</div>
</div>
2021-10-24 05:48:06 +02:00
</Main>
<Footer version={version} />
2021-10-24 05:48:06 +02:00
</ScrollableBody>
2021-10-24 05:19:39 +02:00
)
}
export const getStaticProps: GetStaticProps<FooterProps> = async () => {
const { readPackage } = await import('read-pkg')
const { version } = await readPackage()
return { props: { version } }
2021-10-24 05:19:39 +02:00
}
export default Home