From 87ebb5a0d3cd9085cb651e0d303c48c8752d7d16 Mon Sep 17 00:00:00 2001 From: VividTruthKeeper Date: Thu, 23 Feb 2023 12:47:45 +0500 Subject: [PATCH] 404 --- src/App.tsx | 2 + src/assets/icons/404.svg | 84 +++++++++++++++++++++++++++++++++++++++ src/pages/NotFound404.tsx | 30 ++++++++++++++ src/styles/_404.scss | 82 ++++++++++++++++++++++++++++++++++++++ src/styles/style.scss | 1 + 5 files changed, 199 insertions(+) create mode 100644 src/assets/icons/404.svg create mode 100644 src/pages/NotFound404.tsx create mode 100644 src/styles/_404.scss diff --git a/src/App.tsx b/src/App.tsx index c10d915..a567845 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -18,6 +18,7 @@ import NewsArticle from "./pages/NewsArticle"; import Category from "./pages/Category"; import SearchResult from "./pages/SearchResult"; import AllPosts from "./pages/AllPosts"; +import NotFound404 from "./pages/NotFound404"; // Components import Header from "./components/header/Header"; @@ -43,6 +44,7 @@ const App = () => { } /> } /> } /> + } />