Nextjs parallel routing questions

I have this routing setup right,
{
  (main) {
    about {}
    contact {}
    (illustrations) {
      @admin {page.tsx}
      @user {page.tsx}
      illustartions {
        [id] {
          {page.tsx}
        }
      }
    }
  }
}

Where do I put the layout.tsx for the illustrations group?
Solution
Yes
Was this page helpful?