// Shared JSX used by app/icon.tsx, app/apple-icon.tsx and the per-locale // opengraph-image.tsx / twitter-image.tsx — keeps the brand badge (the same // circular "ML" mark used in Navbar) defined in exactly one place. export function BrandBadge({ size, ringWidth = 3 }: { size: number; ringWidth?: number }) { return (
ML
) } export function OgImageContent({ tagline }: { tagline: string }) { return (
marmaris  local
{tagline}
) }