From d8d75157cf40ef217521d5a347cc4c1c7be8c86c Mon Sep 17 00:00:00 2001 From: Chetan-KK Date: Wed, 11 Oct 2023 17:45:21 +0530 Subject: [PATCH 1/4] 404 page bg problem fixed --- src/pages/404.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/pages/404.tsx diff --git a/src/pages/404.tsx b/src/pages/404.tsx new file mode 100644 index 00000000..081d4678 --- /dev/null +++ b/src/pages/404.tsx @@ -0,0 +1,11 @@ +import React from "react"; + +const notFound = () => { + return ( +
+ 404 | page not found +
+ ); +}; + +export default notFound; From 5dae1ee3cb8d4c13c5c7256807a6af30f8d1095e Mon Sep 17 00:00:00 2001 From: Chetan-KK Date: Wed, 11 Oct 2023 17:48:32 +0530 Subject: [PATCH 2/4] 404 page bg problem fixed --- src/pages/404.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pages/404.tsx b/src/pages/404.tsx index 081d4678..256208f8 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -1,5 +1,3 @@ -import React from "react"; - const notFound = () => { return (
From 6d58d4a3409e13a1f826a614354f76d84180790e Mon Sep 17 00:00:00 2001 From: Chetan-KK Date: Fri, 13 Oct 2023 20:19:33 +0530 Subject: [PATCH 3/4] 404 updated --- assets/illustrations/undraw/404.svg | 1 + src/pages/404.tsx | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 assets/illustrations/undraw/404.svg diff --git a/assets/illustrations/undraw/404.svg b/assets/illustrations/undraw/404.svg new file mode 100644 index 00000000..b0b3ba36 --- /dev/null +++ b/assets/illustrations/undraw/404.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/pages/404.tsx b/src/pages/404.tsx index 256208f8..526596db 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -1,7 +1,10 @@ +import ErrorIllustration from "@/assets/illustrations/undraw/404.svg"; + const notFound = () => { return (
- 404 | page not found + +

404 page not found

); }; From 423671d159cc41a2b9996630a4d22ed23b67aa0c Mon Sep 17 00:00:00 2001 From: Chetan-KK Date: Sun, 22 Oct 2023 15:36:53 +0530 Subject: [PATCH 4/4] redirect to home added --- assets/illustrations/undraw/404.svg | 2 +- src/pages/404.tsx | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/assets/illustrations/undraw/404.svg b/assets/illustrations/undraw/404.svg index b0b3ba36..528784f4 100644 --- a/assets/illustrations/undraw/404.svg +++ b/assets/illustrations/undraw/404.svg @@ -1 +1 @@ - \ No newline at end of file +feeling blue \ No newline at end of file diff --git a/src/pages/404.tsx b/src/pages/404.tsx index 526596db..31c63ce4 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -1,10 +1,16 @@ import ErrorIllustration from "@/assets/illustrations/undraw/404.svg"; +import Button from "@/components/input/Button"; const notFound = () => { return (
-

404 page not found

+

404 page not found

+

+ +

); };