import { Box, useMantineTheme } from '@mantine/core'; export function BrandAvatar({ initials = '?', size = 38, }: { initials?: string; size?: number; }) { const theme = useMantineTheme(); return ( {initials} ); }