This commit is contained in:
2026-04-24 20:30:52 +08:00
commit 704bc34625
152 changed files with 45612 additions and 0 deletions

25
src/pages/500.tsx Normal file
View File

@@ -0,0 +1,25 @@
import { Button, Result } from 'antd';
import React from 'react';
import ThemeWrapper from '@/components/ThemeWrapper';
import { $t } from '@/utils/i18n';
const NoFoundPage: React.FC = () => {
return (
<ThemeWrapper>
<Result
className="abs-center"
style={{ top: '40%' }}
status="500"
title={$t('pages.500.title')}
subTitle={$t('pages.500.subTitle')}
extra={
<Button type="primary" onClick={() => window.location.reload()}>
{$t('pages.refresh')}
</Button>
}
/>
</ThemeWrapper>
);
};
export default NoFoundPage;