# blockenberg/2.0.7/blocks/address-card/block.json

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 159 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/address-card/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/address-card/block.json
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/address-card/block.json#L10-L20`.

```json
{
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "apiVersion": 3,
    "name": "blockenberg/address-card",
    "version": "1.0.0",
    "title": "Address Card",
    "category": "bkbg-business",
    "description": "Business address card with contact details, opening hours, and optional map link.",
    "keywords": [
        "address",
        "location",
        "contact",
        "office",
        "business",
        "map"
    ],
    "textdomain": "blockenberg",
    "editorScript": "bkbg-address-card-editor",
    "style": "bkbg-address-card-style",
    "attributes": {
        "companyName": {
            "type": "string",
            "default": "Blockenberg HQ"
        },
        "showCompany": {
            "type": "boolean",
            "default": true
        },
        "tagline": {
            "type": "string",
            "default": "Building the future of web blocks"
        },
        "showTagline": {
            "type": "boolean",
            "default": true
        },
        "address1": {
            "type": "string",
            "default": "42 Innovation Drive, Suite 800"
        },
        "address2": {
            "type": "string",
            "default": "San Francisco, CA 94105"
        },
        "country": {
            "type": "string",
            "default": "United States"
        },
        "showAddress": {
            "type": "boolean",
            "default": true
        },
        "phone": {
            "type": "string",
            "default": "+1 (415) 555-0199"
        },
        "showPhone": {
            "type": "boolean",
            "default": true
        },
        "email": {
            "type": "string",
            "default": "hello@blockenberg.com"
        },
        "showEmail": {
            "type": "boolean",
            "default": true
        },
        "website": {
            "type": "string",
            "default": "https://blockenberg.com"
        },
        "showWebsite": {
            "type": "boolean",
            "default": true
        },
        "hours": {
            "type": "string",
            "default": "Mon – Fri: 9:00 AM – 6:00 PM"
        },
        "showHours": {
            "type": "boolean",
            "default": true
        },
        "mapUrl": {
            "type": "string",
            "default": ""
        },
        "showMapLink": {
            "type": "boolean",
            "default": true
        },
        "mapLinkLabel": {
            "type": "string",
            "default": "View on Google Maps"
        },
        "accentColor": {
            "type": "string",
            "default": "#6366f1"
        },
        "bgColor": {
            "type": "string",
            "default": "#ffffff"
        },
        "cardBg": {
            "type": "string",
            "default": "#f9fafb"
        },
        "borderColor": {
            "type": "string",
            "default": "#e5e7eb"
        },
        "headingColor": {
            "type": "string",
            "default": "#111827"
        },
        "taglineColor": {
            "type": "string",
            "default": "#6b7280"
        },
        "textColor": {
            "type": "string",
            "default": "#374151"
        },
        "labelColor": {
            "type": "string",
            "default": "#6b7280"
        },
        "linkColor": {
            "type": "string",
            "default": "#6366f1"
        },
        "borderRadius": {
            "type": "number",
            "default": 14
        },
        "padding": {
            "type": "number",
            "default": 28
        },
        "fontSize": {
            "type": "number",
            "default": 14
        },
        "headingFontSize": {
            "type": "number",
            "default": 20
        },
        "headingTypo": {
            "type": "object",
            "default": {}
        },
        "bodyTypo": {
            "type": "object",
            "default": {}
        }
    }
}

```
