Files
homarr/apps/nextjs/src/app/[locale]/not-found.tsx
Meier Lukas b78d32b81c fix: nextjs is slow dev server (#364)
* fix: nextjs slow compile time

* fix: change optimized package imports and transpile packages

* fix: format issue
2024-04-25 22:06:15 +02:00

6 lines
127 B
TypeScript

import { Center } from "@mantine/core";
export default function CommonNotFound() {
return <Center h="100vh">404</Center>;
}