summaryrefslogtreecommitdiff
path: root/examples/docs/src/components/Footer/Footer.astro
blob: ab0634976fa7777b8bd89bd7008421992acfcbb4 (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} />
</footer>

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