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

# May 30, 2022 - Suporte a boleto por BS2

export const AuthorProfile = ({author}) => <div className="flex flex-row gap-3 items-center">
    {author.image && <img src={author.image} alt={author.name} className="w-10 h-10 rounded-full m-0" />}
    <div>
      <a href={author.url}>{author.name}</a>
      <br />
      <span>{author.title}</span>
    </div>
  </div>;

export const marcel = {
  name: " Marcel Nicolay",
  title: "CTO at Malga",
  url: "https://github.com/marcelnicolay",
  image: "https://github.com/marcelnicolay.png"
};

<AuthorProfile author={marcel} />

**Versão 30-05-2022**

Adiciona suporte a pagamento por boleto BS2.

<Tip>
  Features

  1. PROV-6 - Suportar pagamentos através de Boleto no banco (BS2)
</Tip>
