first commit

This commit is contained in:
2026-05-05 22:55:31 +07:00
commit c2c7f91e88
48 changed files with 38159 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
import { Button, Result } from 'antd';
const UnAccessPage: React.FC = () => (
<Result
status="403"
title="403"
subTitle="Sorry, you are not authorized to access this page."
extra={<Button type="primary">Back Home</Button>}
/>
);
export default UnAccessPage;