import type { IRawCategoryCard, ILinkItem } from '../../../types'; /** Конвертирует массив категорий в ссылки ILinkItem для футера. */ export function convertCategoriesToFooter( items: Array, ): Array { return items.map(item => ({ title: item.title, name: item.name, })); }