diff --git a/rsconcept/frontend/src/app/router.tsx b/rsconcept/frontend/src/app/router.tsx index 4031ea8f..b4e408ed 100644 --- a/rsconcept/frontend/src/app/router.tsx +++ b/rsconcept/frontend/src/app/router.tsx @@ -84,6 +84,10 @@ export const Router = createBrowserRouter([ { path: `${routes.database_schema}`, lazy: () => import('@/features/home/database-schema-page') + }, + { + path: '*', + element: } ] } diff --git a/rsconcept/frontend/src/features/home/not-found-page.tsx b/rsconcept/frontend/src/features/home/not-found-page.tsx index 3c6bdce0..58cbbc67 100644 --- a/rsconcept/frontend/src/features/home/not-found-page.tsx +++ b/rsconcept/frontend/src/features/home/not-found-page.tsx @@ -2,10 +2,12 @@ import { TextURL } from '@/components/control'; export function NotFoundPage() { return ( -
-

Ошибка 404 – Страница не найдена

+
+

Ошибка 404 – Страница не найдена

Данная страница не существует или запрашиваемый объект отсутствует в базе данных

- +

+ +

); }