moving from hexo theme to my own react design
This commit is contained in:
parent
7ff3176072
commit
379c1c60d9
96 changed files with 1990 additions and 50291 deletions
42
source/src/data/NavbarData.tsx
Normal file
42
source/src/data/NavbarData.tsx
Normal 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} />,
|
||||
},
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue