From dce39a79d92d513ba171e32e31aa3880e20f9af2 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Fri, 29 Apr 2022 17:47:03 -0400 Subject: [PATCH] Show Charity link in the sidebar --- web/components/nav/sidebar.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/components/nav/sidebar.tsx b/web/components/nav/sidebar.tsx index 576cea87..cf178396 100644 --- a/web/components/nav/sidebar.tsx +++ b/web/components/nav/sidebar.tsx @@ -5,9 +5,10 @@ import { SearchIcon, ChatIcon, BookOpenIcon, - TableIcon, DotsHorizontalIcon, CashIcon, + HeartIcon, + PresentationChartLineIcon, } from '@heroicons/react/outline' import clsx from 'clsx' import _ from 'lodash' @@ -24,7 +25,8 @@ import { useHasCreatedContractToday } from '../../hooks/use-has-created-contract const navigation = [ { name: 'Home', href: '/home', icon: HomeIcon }, { name: 'Explore', href: '/markets', icon: SearchIcon }, - { name: 'Portfolio', href: '/portfolio', icon: TableIcon }, + { name: 'Portfolio', href: '/portfolio', icon: PresentationChartLineIcon }, + { name: 'Charity', href: '/charity', icon: HeartIcon }, ] const signedOutNavigation = [