diff --git a/front/src/components/TopBar/TopBar.tsx b/front/src/components/TopBar/TopBar.tsx index b38c362..03fd57d 100644 --- a/front/src/components/TopBar/TopBar.tsx +++ b/front/src/components/TopBar/TopBar.tsx @@ -39,6 +39,7 @@ import { colors } from '@/theme/foundations/colors'; import { requestSignIn, requestSignOut, requestSignUp } from '@/utils/sso'; import { useThemeMode } from '@/utils/theme-tools'; import { useSessionService } from '@/service/session'; +import { MdHome, MdOutlinePlaylistPlay, MdOutlineUploadFile } from 'react-icons/md'; export const TOP_BAR_HEIGHT = '50px'; @@ -81,6 +82,9 @@ export const TopBar = ({ title, children }: TopBarProps) => { const onSelectHome = () => { navigate('/'); }; + const onSelectOnAir = () => { + navigate('/on-air'); + }; const onHelp = () => { navigate('/help'); }; @@ -202,11 +206,22 @@ export const TopBar = ({ title, children }: TopBarProps) => { onClick={onSelectHome} width="full" > - + Home +