Skip to content

Commit

Permalink
feat(app/home/leaderboard): integrate with api (#220)
Browse files Browse the repository at this point in the history
* feat(app/home/leaderboard): integrate with api

* feat(app/leaderboard-page): add page (#221)
  • Loading branch information
KacperKoza343 authored Aug 22, 2024
1 parent 6a8b863 commit c2d6854
Show file tree
Hide file tree
Showing 21 changed files with 778 additions and 650 deletions.
2 changes: 2 additions & 0 deletions packages/apps/dashboard/ui-2024/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
import Home from '@pages/Home';
import Graph from '@pages/Graph';
import SearchResults from '@pages/SearchResults';
import { LeaderBoard } from '@pages/Leaderboard';

const App: React.FC = () => {
return (
<Router>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/leaderboard" element={<LeaderBoard />} />
<Route path="/graph" element={<Graph />} />
<Route path="/search/:chainId/:address" element={<SearchResults />} />
<Route path="*" element={<div>Not find</div>} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,6 @@
padding: 32px 16px;
font-size: 16px;
}
td:first-child{
font-size: 20px;
display: flex;
gap: 16px;
align-items: center;
}

.icon-table{
background-color: $groundwaterOpacity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
export const colorPalette = {
white: '#F9FAFF',
whiteBackground: '#FFF',
whiteSolid: '#F6F5FC',
skyOpacity: '#DADEF0CC',
primary: {
main: '#320a8d',
light: '#320a8d',
Expand Down
Loading

0 comments on commit c2d6854

Please sign in to comment.