From 6aa16bd0ef69530a54b5454c3d6db5e3c12fab12 Mon Sep 17 00:00:00 2001 From: Taqi Tahmid Date: Sun, 20 Apr 2025 13:27:37 +0300 Subject: [PATCH] Revert "refactor frontend code" This reverts commit 1d45fca7832de9faadee1ae91ba72ac28c6c2973. --- frontend/src/App.tsx | 24 +++++---------- frontend/src/components/Sidebar.tsx | 47 ----------------------------- 2 files changed, 8 insertions(+), 63 deletions(-) delete mode 100644 frontend/src/components/Sidebar.tsx diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 5cd85ed..c9762a2 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -4,7 +4,6 @@ import { Routes, Route } from 'react-router-dom' import './App.css' import Home from './pages/Home' import Navbar from './components/Navbar' -import Sidebar from './components/Sidebar' import Footer from './components/Footer' import Experience from './pages/Experience' import Projects from './pages/Projects' @@ -25,21 +24,14 @@ function App() {
-
-
- -
-
- - - } /> - } /> - } /> - } /> - - -
-
+ + + } /> + } /> + } /> + } /> + +
diff --git a/frontend/src/components/Sidebar.tsx b/frontend/src/components/Sidebar.tsx deleted file mode 100644 index f01ad68..0000000 --- a/frontend/src/components/Sidebar.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import { Github, Linkedin, Mail, Twitter, Globe, Calendar } from 'lucide-react' - -const Sidebar = () => { - return ( -
-

Contact

-
-
- - - taqitahmid@gmail.com - -
-
-
-
- - - My Website - -
-
-

Connect

-
-
- - - Taqi Tahmid - -
-
-
-
- - - TheTaqiTahmid - -
-
-
- ) -} - -export default Sidebar