From 8c96974c7f2139f4104aeff0cea301e44d02e4a8 Mon Sep 17 00:00:00 2001 From: pvsaint Date: Thu, 30 Jan 2025 14:21:30 +0100 Subject: [PATCH 1/3] feat:create leaderboard page --- frontend/src/App.jsx | 2 + .../src/pages/leaderboard/Leaderboard.jsx | 92 +++++++++++++++++++ 2 files changed, 94 insertions(+) create mode 100644 frontend/src/pages/leaderboard/Leaderboard.jsx diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index e4068068..e40d7725 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -25,6 +25,7 @@ import PositionHistory from '@/pages/position-history/PositionHistory'; import WithdrawAll from '@/pages/spotnet/dashboard/withdraw-all/WithdrawAll'; import { DefiSpringPage } from '@/pages/spotnet/defi-spring/DefiSpring'; import { AddDeposit } from '@/pages/add-deposit/AddDeposit'; +import Leaderboard from '@/pages/leaderboard/Leaderboard'; function App() { const { setWalletId, removeWalletId } = useWalletStore(); @@ -114,6 +115,7 @@ function App() { } /> } /> } /> + } />