import { IconArrowsCross, IconBolt, IconBoltOff, IconDisc } from "@tabler/icons-react"; import { useNavigate } from "react-router-dom"; import { useHostReport } from "src/hooks"; import { T } from "src/locale"; const Dashboard = () => { const { data: hostReport } = useHostReport(); const navigate = useNavigate(); return (

{ e.preventDefault(); navigate("/nginx/proxy"); }} >
{ e.preventDefault(); navigate("/nginx/redirection"); }} >
{ e.preventDefault(); navigate("/nginx/stream"); }} >
{ e.preventDefault(); navigate("/nginx/404"); }} >
				{`Todo:

- check mobile
- add help docs for host types
- REDO SCREENSHOTS in docs folder
- translations for:
  - src/components/Form/AccessField.tsx
  - src/components/Form/SSLCertificateField.tsx
  - src/components/Form/DNSProviderFields.tsx
- search codebase for "TODO"
- update documentation to add development notes for translations
- use syntax highligting for audit logs json output
- double check output of access field selection on proxy host dialog, after access lists are completed
- proxy host custom locations dialog

More for api, then implement here:
- Properly implement refresh tokens
- Add error message_18n for all backend errors
- minor: certificates expand with hosts needs to omit 'is_deleted'
- properly wrap all logger.debug called in isDebug check
- add new api endpoint changes to swagger docs

`}
			
); }; export default Dashboard;