> ## Documentation Index
> Fetch the complete documentation index at: https://wiki.latch.bio/llms.txt
> Use this file to discover all available pages before exploring further.

# About Page

It is common for nextflow developers to include markdown documentation in
a `docs` folder in the root of a project. To render one of these
files in the "About" tab of the workflow interface on Latch, to provide
motivation and instructions to users of the workflow, one provides the path
of the desired file to the `NextflowMetadata` object.

```
from pathlib import Path
from latch.types.metadata import NextflowMetadata

NextflowMetadata(
    name="some-workflow",
    about_page_path=Path("docs/about.md"),
    ...
)
```

<img src="https://mintcdn.com/latchbio/uN1BKX4g3v1ZQv8l/images/workflows/nextflow/about-page.png?fit=max&auto=format&n=uN1BKX4g3v1ZQv8l&q=85&s=2a216dd9d8ce4879eca50861a116072f" alt="Nextflow About GUI" width="3456" height="1670" data-path="images/workflows/nextflow/about-page.png" />
