import type { ProLayoutProps } from '@ant-design/pro-components'; /** * @name */ const Settings: ProLayoutProps & { pwa?: boolean; logo?: string; } = { navTheme: 'light', colorPrimary: '#1890ff', layout: 'mix', contentWidth: 'Fluid', fixedHeader: false, fixSiderbar: true, footerRender: false, colorWeak: false, title: 'RiskGuard', pwa: false, logo: '/logo.svg', iconfontUrl: '', }; export default Settings;