import { Group, Stack, Text, Title } from '@pikku/mantine/core' import { m } from '@/i18n/messages' import { useLocale } from '@/i18n/config' type Variant = 'plum' | 'white' export function BrandMark({ size = 48, variant = 'plum', }: { size?: number variant?: Variant }) { const src = variant === 'white' ? '/brand/logo-white.svg' : '/brand/logo-plum.svg' return Seminarhof Drawehn } export function BrandHeader({ variant = 'plum' }: { variant?: Variant }) { useLocale() const color = variant === 'white' ? 'white' : 'var(--brand-plum)' return ( {m.common_brand_name()} {m.common_brand_tagline()} ) }