Sidebar Background
logo Search
logo Search
Icon

Get Started

Icon

Configuration

Icon

Overrides

Meta and Actions

Configuration


Meta and actions are the top of your homepage that include the title, description, and buttons. This can be found under the splash section of config.json.

For the logo, please set your logo at assets/logo.png.

Title - splash.title

The title shown at the top of the homepage.

Description - splash.description

The description shown at the top of the homepage. Should be kept short.

Actions - splash.actions

Shown as two buttons at the top of the homepage.

You’ll have both a primary and secondary action button, containing text and url.

...
    "actions": {
        "primary": {
            "text": "Primary Action",
            "url": "#"
        },
        "secondary": {
            "text": "Secondary Action",
            "url": "#"
        }
    }
...