├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── DepositData.json ├── assets │ ├── icons │ │ ├── moon.svg │ │ └── sunny.svg │ └── images │ │ ├── jaggedarbor.png │ │ ├── lostround.png │ │ ├── noblecape.png │ │ ├── profilelg.png │ │ ├── profilesm.png │ │ └── tawnymaze.png ├── components │ ├── Main │ │ ├── AllDepositsBtn.js │ │ ├── Deposits │ │ │ ├── Deposit.js │ │ │ ├── Deposits.js │ │ │ └── SortingBar.js │ │ ├── Main.js │ │ ├── Nav.js │ │ └── NewDepositBtn.js │ └── Sidebar │ │ ├── Menu │ │ ├── Menu.js │ │ └── MenuLink.js │ │ ├── Profile.js │ │ ├── Sidebar.js │ │ └── ToggleSwitch.js ├── containers │ └── Dashboard.js ├── context │ └── themeContext.js ├── index.css ├── index.js └── styles │ ├── global.js │ └── theme.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/App.js -------------------------------------------------------------------------------- /src/DepositData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/DepositData.json -------------------------------------------------------------------------------- /src/assets/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/assets/icons/moon.svg -------------------------------------------------------------------------------- /src/assets/icons/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/assets/icons/sunny.svg -------------------------------------------------------------------------------- /src/assets/images/jaggedarbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/assets/images/jaggedarbor.png -------------------------------------------------------------------------------- /src/assets/images/lostround.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/assets/images/lostround.png -------------------------------------------------------------------------------- /src/assets/images/noblecape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/assets/images/noblecape.png -------------------------------------------------------------------------------- /src/assets/images/profilelg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/assets/images/profilelg.png -------------------------------------------------------------------------------- /src/assets/images/profilesm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/assets/images/profilesm.png -------------------------------------------------------------------------------- /src/assets/images/tawnymaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/assets/images/tawnymaze.png -------------------------------------------------------------------------------- /src/components/Main/AllDepositsBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Main/AllDepositsBtn.js -------------------------------------------------------------------------------- /src/components/Main/Deposits/Deposit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Main/Deposits/Deposit.js -------------------------------------------------------------------------------- /src/components/Main/Deposits/Deposits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Main/Deposits/Deposits.js -------------------------------------------------------------------------------- /src/components/Main/Deposits/SortingBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Main/Deposits/SortingBar.js -------------------------------------------------------------------------------- /src/components/Main/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Main/Main.js -------------------------------------------------------------------------------- /src/components/Main/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Main/Nav.js -------------------------------------------------------------------------------- /src/components/Main/NewDepositBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Main/NewDepositBtn.js -------------------------------------------------------------------------------- /src/components/Sidebar/Menu/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Sidebar/Menu/Menu.js -------------------------------------------------------------------------------- /src/components/Sidebar/Menu/MenuLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Sidebar/Menu/MenuLink.js -------------------------------------------------------------------------------- /src/components/Sidebar/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Sidebar/Profile.js -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Sidebar/Sidebar.js -------------------------------------------------------------------------------- /src/components/Sidebar/ToggleSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/components/Sidebar/ToggleSwitch.js -------------------------------------------------------------------------------- /src/containers/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/containers/Dashboard.js -------------------------------------------------------------------------------- /src/context/themeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/context/themeContext.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/styles/global.js -------------------------------------------------------------------------------- /src/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/src/styles/theme.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/figma-react-dashboard/HEAD/yarn.lock --------------------------------------------------------------------------------