github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/services/frontend-service/src/ui/components/NavigationBar/NavigationBar.tsx (about) 1 /*This file is part of kuberpult. 2 3 Kuberpult is free software: you can redistribute it and/or modify 4 it under the terms of the Expat(MIT) License as published by 5 the Free Software Foundation. 6 7 Kuberpult is distributed in the hope that it will be useful, 8 but WITHOUT ANY WARRANTY; without even the implied warranty of 9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 MIT License for more details. 11 12 You should have received a copy of the MIT License 13 along with kuberpult. If not, see <https://directory.fsf.org/wiki/License:Expat>. 14 15 Copyright 2023 freiheit.com*/ 16 import { Logo, Home, Environments, LocksWhite } from '../../../images'; 17 import { NavList, NavListItem } from '../navigation'; 18 19 export const NavigationBar: React.FC = () => ( 20 <aside className="mdc-drawer"> 21 <div className="kp-logo"> 22 <Logo /> 23 </div> 24 <div className="mdc-drawer__content"> 25 <NavList> 26 <NavListItem to={'ui/home'} icon={<Home />} /> 27 <NavListItem to={'ui/environments'} icon={<Environments />} /> 28 <NavListItem to={'ui/locks'} icon={<LocksWhite />} /> 29 </NavList> 30 </div> 31 </aside> 32 );