added about and contact page
This commit is contained in:
parent
341db25bb9
commit
6b1027909c
1 changed files with 16 additions and 1 deletions
|
@ -1,5 +1,10 @@
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
||||||
import { faHome, faUserTie } from "@fortawesome/free-solid-svg-icons"
|
import {
|
||||||
|
faComments,
|
||||||
|
faHome,
|
||||||
|
faIdCard,
|
||||||
|
faUserTie,
|
||||||
|
} from "@fortawesome/free-solid-svg-icons"
|
||||||
|
|
||||||
// item from sidebar data
|
// item from sidebar data
|
||||||
export type Item = {
|
export type Item = {
|
||||||
|
@ -17,6 +22,16 @@ const NavbarData: Array<Item> = [
|
||||||
path: "/",
|
path: "/",
|
||||||
icon: <FontAwesomeIcon icon={faHome} />,
|
icon: <FontAwesomeIcon icon={faHome} />,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "About",
|
||||||
|
path: "/about",
|
||||||
|
icon: <FontAwesomeIcon icon={faIdCard} />,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Contact",
|
||||||
|
path: "/contact",
|
||||||
|
icon: <FontAwesomeIcon icon={faComments} />,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Portfolio",
|
title: "Portfolio",
|
||||||
path: "/portfolio",
|
path: "/portfolio",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue