build utils

This commit is contained in:
2024-04-12 22:44:02 +03:00
parent 8df8f5a2e9
commit f6d316cb5e
7 changed files with 68 additions and 4 deletions

View File

@ -64,5 +64,8 @@
},
"Dashboard": {
"ru": "Панель управления"
},
"Page not found": {
"ru": "Страница не найдена"
}
}

View File

@ -9,7 +9,8 @@ const NotFoundPage = () => {
<div style={{ width: "100%", marginTop: "3rem" }}>
<QuestionCircleOutlined style={{ fontSize: "5rem" }} />
</div>
<Title>{tr("Not found")}</Title>
<Title>{tr("Page not found")}</Title>
<Title level={3}>404</Title>
</>
);
};