feat: Multiple QoL updates

This commit is contained in:
WalkxCode
2022-05-12 13:07:47 +02:00
parent 86590e7279
commit 4c042ccb05
9 changed files with 175 additions and 134 deletions

View File

@@ -2,14 +2,9 @@ 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 }}
>
MyHomePage
</Text>
);
return (
<Text sx={style} weight="bold" variant="gradient" gradient={{ from: 'red', to: 'orange', deg: 145 }}>
Homarr
</Text>
);
}