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/src/app/components/identity/DIDResolver.tsx b/client/src/app/components/identity/DIDResolver.tsx
index 382fbe090..0fb8b168f 100644
--- a/client/src/app/components/identity/DIDResolver.tsx
+++ b/client/src/app/components/identity/DIDResolver.tsx
@@ -148,8 +148,8 @@ export default IdentityStardustResolver;
async function constructVerifiedDomains(resolvedDID: IDIDResolverResponse): Promise