agentic-os/interface/hq-dashboard/app/layout.jsx

15 lines
372 B
JavaScript

import './globals.css';
export const metadata = {
title: 'Agentic OS HQ — AI Agent Command Center',
description: 'Control center and dashboard for monitoring and managing autonomous workflows (Bernard, Gumbo, OpsAgent, Curio).',
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}