From c0583b47611f0d09a8faf9474169b5ef58ff26a6 Mon Sep 17 00:00:00 2001 From: Ismail Courr Date: Sun, 12 Feb 2023 02:08:48 +0100 Subject: [PATCH] Remove footer and Landing page --- src/App.jsx | 7 +++---- src/components/NavBar.jsx | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 3de5e41..659013e 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,8 +1,8 @@ import React, { useState } from 'react'; import { Routes, Route, BrowserRouter } from 'react-router-dom'; -import { NavBar, Footer, ProtectedRoutes } from './components'; +import { NavBar, ProtectedRoutes } from './components'; import { - Landing, Login, NotFound404, Signup, Dashboard, Profile, Messanger, ToDoList, ChatView, + Login, NotFound404, Signup, Dashboard, Profile, Messanger, ToDoList, ChatView } from './pages'; const App = () => { @@ -14,11 +14,11 @@ const App = () => { - } /> } /> } /> } /> }> + } /> } /> } /> } /> @@ -26,7 +26,6 @@ const App = () => { } /> -