You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
854 B

import {getSvgIcon } from 'components/svg-icon'
4 years ago
import React from 'react'
import { FaFileAlt, FaScroll, FaBookOpen, FaTags, FaUserCircle, FaRegFile } from 'react-icons/fa'
4 years ago
import { Route } from 'src/types/route'
import { ReserveUrls } from './reserve-urls'
export const editorLinks: Route[] = [{
title: '文章',
path: `${ReserveUrls.Editor}/posts`,
icon: getSvgIcon("post"),
4 years ago
disabled: false
},
{
title: '系列',
path: `${ReserveUrls.Editor}/series`,
icon: getSvgIcon("series"),
4 years ago
disabled: false
}
]
export const adminLinks: Route[] = [{
title: '标签管理',
path: `${ReserveUrls.Admin}/tags`,
icon: getSvgIcon("tags"),
4 years ago
disabled: false
4 years ago
}]
export const settingLinks: Route[] = [{
title: '用户设置',
path: `${ReserveUrls.Settings}/profile`,
icon: <FaUserCircle />,
disabled: false
}]