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>