mirror of https://github.com/sunface/rust-course
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.
32 lines
711 B
32 lines
711 B
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: <FaFileAlt />,
|
|
disabled: false
|
|
},
|
|
{
|
|
title: '系列',
|
|
path: `${ReserveUrls.Editor}/series`,
|
|
icon: <FaBookOpen />,
|
|
disabled: false
|
|
},
|
|
{
|
|
title: '课程',
|
|
path: `${ReserveUrls.Editor}/course`,
|
|
icon: <FaScroll />,
|
|
disabled: false
|
|
}
|
|
]
|
|
|
|
export const adminLinks: Route[] = [{
|
|
title: '标签管理',
|
|
path: `${ReserveUrls.Admin}/tags`,
|
|
icon: <FaTags />,
|
|
disabled: false
|
|
}
|
|
]
|