diff --git a/src/components/BaseHead.astro b/src/components/BaseHead.astro
index 3f667661b..697172ae5 100644
--- a/src/components/BaseHead.astro
+++ b/src/components/BaseHead.astro
@@ -5,6 +5,8 @@ interface Props {
image?: string;
}
+const buildTimestamp = import.meta.env.TIMESTAMP;
+const gitVersion = import.meta.env.GIT_VERSION;
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
const { title, description, image = "/social-card.png" } = Astro.props;
@@ -15,6 +17,8 @@ const { title, description, image = "/social-card.png" } = Astro.props;
+
+