import './globals.css'; import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Boardware Genius Auth Portal', description: 'Dedicated login and registration portal for nanobot containers.', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }