diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index c9762a2..5cd85ed 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -4,6 +4,7 @@ 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' @@ -24,14 +25,21 @@ function App() {
- - - } /> - } /> - } /> - } /> - - +
+
+ +
+
+ + + } /> + } /> + } /> + } /> + + +
+
diff --git a/frontend/src/components/Sidebar.tsx b/frontend/src/components/Sidebar.tsx new file mode 100644 index 0000000..f01ad68 --- /dev/null +++ b/frontend/src/components/Sidebar.tsx @@ -0,0 +1,47 @@ +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