From 7cc862b16b26df0dfb80546ac5c23b2d3785ae8e Mon Sep 17 00:00:00 2001 From: "@Arihantjain123" Date: Thu, 23 Oct 2025 17:48:18 +0530 Subject: [PATCH] added footer section --- frontend/src/App.jsx | 54 +++++++++++++++++++++++++++++- frontend/src/pages/WelcomePage.jsx | 4 +-- 2 files changed, 54 insertions(+), 4 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 3ba7157..ac4e2d7 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -1,6 +1,7 @@ import { ToastContainer } from 'react-toastify'; import 'react-toastify/dist/ReactToastify.css'; -import { Routes, Route } from 'react-router-dom'; +import { Routes, Route, Link } from 'react-router-dom'; +import { FaGithub, FaTwitter, FaLinkedin } from 'react-icons/fa'; import LoginPage from './pages/LoginPage'; import RegisterPage from './pages/RegisterPage'; import SetupPage from './pages/SetupPage'; @@ -25,6 +26,7 @@ function App() { } /> } /> } /> + {/* Protected Routes */} } /> + {/* Protected Routes Wrapper */} + + {/* Beautiful Footer Section */} + {/* Beautiful Footer Section */} +
+
+ +
+

Paisable

+

+ Smart finance management made simple-track, budget, and plan your + expenses effortlessly. +

+
+ + +
+

Quick Links

+
    +
  • Dashboard
  • +
  • Transactions
  • +
  • Budgets
  • +
  • Contact Us
  • +
+
+ + +
+

Connect

+ +
+
+ + +
+ © {new Date().getFullYear()} Paisable. All rights reserved. +
+
+ + ); diff --git a/frontend/src/pages/WelcomePage.jsx b/frontend/src/pages/WelcomePage.jsx index ff3793a..940df59 100644 --- a/frontend/src/pages/WelcomePage.jsx +++ b/frontend/src/pages/WelcomePage.jsx @@ -105,9 +105,7 @@ export default function WelcomePage() { {/* Footer */} - + ); } \ No newline at end of file