13 Buttons & Text

Add text and buttons to any section using paragraphs, texts, or buttons arrays.

Button Fields

FieldDescription
labelButton text
urlButton link URL
style"primary" (black bg) or "outline" (border only)
align"left", "center" (default), or "right"

Buttons & Text Use Cases

Text only (paragraphs)

This is a paragraph with bold and italic text.

Another paragraph with inline code.

{
    "label": "ABOUT ME",
    "paragraphs": [
        "Paragraph with **bold** and *italic*.",
        "Another paragraph with `code`."
    ]
}

Primary button

{
    "label": "View Research",
    "url": "#",
    "style": "primary"
}

Outline button

{
    "label": "Download CV",
    "url": "#",
    "style": "outline"
}

Text with buttons

Research interests and a link below.

View Profile
{
    "label": "RESEARCH",
    "texts": [
        "**Primary:** Field, Method, Topic"
    ],
    "buttons": [
        { "label": "View Profile", "url": "#", "style": "primary" }
    ]
}

Button aligned left

{
    "label": "Left Aligned",
    "url": "#",
    "style": "primary",
    "align": "left"
}