import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Mission Control - NodeCrew", description: "Track tasks, content, calendar, memory, team, and office", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }