> ## 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.

# Aug 19 - Picpay

> Novo método Picpay

export const AuthorProfile = ({author}) => <div className="flex flex-row gap-3 items-center">
    {author.image && <img src={author.image} 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 joao = {
  name: "João Filho",
  title: "Software Engineer",
  url: "https://github.com/drummerzzz",
  image: "https://github.com/joaofilho-plug.png"
};

export const alberto = {
  name: "Alberto Martins",
  title: "Software Engineer",
  url: "https://github.com/albertomalga",
  image: "https://github.com/albertomalga.png"
};

<div className="flex flex-row gap-4">
  <AuthorProfile author={alberto} />

  <div className="mx-1">
    <AuthorProfile author={joao} />
  </div>
</div>

**Agora contamos com a PicPay como provedor e método de pagamento na Malga!🎉**

Estamos animados em anunciar a nova integração com o **PicPay**!

Agora os clientes Malga podem utilizar o Picpay como provedor de crédito 💳, ou [utilizar a wallet do PicPay como método de pagamento](/documentations/payment-methods/picpay).

Continue acompanhando as novidades da Malga 🤓🎉
