* feat: add blog to `www` * feat: add BlogHeader * wip: add heroImage support * feat: update hero image styling * finalize blog post * use site index instead of blog index * fix: don't use float * chore: copy cleanup * fix: scroll issue on landing page Co-authored-by: Fred K. Schott <fkschott@gmail.com>
15 lines
204 B
Text
15 lines
204 B
Text
---
|
|
import AvatarList from './AvatarList.astro';
|
|
---
|
|
|
|
<footer>
|
|
<AvatarList />
|
|
</footer>
|
|
|
|
<style>
|
|
footer {
|
|
margin-top: auto;
|
|
padding: 2rem 0;
|
|
border-top: 3px solid var(--theme-divider);
|
|
}
|
|
</style>
|