diff --git a/client/src/app/components/footer/ExplorerVersion.scss b/client/src/app/components/footer/ExplorerVersion.scss
new file mode 100644
index 000000000..19377bce2
--- /dev/null
+++ b/client/src/app/components/footer/ExplorerVersion.scss
@@ -0,0 +1,25 @@
+@import "../../../scss/fonts";
+@import "../../../scss/media-queries";
+@import "../../../scss/mixins";
+@import "../../../scss/variables";
+
+.explorer-version {
+ display: flex;
+ width: 100%;
+ background-color: $gray-11;
+ justify-content: center;
+ padding-bottom: 12px;
+
+ &.shimmer-version {
+ position: absolute;
+ bottom: 0;
+ background-color: transparent;
+ }
+
+ span {
+ @include font-size(13px);
+
+ font-family: $inter;
+ color: $gray-6;
+ }
+}
diff --git a/client/src/app/components/footer/ExplorerVersion.tsx b/client/src/app/components/footer/ExplorerVersion.tsx
new file mode 100644
index 000000000..821baae6b
--- /dev/null
+++ b/client/src/app/components/footer/ExplorerVersion.tsx
@@ -0,0 +1,17 @@
+import React from "react";
+import classNames from "classnames";
+import "./ExplorerVersion.scss";
+
+export default function ExplorerVersion({ shimmerTheme }: { shimmerTheme?: boolean }): React.JSX.Element {
+ const explorerVersion = EXPLORER_VERSION ?? "";
+
+ return (
+ <>
+ {explorerVersion && (
+
+ )}
+ >
+ );
+}
diff --git a/client/src/app/components/footer/Footer.scss b/client/src/app/components/footer/Footer.scss
index 7dac793a3..c0f3b9110 100644
--- a/client/src/app/components/footer/Footer.scss
+++ b/client/src/app/components/footer/Footer.scss
@@ -7,7 +7,7 @@ footer {
.footer--content {
display: flex;
justify-content: center;
- padding: 40px 20px 64px 20px;
+ padding: 40px 20px 0px 20px;
background-color: $gray-11;
color: $white;
diff --git a/client/src/app/components/footer/Footer.tsx b/client/src/app/components/footer/Footer.tsx
index 8d3117e70..9826bdf22 100644
--- a/client/src/app/components/footer/Footer.tsx
+++ b/client/src/app/components/footer/Footer.tsx
@@ -11,6 +11,7 @@ import TwitterIcon from "~assets/twitter.svg?react";
import YoutubeIcon from "~assets/youtube.svg?react";
import { FoundationDataHelper } from "~helpers/foundationDataHelper";
import AsyncComponent from "../AsyncComponent";
+import ExplorerVersion from "./ExplorerVersion";
import "./Footer.scss";
/**
@@ -135,6 +136,7 @@ class Footer extends AsyncComponent {
+
{this.SOCIAL_LINKS.map((social, socialID) => (
{
+
);
diff --git a/client/vite-env.d.ts b/client/vite-env.d.ts
index 8827bbe8f..88c01eeb3 100644
--- a/client/vite-env.d.ts
+++ b/client/vite-env.d.ts
@@ -1,3 +1,4 @@
///
///
+declare const EXPLORER_VERSION: string;
diff --git a/client/vite.config.ts b/client/vite.config.ts
index ab31aace8..6b1c0737b 100644
--- a/client/vite.config.ts
+++ b/client/vite.config.ts
@@ -23,6 +23,9 @@ export default defineConfig(() => {
}),
nodePolyfills()
],
+ define: {
+ EXPLORER_VERSION: JSON.stringify(process.env.npm_package_version)
+ },
test: {
globals: true,
teardownTimeout: 100