diff --git a/components/build-stamp.tsx b/components/build-stamp.tsx new file mode 100644 index 0000000..5dcf2a8 --- /dev/null +++ b/components/build-stamp.tsx @@ -0,0 +1,5 @@ +import { buildCommit } from "@/lib/build-info"; + +export function BuildStamp() { + return build {buildCommit.slice(0, 7)}; +} diff --git a/components/site-footer.tsx b/components/site-footer.tsx index 267d016..c579171 100644 --- a/components/site-footer.tsx +++ b/components/site-footer.tsx @@ -1,5 +1,6 @@ import Link from "next/link"; import { BrandMark } from "@/components/brand-mark"; +import { BuildStamp } from "@/components/build-stamp"; export function SiteFooter() { return ( @@ -25,7 +26,7 @@ export function SiteFooter() {