// import { Button } from 'antd'; // import { IconWrapper } from '../../icon-wrapper'; // import { HiArrowLeft } from 'react-icons/hi2'; // import { useNavigate } from 'react-router-dom'; import { useAppModule } from '@pos/base/presentation/hooks'; import Image4040 from '../../../assets/images/404.svg'; import { Button } from 'antd'; import { IconWrapper } from '@pos/base'; import { HiArrowLeft } from 'react-icons/hi'; import { useNavigate } from 'react-router-dom'; export function ForbiddenAccessPage() { const moduleAction = useAppModule(); const webUrl = moduleAction?.webUrl; const navigate = useNavigate(); function handleBack() { navigate(`${webUrl}`); } return (

Forbidden Access

Sorry, you do not have access to this page. Here are some helpful links:

{webUrl && ( )}
); }