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

2022-08-31 21:44:33 +02:00
import type { 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
2022-03-16 12:18:09 +01:00
import { Head } from '../components/Head'
import { Header } from '../components/Header'
import { Main } from '../components/design/Main'
2022-08-31 21:44:33 +02:00
import type { FooterProps } from '../components/Footer'
import { Footer } from '../components/Footer'
2022-03-16 12:18:09 +01:00
import { SocialMediaLink } from '../components/design/SocialMediaButton'
import { ButtonLink } from '../components/design/Button'
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 (
2022-12-13 22:31:32 +01:00
<>
2021-10-24 05:19:39 +02:00
<Head />
<Header />
2021-10-24 05:48:06 +02:00
<Main>
<div className='flex w-4/5 flex-col items-center'>
<div className='max-w-xs'>
2021-10-24 05:19:39 +02:00
<Link href='/authentication/signup'>
2022-12-13 11:38:07 +01:00
<Image
quality={100}
width={351}
height={341}
src='/images/svg/design/home.svg'
alt={"Thream's chat app"}
priority
/>
2021-10-24 05:19:39 +02:00
</Link>
</div>
<div className='text-center'>
<h1 className='my-4 font-headline text-3xl font-medium text-green-800 dark:text-green-400'>
2021-10-24 05:48:06 +02:00
Thream
</h1>
<div
className='max-w-lg font-paragraph text-lg'
2021-10-24 05:48:06 +02:00
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='font-bold text-green-800 dark:text-green-400'
2021-10-24 05:48:06 +02:00
key='bold'
/>
]}
2021-10-24 05:19:39 +02:00
/>
</div>
<div className='mt-8 flex items-center justify-center space-x-4 text-center'>
2022-12-13 11:38:07 +01:00
<Link href='/authentication/signup' passHref legacyBehavior>
<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} />
2022-12-13 22:31:32 +01:00
</>
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