import type { FC } from 'react' import { Box, Group, Text } from '@pikku/mantine/core' import type { I18nString } from '@pikku/react' // Placeholder brand mark + app name. A gradient tile (brand primary → secondary, // both theme-driven so it recolours with the active theme) holding a bold spark // glyph — a confident, generic starting point, NOT a flat monochrome square. // Reshape the glyph into a real brand mark per project. export const Wordmark: FC<{ name: I18nString; size?: number }> = ({ name, size = 30 }) => { return ( {/* Four-point spark — energetic, distinctive, reads at any size. */} {name} ) }