import { Group, Image, Text } from '@mantine/core'; import { NextLink } from '@mantine/next'; import * as React from 'react'; import { useColorTheme } from '../../tools/color'; import { useConfig } from '../../tools/state'; export function Logo({ style }: any) { const { config } = useConfig(); const { primaryColor, secondaryColor } = useColorTheme(); return ( {config.settings.title || 'Homarr'} ); }