// src/components/Tag.jsx
function Tag({ type }) {
  const { lang } = useApp();
  const tag = TAGS[type] || { ru: type, en: type, cls: '' };
  return (
    <span className={`${tag.cls} text-xs font-semibold px-[12px] py-[6px] rounded`}>
      {tag[lang]}
    </span>
  );
}
