[SOLVED] Ethereum nft boilerplate how to change logo?

I am trying to change the logo in the app.jsx from the ethereum boilerplate nft marketplace. I can see in the header section this code

It seems it has to do with the antd module but I haven’t used it before, where can I insert the link for a new logo?

      <Logo />

If you’re talking about this Logo component, this is where you can change it:

export const Logo = () => (
  <div style={{ display: "flex" }}>
  // image here
  </div>
);

You could use another SVG or an <img /> element.

exactly what I needed ! thanks glad :slight_smile: