What does this Liquid code do? {% sections 'header-group' %} 🔄
### Explanation
The `{% sections 'header-group' %}` tag is used to render a group of related sections in Shopify themes:
Key points:
- Section groups allow multiple sections to be managed together
- Different from `{% section %}` which renders a single section
- Common use cases:
- Header components (announcement bars, menus, logos)
- Footer sections
- Related content blocks
- Benefits:
- Better organization in theme editor
- Reusable across templates
- Maintains relationships between sections
Example section group structure:
```liquid
{% sections 'header-group' %}
```
Reference: [Shopify Sections Groups](https://shopify.dev/themes/architecture/sections/section-groups)
Answer Options:
- Renders a single header section from the sections directory
- Renders multiple sections that are grouped together under 'header-group'
- Creates a new section group in the theme editor
- Returns error - `sections` is not a valid tag