# Security Badges

> Render trust, compliance, and reliability badges.

Canonical HTML: https://press.varavel.com/docs/shortcodes/security-badges/
Markdown: https://press.varavel.com/docs/shortcodes/security-badges/index.md

`security_badges` renders uniform cards for trust claims without introducing decorative color.

## When to Use

Use it for security, privacy, compliance, infrastructure, or reliability proof points.

## Usage

```markdown
{{/* security_badges(title="Trust by default", item_1_icon="shield-check", item_1_title="Secure") */}}
```

## Live Example

{{ security_badges(
container="md",
eyebrow="Trust",
title="Trust signals without noise",
description="Keep claims structured and easy to scan.",
item_1_icon="shield-check",
item_1_title="Secure defaults",
item_1_desc="Clear structure and no external UI dependencies.",
item_2_icon="lock-keyhole",
item_2_title="Private by design",
item_2_desc="Use static forms with explicit backend choices.",
item_3_icon="server",
item_3_title="Portable output",
item_3_desc="Deploy generated files on standard static hosts."
) }}

## Parameters

| Parameter      | Description                                  |
| -------------- | -------------------------------------------- |
| `container`    | Inner content width.                         |
| `eyebrow`      | Small uppercase label above the heading.     |
| `title`        | Section heading.                             |
| `description`  | Supporting copy.                             |
| `item_N_icon`  | Badge icon, up to 6.                         |
| `item_N_title` | Badge title.                                 |
| `item_N_desc`  | Badge description.                           |
| `bg`           | Full-width section background token.         |
| `class`        | Additional CSS classes on the outer section. |
