Files
Frontend/src/app/components/not-found.tsx
Liam f00d6d8ba4
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
add motd to the server page
2024-04-16 21:18:08 +01:00

13 lines
287 B
TypeScript

type NotFoundProps = {
message: string;
};
export function NotFound({ message }: NotFoundProps): JSX.Element {
return (
<div className="flex flex-col justify-center text-center">
<h1 className="text-xl text-red-400">Not Found</h1>
<p>{message}</p>
</div>
);
}