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
}
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()}
)
}