SentinelAI / frontend /src /app /layout.tsx
iitian's picture
Sync SentinelAI project and add Hugging Face Docker Space layout.
8b3905d
raw
history blame contribute delete
823 Bytes
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "SentinelAI — Autonomous AI SOC",
description:
"Multi-agent security operations center with live threat correlation, AMD ROCm-ready inference, and enterprise-grade response orchestration.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark">
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
</body>
</html>
);
}