diff --git a/subprojects/frontend/src/TopBar.tsx b/subprojects/frontend/src/TopBar.tsx index e41f956e2..5c9bfc0a7 100644 --- a/subprojects/frontend/src/TopBar.tsx +++ b/subprojects/frontend/src/TopBar.tsx @@ -4,7 +4,9 @@ * SPDX-License-Identifier: EPL-2.0 */ +import BookIcon from '@mui/icons-material/Book'; import GitHubIcon from '@mui/icons-material/GitHub'; +import HomeIcon from '@mui/icons-material/Home'; import AppBar from '@mui/material/AppBar'; import IconButton from '@mui/material/IconButton'; import Stack from '@mui/material/Stack'; @@ -164,27 +166,41 @@ export default observer(function TopBar(): JSX.Element { )} - - + {large && ( - - - - - + + + + + + + + + + + + + + + + + )} + + - );