Skip to content

Commit 274733e

Browse files
committed
feat: add 500 Next Page
1 parent 4a6c1a9 commit 274733e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

frontend/pages/500.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import React from 'react'
2+
import { NextPage } from 'next'
3+
import { useTranslation } from 'react-i18next'
4+
5+
const ServerErrorPage: NextPage = () => {
6+
const { t } = useTranslation()
7+
8+
return <div>{t('error:serverError')}</div>
9+
}
10+
11+
export default ServerErrorPage

0 commit comments

Comments
 (0)