Rename MyHomePage to Homarr

This commit is contained in:
Aj - Thomas
2022-05-12 14:24:15 +02:00
parent 5dee33284d
commit e3af7629aa
7 changed files with 26 additions and 17 deletions

View File

@@ -2,9 +2,14 @@ import { Text } from '@mantine/core';
import * as React from 'react';
export function Logo({ style }: any) {
return (
<Text sx={style} weight="bold" variant="gradient" gradient={{ from: 'red', to: 'orange', deg: 145 }}>
Homarr
</Text>
);
return (
<Text
sx={style}
weight="bold"
variant="gradient"
gradient={{ from: 'red', to: 'orange', deg: 145 }}
>
Homarr
</Text>
);
}