import { ReactNode } from 'react'; export default function VerbandLayout({ children }: { children: ReactNode }) { return <>{children}; }