diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 21:30:56 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 21:30:56 -0600 |
commit | 5244aff586df93de2b9973de9c9046e4ad6163bd (patch) | |
tree | 58f4a96f44ba2e724fcf11d2cebc555989646e67 /client/src/App.js | |
parent | f52782c4dccc3f2330d9dcd14ba4e3cf0522f8cf (diff) |
improve styling
Diffstat (limited to 'client/src/App.js')
-rw-r--r-- | client/src/App.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/App.js b/client/src/App.js index a83b628..7d84cb0 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -93,13 +93,17 @@ function App() { </Menu.Item> </Menu> </div> - + <div style={{ backgroundColor: 'var(--color-fill-2)', minHeight: '80vh', display: 'flex', flexDirection: 'column' }}> <Routes> <Route path="/" element={<Navigate to="/market-data" replace />} /> <Route path="/market-data" element={<MarketDataPage />} /> <Route path="/submit-bid" element={<SubmitBidPage />} /> <Route path="/bids" element={<BidsPage />} /> </Routes> + </div> + <footer style={{ flexShrink: 0, marginTop: 20, textAlign: 'center', fontSize: 14, color: 'var(--color-text-3)', paddingBottom: 20 }}> + © {new Date().getFullYear()} PolyEnergy. All rights reserved. + </footer> </div> </MarketContext.Provider> ); |