22 lines
420 B
Plaintext
22 lines
420 B
Plaintext
|
---
|
||
|
import { metaData } from "../config";
|
||
|
import { Icon } from "astro-icon/components";
|
||
|
|
||
|
const YEAR = new Date().getFullYear();
|
||
|
|
||
|
---
|
||
|
|
||
|
<small class="block lg:mt-24 mt-16 text-[#1C1C1C] dark:text-[#D4D4D4] footer-text">
|
||
|
<time>© {YEAR}</time>{" "}
|
||
|
{metaData.owner}
|
||
|
</a>
|
||
|
</small>
|
||
|
|
||
|
<style>
|
||
|
@media screen and (max-width: 480px) {
|
||
|
article {
|
||
|
padding-top: 2rem;
|
||
|
padding-bottom: 4rem;
|
||
|
}
|
||
|
}
|
||
|
</style>
|