Files
meet/src/frontend/src/layout/NotFoundScreen.tsx
Emmanuel Pelletier 31ea621e44 ♻️(frontend) reorganize starting frontend code
- we now have "features" to try to organize code by intent instead of
code type. everything at the root of frontend, not in feature/, is
global
- customized the panda config a bunch to try to begin to have an actual
design system. The idea is to prevent using arbitrary values here and
there in the code, but rather semantic tokens
- changed the userAuth code logic to handle the fact that a 401 on the
users/me call is not really an error per say, but rather an indication
the user is not logged in
2024-07-16 15:29:36 +02:00

6 lines
142 B
TypeScript

import { BoxScreen } from './BoxScreen'
export const NotFoundScreen = () => {
return <BoxScreen title="Page not found" withBackButton />
}