---
// SiteFooter — the bottom of every chapter page. Holds the inline-nav links
// (chapter-to-chapter or to the field guide) plus the small footer text.
//
// The chapter pages use a "pill" link style: 1px ink border, ink text,
// inverts on hover. Padding and gap are inherited from chapters.css
// `.links`. The block element is the lower bound of the page main — no
// margin/padding magic, just the rule above the first link.
//
// Footer text (the muted paragraph) goes into the default slot.
interface Props {
/** Optional accessible label for the inline-nav region. */
navLabel?: string;
}
const { navLabel = 'Chapter navigation' } = Astro.props;
---