17 lines
251 B
Plaintext
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>
|