setOpen(false)} />
>
);
};
function BurgerIcon({ open }) {
return (
);
}
window.Footer = function Footer({ navigate }) {
// Only render links that point somewhere real. Placeholders removed
// rather than rendered as inert "#" anchors — the user complained
// (rightly) about fake links.
const docs = window.api ? window.api.docsUrl() : null;
const status = window.api ? window.api.statusUrl() : null;
const year = new Date().getFullYear();
return (
);
};
// Small inline icon set
window.Icon = function Icon({ name, size = 18, ...rest }) {
const common = { width: size, height: size, viewBox: '0 0 24 24', fill: 'none', stroke: 'currentColor', strokeWidth: 1.6, strokeLinecap: 'round', strokeLinejoin: 'round', ...rest };
const paths = {
search: <>
>,
plus: <>
>,
minus: <>
>,
chev:
,
chevDown:
,
arrow: <>
>,
check:
,
node: <>
>,
sparkle: <>
>,
shield:
,
bolt:
,
layers: <>
>,
};
return
;
};