import { AuthShell } from '@/components/layout/auth-shell';

export default function CaptainLayout({ children }: { children: React.ReactNode }) {
  return <AuthShell role="captain">{children}</AuthShell>;
}
