From 4b9b6116517768117023d6a4b437e69a26bd8a1a Mon Sep 17 00:00:00 2001 From: tangly1024 Date: Wed, 5 Jan 2022 14:24:34 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8F=9C=E5=8D=95=E5=9B=BE=E6=A0=87=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/MenuButtonGroup.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/MenuButtonGroup.js b/components/MenuButtonGroup.js index 50e93f32..95aeddce 100644 --- a/components/MenuButtonGroup.js +++ b/components/MenuButtonGroup.js @@ -3,7 +3,7 @@ import Link from 'next/link' import { useRouter } from 'next/router' import { useGlobal } from '@/lib/global' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faArchive, faHome, faInfoCircle, faTag, faThList } from '@fortawesome/free-solid-svg-icons' +import { faArchive, faHome, faTag, faTh, faUser } from '@fortawesome/free-solid-svg-icons' import BLOG from 'blog.config' const MenuButtonGroup = ({ allowCollapse = false }) => { @@ -12,9 +12,9 @@ const MenuButtonGroup = ({ allowCollapse = false }) => { const links = [ { id: 0, icon: faHome, name: locale.NAV.INDEX, to: '/' || '/', show: true }, { id: 1, icon: faArchive, name: locale.NAV.ARCHIVE, to: '/archive', show: BLOG.menu.showArchive }, - { id: 2, icon: faThList, name: locale.COMMON.CATEGORY, to: '/category', show: BLOG.menu.showCategory }, + { id: 2, icon: faTh, name: locale.COMMON.CATEGORY, to: '/category', show: BLOG.menu.showCategory }, { id: 3, icon: faTag, name: locale.COMMON.TAGS, to: '/tag', show: BLOG.menu.showTag }, - { id: 4, icon: faInfoCircle, name: locale.NAV.ABOUT, to: '/about', show: BLOG.menu.showAbout } + { id: 4, icon: faUser, name: locale.NAV.ABOUT, to: '/about', show: BLOG.menu.showAbout } ] return