You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
408 B
15 lines
408 B
import React from "react";
|
|
import {NOT_FOUND} from "@/components/Errors";
|
|
import Error from "@/app/(utility)/Error";
|
|
import notFoundPict from "@/assets/images/NotFound.png";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<Error
|
|
picture={notFoundPict}
|
|
problem="Introuvable"
|
|
description={NOT_FOUND}
|
|
information="Status Code : 404"
|
|
/>
|
|
);
|
|
} |