mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 07:57:19 -05:00
14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
export default function Page() {
|
|
return (
|
|
<div>
|
|
<h2>Prism Console</h2>
|
|
<p>Welcome to the BlackRoad OS operator console.</p>
|
|
<ul>
|
|
<li>Monitor services</li>
|
|
<li>Inspect agents</li>
|
|
<li>Trigger workflows</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|