Skip to content
Last updated

The good

  • We were able to customize (hardcode) Footer component

What to improve

  • The FooterColumTitle component expects the link property, byt we weren't able to pass it through the config.

    <FooterColumnTitle>
      {column.link ? (
        <Link to={column.link} external={column.external} target={column.target}>
          {label}
        </Link>
      ) : (
        label
      )}
    </FooterColumnTitle>

    Screenshot 2024-09-24 at 14.34.34.png

  • It would be good to see relation beetween markdoc props and react componet props

  • It would be better to render SVG previews in the Webwiew tab instead of the source tab because it makes harder to edit the files.

  • Copying and pasting image puts the uploaded file into wrong directories: image-copy-paste.gif I'd expect the file to be put into a selected directory.

  • Strange problem when groups names are empty: Screenshot 2024-09-24 at 12.26.52.png

  • Overrall experience was bad, we have to wait 1 minute to apply cahnges. Probably it's because of large git-hub yaml + multiple languages. Editor is alos slow.