// ╔═══════════════════════════════════════════════════════════╗
// ║ KENSAI WEB · Top nav (v4 chassis chrome) ║
// ╚═══════════════════════════════════════════════════════════╝
const NavLogo = ({ size = 16 }) => (
);
const TopBar = () => {
const [t, setT] = React.useState(() => new Date());
const [menu, setMenu] = React.useState(false);
React.useEffect(() => {
const id = setInterval(() => setT(new Date()), 1000);
return () => clearInterval(id);
}, []);
const hh = String(t.getUTCHours()).padStart(2, '0');
const mm = String(t.getUTCMinutes()).padStart(2, '0');
const ss = String(t.getUTCSeconds()).padStart(2, '0');
const items = [
['Platform', '#platform'],
['Signature', '#signature'],
['Defense', '#defense'],
['Offense', '#offense'],
['Bounty', '#bounty'],
['Trust', '#governance'],
['Pricing', '#pricing'],
['Docs', '#docs'],
];
return (