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

26 lines
650 B
Plaintext
Raw Normal View History

2025-06-18 07:46:59 -04:00
---
2025-06-22 09:50:36 -04:00
import { metaData, API_URL } from "../config";
import RandomMsg from "../components/RandomMsg";
import { buildTime } from '../utils/buildTime.js';
2025-06-18 07:46:59 -04:00
const YEAR = new Date().getFullYear();
---
<div class="footer">
<small class="block lg:mt-24 mt-16 text-[#1C1C1C] dark:text-[#D4D4D4] footer-text">
<time>© {YEAR}</time>{" "}
{metaData.owner}
</a>
</small>
<RandomMsg client:only="react" />
<div style="margin-top: 15px; bottom: 0%">
<small>Built: {buildTime} UTC</small>
</div>
</div>
2025-06-18 07:46:59 -04:00
<style>
@media screen and (max-width: 480px) {
article {
padding-top: 2rem;
padding-bottom: 4rem;
}
}
</style>