2022-05-14 21:41:30 +02:00
|
|
|
import { Group, Text } from '@mantine/core';
|
2022-04-25 00:11:32 +02:00
|
|
|
import * as React from 'react';
|
2022-05-14 21:41:30 +02:00
|
|
|
import { CURRENT_VERSION } from '../../../data/constants';
|
2022-04-25 00:11:32 +02:00
|
|
|
|
|
|
|
|
export function Logo({ style }: any) {
|
2022-05-12 14:24:15 +02:00
|
|
|
return (
|
2022-05-14 21:41:30 +02:00
|
|
|
<Group>
|
|
|
|
|
<Text
|
|
|
|
|
sx={style}
|
|
|
|
|
weight="bold"
|
|
|
|
|
variant="gradient"
|
|
|
|
|
gradient={{ from: 'red', to: 'orange', deg: 145 }}
|
|
|
|
|
>
|
|
|
|
|
Homarr
|
|
|
|
|
</Text>
|
|
|
|
|
<Text
|
|
|
|
|
style={{
|
|
|
|
|
color: 'gray',
|
|
|
|
|
fontStyle: 'inherit',
|
|
|
|
|
fontSize: 'inherit',
|
|
|
|
|
alignSelf: 'end',
|
|
|
|
|
alignContent: 'start',
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{CURRENT_VERSION}
|
|
|
|
|
</Text>
|
|
|
|
|
</Group>
|
2022-05-12 14:24:15 +02:00
|
|
|
);
|
2022-04-25 00:11:32 +02:00
|
|
|
}
|