website/src/components/Footer.astro
2025-05-03 17:40:21 +01:00

12 lines
466 B
Text

---
import child_process from "child_process";
// Get commit hash
const hash = child_process.execSync("git rev-parse --short HEAD").toString().trim();
---
<footer class="flex justify-between gap-3 text-peach/50 *:hover:text-peach *:transition-colors text-sm mt-4">
<a href="https://github.com/trafficlunar/website">Source code</a>
<!-- <span>•</span> -->
<a href=`https://github.com/trafficlunar/website/commit/${hash}` class="font-mono">{hash}</a>
</footer>