// react-doctor: nextjs-missing-metadata — metadata declared in layout
// because the sibling page.tsx is a client component ()
// and Next.js disallows the  export from client modules.
import type { Metadata } from 'next';

export const metadata: Metadata = {
    title: 'Monitors — Uptime Sentinel',
    description: 'Configured monitors and current status',
};

export default function Layout({ children }: { children: React.ReactNode }) {
    return children;
}
