import React from 'react' import { FaFileAlt, FaScroll, FaBookOpen, FaTags } from 'react-icons/fa' import { Route } from 'src/types/route' import { ReserveUrls } from './reserve-urls' export const editorLinks: Route[] = [{ title: '文章', path: `${ReserveUrls.Editor}/posts`, icon: , disabled: false }, { title: '系列', path: `${ReserveUrls.Editor}/series`, icon: , disabled: false }, { title: '课程', path: `${ReserveUrls.Editor}/course`, icon: , disabled: false } ] export const adminLinks: Route[] = [{ title: '标签管理', path: `${ReserveUrls.Admin}/tags`, icon: , disabled: false } ]