2022-04-22 15:13:38 +01:00
|
|
|
import { IoAppsOutline, IoLogoGithub, IoBookOutline } from "react-icons/io5";
|
|
|
|
import { FiTwitter } from "react-icons/fi";
|
2022-03-25 14:57:20 +00:00
|
|
|
|
|
|
|
const SidebarLinks = [
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
href: "/",
|
|
|
|
external: false,
|
|
|
|
title: "Browse",
|
2022-04-04 18:20:17 +01:00
|
|
|
icon: IoAppsOutline,
|
2022-03-25 14:57:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
href: "https://github.com/pheralb/svgl/",
|
|
|
|
external: true,
|
|
|
|
title: "Github",
|
|
|
|
icon: IoLogoGithub,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 3,
|
|
|
|
href: "https://twitter.com/pheralb_",
|
|
|
|
external: true,
|
|
|
|
title: "Twitter",
|
|
|
|
icon: FiTwitter,
|
2022-04-22 15:13:38 +01:00
|
|
|
},
|
2022-03-25 14:57:20 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
export default SidebarLinks;
|