← back to Hub

app/layout.tsx

22 lines

import type { Metadata } from 'next';
import './globals.css';

export const metadata: Metadata = {
  title: 'Hub - SDCC Command Center',
  description: 'Unified dashboard across all SDCC ecosystem apps',
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en" className="dark">
      <body>
        <div id="app-root">{children}</div>
      </body>
    </html>
  );
}