From 4bae09d6df04df048baf0c2e45a492574ce19c02 Mon Sep 17 00:00:00 2001 From: Haziq Khairi Date: Fri, 12 Jan 2024 16:33:55 +0800 Subject: [PATCH] chore: remove Footer component from App.jsx --- src/App.jsx | 4 ---- src/components/Footer.jsx | 10 ---------- 2 files changed, 14 deletions(-) delete mode 100644 src/components/Footer.jsx diff --git a/src/App.jsx b/src/App.jsx index 1e534ad..a3aee5d 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,7 +1,6 @@ import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; import { Suspense, lazy } from 'react'; import Navbar from './components/Navbar'; -import Footer from './components/Footer'; import { Spinner } from '@nextui-org/react'; // Lazy loading of route components @@ -32,9 +31,6 @@ function App() { - - {/* Footer */} -