From 9232767cd095fb0741088a0730738be909a7430a Mon Sep 17 00:00:00 2001 From: kaushik327 Date: Tue, 15 Oct 2024 19:33:19 -0500 Subject: [PATCH] Move links from treasury Linktree --- src/components/AppShell/index.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/components/AppShell/index.tsx b/src/components/AppShell/index.tsx index 60b54d4..49c89fe 100644 --- a/src/components/AppShell/index.tsx +++ b/src/components/AppShell/index.tsx @@ -8,7 +8,7 @@ import { useMantineColorScheme, } from '@mantine/core'; import { useDisclosure } from '@mantine/hooks'; -import { IconCalendar, IconCoin, IconEye, IconLink, IconPlus } from '@tabler/icons-react'; +import { IconCalendar, IconCoin, IconEye, IconLink, IconPlus, IconFileDollar, IconPizza } from '@tabler/icons-react'; import { ReactNode } from 'react'; import { useNavigate } from 'react-router-dom'; import { AuthenticatedProfileDropdown } from '../ProfileDropdown'; @@ -45,6 +45,18 @@ const extLinks = [ icon: IconCoin, description: null, }, + { + link: 'https://go.acm.illinois.edu/reimburse', + name: 'Funding and Reimbursement Requests', + icon: IconFileDollar, + description: null, + }, + { + link: 'https://go.acm.illinois.edu/sigpizza', + name: 'Pizza Request Form', + icon: IconPizza, + description: null, + }, ]; function isSameParentPath(path1: string | undefined, path2: string | undefined) {