summaryrefslogtreecommitdiff
path: root/docs/src/components/ArticleFooter.astro
blob: 48de51054180be6a1acce03377586aef3b08f776 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
import AvatarList from './AvatarList.astro';
const { path } = Astro.props;
---

<footer>
  <AvatarList path={path} />
</footer>

<style>
footer {
  margin-top: auto;
  padding: 2rem 0;
  border-top: 3px solid var(--theme-divider);
}
</style>