Files
Homarr/src/components/Settings/Common/Credits.tsx

28 lines
651 B
TypeScript
Raw Normal View History

2023-01-06 01:11:02 +09:00
import { Group, Anchor, Text } from '@mantine/core';
2022-08-22 09:50:54 +02:00
import { useTranslation } from 'next-i18next';
2022-08-18 21:46:46 +02:00
2022-12-04 17:36:30 +01:00
export default function Credits() {
2022-08-22 09:50:54 +02:00
const { t } = useTranslation('settings/common');
2022-06-28 11:06:45 +02:00
return (
2022-08-02 02:21:04 +02:00
<Group position="center" mt="xs">
2023-01-04 22:39:58 +09:00
<Text
style={{
fontSize: '0.90rem',
textAlign: 'center',
color: 'gray',
}}
>
{t('credits.madeWithLove')}
<Anchor
href="https://github.com/ajnart"
style={{ color: 'inherit', fontStyle: 'inherit', fontSize: 'inherit' }}
2022-06-28 11:06:45 +02:00
>
2023-01-04 22:39:58 +09:00
ajnart
2023-01-06 01:11:02 +09:00
</Anchor>{' '}
2023-01-13 11:10:09 +00:00
and you!
2023-01-04 22:39:58 +09:00
</Text>
2022-06-28 11:06:45 +02:00
</Group>
);
}