Can I show a default block in the blocks field? Kirby 3.5

Would it be possible to show a text block as default when I load the blocks field in the panel?

Yes ! with default :slight_smile:

blocks:
  default:
    - type: heading 
      content: 
        text: My Heading
    - type: text
      content: 
        text: My text block
    - type: image
      content: 
        image: someimage.jpg

Thanks! this worked perfectly.