diff --git a/oidc-ui/src/components/Footer.js b/oidc-ui/src/components/Footer.js
new file mode 100644
index 000000000..f658cb545
--- /dev/null
+++ b/oidc-ui/src/components/Footer.js
@@ -0,0 +1,16 @@
+import { useTranslation } from "react-i18next";
+
+export default function Footer({ i18nKeyPrefix = "footer" }) {
+ const footerCheck = process.env.REACT_APP_FOOTER === "true";
+
+ const { t } = useTranslation("translation", {
+ keyPrefix: i18nKeyPrefix,
+ });
+
+ return footerCheck && (
+
+ );
+}