initial commit
This commit is contained in:
22
src/components/Footer.astro
Normal file
22
src/components/Footer.astro
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
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>
|
Reference in New Issue
Block a user