Spaces:
Running
Running
| 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> | |
| ); | |
| } | |