Early research preview — this project is an experiment and may change significantly.
Bloktastic

sections

Team Grid

Team showcase section with nested team member cards.

#team#about#people#company

Storyblok Schema

json

{
  "$bloktastic": {
    "version": "1.0.0"
  },
  "name": "team_grid",
  "display_name": "Team Grid",
  "is_root": false,
  "is_nestable": true,
  "schema": {
    "headline": {
      "type": "text",
      "pos": 0,
      "display_name": "Headline",
      "description": "Team section heading",
      "required": true
    },
    "subline": {
      "type": "textarea",
      "pos": 1,
      "display_name": "Subline",
      "description": "Optional description"
    },
    "members": {
      "type": "bloks",
      "pos": 2,
      "display_name": "Members",
      "description": "List of team member bloks",
      "required": true,
      "restrict_components": true,
      "component_whitelist": [
        "team_member"
      ]
    },
    "columns": {
      "type": "option",
      "pos": 3,
      "display_name": "Columns",
      "default_value": "3",
      "options": [
        {
          "name": "2 Columns",
          "value": "2"
        },
        {
          "name": "3 Columns",
          "value": "3"
        },
        {
          "name": "4 Columns",
          "value": "4"
        }
      ],
      "description": "Desktop column count"
    }
  },
  "preview_field": "headline"
}

Generation Prompt

md

# Team Grid

## Purpose
Team showcase section with nested team member cards.

## Storyblok Schema Fields
- `headline` (text, required): Team section heading
- `subline` (textarea): Optional description
- `members` (bloks, required): List of team member bloks
- `columns` (option): Desktop column count

## Visual Requirements
- Design for responsive marketing pages (mobile, tablet, desktop).
- Keep spacing and hierarchy clear for conversion-focused sections.
- Support optional content gracefully without visual gaps.

## Accessibility
- Use semantic sectioning and heading structure.
- Ensure interactive elements are keyboard reachable with visible focus states.
- Maintain WCAG-compliant contrast in all supported styles.

## Example Props Structure
```typescript
interface TeamGridProps {
  // Map Storyblok fields to your frontend props here
}
```

## Edge Cases
- Missing optional media or links.
- Extremely long text content.
- Empty collections in nested blok fields.

README

md

# @bloktastic/team-grid

Team showcase section with nested team member cards.

## Installation

```bash
bloktastic add @bloktastic/team-grid
```

## Fields

| Field | Type | Required | Description |
|---|---|---|---|
| headline | text | Yes | Team section heading |
| subline | textarea | No | Optional description |
| members | bloks | Yes | List of team member bloks |
| columns | option | No | Desktop column count |

## Notes
- Category: `sections`
- Tags: `team`, `about`, `people`, `company`