import { faCogs as cogsIcon } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { NavBar } from '@shlinkio/shlink-frontend-kit'; import type { FC } from 'react'; import { Link, useLocation } from 'react-router'; import { ServersDropdown } from '../servers/ServersDropdown'; import { ShlinkLogo } from './img/ShlinkLogo'; export const MainHeader: FC = () => { const { pathname } = useLocation(); const settingsPath = '/settings'; return ( Shlink )} > Settings ); };