mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
22 lines
578 B
TypeScript
22 lines
578 B
TypeScript
import { Container, Text, Title } from '@mantine/core';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { FeatureList } from '~/components/home/feature_list';
|
|
import classes from './home.module.css';
|
|
|
|
export default function HomePage() {
|
|
const { t } = useTranslation('about');
|
|
return (
|
|
<Container className={classes.wrapper}>
|
|
<Title className={classes.title}>{t('hero.title')}</Title>
|
|
|
|
<Container size={560} p={0}>
|
|
<Text size="sm" className={classes.description}>
|
|
{t('description')}
|
|
</Text>
|
|
</Container>
|
|
|
|
<FeatureList />
|
|
</Container>
|
|
);
|
|
}
|