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>