diff --git a/assets/illustrations/undraw/404.svg b/assets/illustrations/undraw/404.svg new file mode 100644 index 00000000..528784f4 --- /dev/null +++ b/assets/illustrations/undraw/404.svg @@ -0,0 +1 @@ +feeling blue \ No newline at end of file diff --git a/src/pages/404.tsx b/src/pages/404.tsx new file mode 100644 index 00000000..31c63ce4 --- /dev/null +++ b/src/pages/404.tsx @@ -0,0 +1,18 @@ +import ErrorIllustration from "@/assets/illustrations/undraw/404.svg"; +import Button from "@/components/input/Button"; + +const notFound = () => { + return ( +
+ +

404 page not found

+

+ +

+
+ ); +}; + +export default notFound;