This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/ref/astro-imagetools/docs/src/components/Footer/Footer.astro
2025-03-07 14:59:06 +01:00

17 lines
251 B
Plaintext

---
import AvatarList from "./AvatarList.astro";
const { path } = Astro.props;
---
<footer>
<AvatarList {path} />
</footer>
<style>
footer {
margin-top: auto;
padding: 2rem 0;
border-top: 3px solid var(--theme-divider);
}
</style>