// js/_shared/SiteFooter.jsx // // Canonical site footer. ONE component, every page. // Ported from beava-design-system/project/ui_kits/_shared/SiteFooter.jsx // with absolute paths and real hrefs. // const SITE_FOOTER_COLS = [ { title: 'Project', links: [ { label: 'Guide', href: '/guide/' }, { label: 'Docs', href: '/docs/' }, { label: 'Roadmap', href: '/docs/community/rfcs/' }, { label: 'OSS commitment', href: '/docs/vision/open-source/' }, ]}, { title: 'Community', links: [ { label: 'GitHub', href: 'https://github.com/beava-dev/beava', external: true }, { label: 'Discussions', href: 'https://github.com/beava-dev/beava/discussions', external: true }, { label: 'RFCs', href: '/docs/community/rfcs/' }, ]}, ]; const SiteFooter = ({ maxWidth = 1200 }) => ( ); window.SiteFooter = SiteFooter;