moving from hexo theme to my own react design

This commit is contained in:
Kim, Jimin 2021-05-15 00:30:19 +09:00
parent 7ff3176072
commit 379c1c60d9
96 changed files with 1990 additions and 50291 deletions

View file

@ -0,0 +1,42 @@
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import {
faHome,
faArchive,
faUserTie,
faHashtag,
faListUl,
faHiking,
} from "@fortawesome/free-solid-svg-icons"
export default [
{
title: "Home",
path: "/",
icon: <FontAwesomeIcon icon={faHome} />,
},
{
title: "Archives",
path: "/archives",
icon: <FontAwesomeIcon icon={faArchive} />,
},
{
title: "Categories",
path: "/categories",
icon: <FontAwesomeIcon icon={faListUl} />,
},
{
title: "Tags",
path: "/tags",
icon: <FontAwesomeIcon icon={faHashtag} />,
},
{
title: "Explore",
path: "/explore",
icon: <FontAwesomeIcon icon={faHiking} />,
},
{
title: "Portfolio",
path: "/portfolio",
icon: <FontAwesomeIcon icon={faUserTie} />,
},
]