import { Box } from '@/ui/Box'; import { Link } from '@/ui/Link'; import { Image } from '@/ui/Image'; interface BrandMarkProps { href?: string; priority?: boolean; } export function BrandMark({ href = '/' }: BrandMarkProps) { return ( ); }