This commit is contained in:
2025-06-16 13:37:14 +02:00
parent ac273655e6
commit a8b82208f7
5100 changed files with 737524 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
import './style.css';
import KernelStatus from '../KernelStatus/KernelStatus.jsx';
export default function StatusBar({ links }) {
return (
<div class="status-bar">
<KernelStatus />Kernel ready {links.length} links loaded Ready for interaction
</div>
);
}

View File

@@ -0,0 +1,11 @@
.status-bar {
font-size: 0.85rem;
color: #586069;
padding: 10px 0;
border-top: 1px solid #e1e4e8;
margin-top: 30px;
display: flex;
align-items: center;
}