Files
blackroad-operating-system/apps/prism-console/app/layout.tsx
2025-11-21 00:18:26 -06:00

36 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import "./globals.css";
import type { ReactNode } from "react";
export const metadata = {
title: "BlackRoad OS Prism Console",
description: "Operator console for BlackRoad OS"
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>
<div style={{ display: "flex", minHeight: "100vh" }}>
<aside
style={{
width: "240px",
borderRight: "1px solid #222",
padding: "1rem"
}}
>
<h1 style={{ fontSize: "1.1rem", marginBottom: "1rem" }}>
Prism Console
</h1>
<nav style={{ display: "flex", flexDirection: "column", gap: "0.5rem" }}>
<a href="/" style={{ textDecoration: "none" }}>Dashboard</a>
<a href="/agents" style={{ textDecoration: "none" }}>Agents</a>
<a href="/health" style={{ textDecoration: "none" }}>Health</a>
</nav>
</aside>
<main style={{ flex: 1, padding: "1.5rem" }}>{children}</main>
</div>
</body>
</html>
);
}