The Product Summary Brand block has been deprecated in favor of the Product Brand app from the Store Components collection. Although support for this block is still granted, we strongly recommend updating your store theme with the Product Brand block.
Product Summary Brand is a block exported by the Product Summary app responsible for rendering the brand of the product.

Before you start
Ensure that you have registered brands in your store. To do so, follow the How to register brands guide.
Configuration
- Import the
vtex.product-summaryapp to your theme's dependencies in themanifest.json:
_10 "dependencies": {_10 "vtex.product-summary": "2.x"_10 }
- Add the
product-summary-brandblock to your store theme as a child of theproduct-summary.shelfblock. For example:
_10 "product-summary.shelf": {_10 "children": [_10 "product-summary-image",_10 "product-summary-name",_10+ "product-summary-brand",_10 "product-summary-attachment-list",_10 "product-summary-space",_10 "product-summary-column#1"_10 ]_10 },