mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-16 18:26:20 +01:00
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
|
|
import { Group, ActionIcon, Anchor, Text } from '@mantine/core';
|
|||
|
|
import { IconBrandDiscord, IconBrandGithub } from '@tabler/icons';
|
|||
|
|
import { CURRENT_VERSION } from '../../../data/constants';
|
|||
|
|
|
|||
|
|
export default function Credits(props: any) {
|
|||
|
|
return (
|
|||
|
|
<Group position="center" direction="row" mr="xs">
|
|||
|
|
<Group spacing={0}>
|
|||
|
|
<ActionIcon<'a'> component="a" href="https://github.com/ajnart/homarr" size="lg">
|
|||
|
|
<IconBrandGithub size={18} />
|
|||
|
|
</ActionIcon>
|
|||
|
|
<Text
|
|||
|
|
style={{
|
|||
|
|
position: 'relative',
|
|||
|
|
fontSize: '0.90rem',
|
|||
|
|
color: 'gray',
|
|||
|
|
}}
|
|||
|
|
>
|
|||
|
|
{CURRENT_VERSION}
|
|||
|
|
</Text>
|
|||
|
|
</Group>
|
|||
|
|
<Group spacing={1}>
|
|||
|
|
<Text
|
|||
|
|
style={{
|
|||
|
|
fontSize: '0.90rem',
|
|||
|
|
textAlign: 'center',
|
|||
|
|
color: 'gray',
|
|||
|
|
}}
|
|||
|
|
>
|
|||
|
|
Made with ❤️ by @
|
|||
|
|
<Anchor
|
|||
|
|
href="https://github.com/ajnart"
|
|||
|
|
style={{ color: 'inherit', fontStyle: 'inherit', fontSize: 'inherit' }}
|
|||
|
|
>
|
|||
|
|
ajnart
|
|||
|
|
</Anchor>
|
|||
|
|
</Text>
|
|||
|
|
<ActionIcon<'a'> component="a" href="https://discord.gg/aCsmEV5RgA" size="lg">
|
|||
|
|
<IconBrandDiscord size={18} />
|
|||
|
|
</ActionIcon>
|
|||
|
|
</Group>
|
|||
|
|
</Group>
|
|||
|
|
);
|
|||
|
|
}
|