Fix: add 404 page (#1230)

* add 404 page

* add not found wildacard path to apppath

* rename styled components

* add theme blur and background color

* change backgrounf to transparent secondary
This commit is contained in:
Sunil Kumar Behera
2023-08-18 01:32:20 +05:30
committed by GitHub
parent cf1dfb8c42
commit e8e6d9f8ea
3 changed files with 76 additions and 0 deletions

View File

@ -20,6 +20,8 @@ import { SettingsWorkspaceMembers } from '~/pages/settings/SettingsWorkspaceMemb
import { Tasks } from '~/pages/tasks/Tasks';
import { AppInternalHooks } from '~/sync-hooks/AppInternalHooks';
import { NotFound } from './NotFound';
// TEMP FEATURE FLAG FOR VIEW FIELDS
export const ACTIVATE_VIEW_FIELDS = true;
@ -67,6 +69,7 @@ export function App() {
</Routes>
}
/>
<Route path={AppPath.NotFoundWildcard} element={<NotFound />} />
</Routes>
</DefaultLayout>
</>