aboutsummaryrefslogtreecommitdiff
path: root/examples/docs/src/components/Footer/Footer.astro
blob: 1ec756b8696cacacadb3ec36abe82c6b79a67b4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
import AvatarList from './AvatarList.astro';
type Props = {
	path: string;
};
const { path } = Astro.props as Props;
---

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

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