Files
codey.lol/src/components/Footer.astro

27 lines
642 B
Plaintext
Raw Normal View History

2025-06-18 07:46:59 -04:00
---
2025-08-14 11:40:02 -04:00
import { metaData, ENVIRONMENT } from "../config";
2025-06-22 09:50:36 -04:00
import RandomMsg from "../components/RandomMsg";
2025-07-19 22:57:35 -04:00
import { buildTime, buildNumber } from '../utils/buildTime.js';
2025-06-18 07:46:59 -04:00
const YEAR = new Date().getFullYear();
2025-08-14 11:40:02 -04:00
2025-06-18 07:46:59 -04:00
---
<div class="footer">
<RandomMsg client:only="react" />
<div style="margin-top: 15px; bottom: 0%">
2025-07-19 22:57:35 -04:00
<small>Build# {buildNumber}
<br>
Built: {buildTime} UTC</small>
</div>
<span style="font-size: 0.75rem; font-style: italic; margin-left: 100%">{ENVIRONMENT}</span>
</div>
2025-06-18 07:46:59 -04:00
<style>
@media screen and (max-width: 480px) {
article {
padding-top: 2rem;
padding-bottom: 4rem;
}
}
</style>