From 92c66b9bc797a7b9a835de28061336ded78ee86d Mon Sep 17 00:00:00 2001 From: Van Nguyen <36019388+nguyentvan7@users.noreply.github.com> Date: Sun, 9 Mar 2025 13:11:30 -0700 Subject: [PATCH] SRO/ZO: Add footer to SR and ZZZ (#2833) * Show commit hash in header for dev mode * Revert "Show commit hash in header for dev mode" This reverts commit 2083ab7eaa0a8ad8afef6825fbe7b43252df922d. * Add footer to zzz and sr * Update strings --- apps/sr-frontend/src/app/App.tsx | 4 +++ apps/sr-frontend/src/app/Footer.tsx | 45 ++++++++++++++++++++++++++++ apps/zzz-frontend/src/app/App.tsx | 4 +++ apps/zzz-frontend/src/app/Footer.tsx | 45 ++++++++++++++++++++++++++++ 4 files changed, 98 insertions(+) create mode 100644 apps/sr-frontend/src/app/Footer.tsx create mode 100644 apps/zzz-frontend/src/app/Footer.tsx diff --git a/apps/sr-frontend/src/app/App.tsx b/apps/sr-frontend/src/app/App.tsx index 7e495f7c2d..0aa32ce430 100644 --- a/apps/sr-frontend/src/app/App.tsx +++ b/apps/sr-frontend/src/app/App.tsx @@ -14,6 +14,7 @@ import { } from '@mui/material' import { Suspense, lazy } from 'react' import { HashRouter, Route, Routes } from 'react-router-dom' +import Footer from './Footer' import Header from './Header' import PageHome from './PageHome' @@ -83,6 +84,9 @@ function Content() { + {/* make sure footer is always at bottom */} + +