import clsx from 'clsx'; import { Link } from 'react-router-dom'; import type { LinkProps } from 'react-router-dom'; import SystemLogo from '@/components/SystemLogo'; interface Props extends Omit { /** Whether to show the title */ showTitle?: boolean; } const GlobalLogo: FC = memo(({ className, showTitle = true, ...props }) => { const { t } = useTranslation(); return (

{t('system.title')}

); }); export default GlobalLogo;