Skip to main content

Getting Started

5 minutes

Follow the steps below to embed Ready-to-Launch into your app, and experiment with it, using sandbox data.

First steps

  1. Add the script tag below to your HTML head tag
<script async src="https://ui.s.unit.sh/release/latest/components-extended.js"></script>
  1. Add a new page to your app, that will host the Ready-to-Launch banking experience. Paste the code below to the new page.

<unit-elements-white-label-app
jwt-token="demo.jwt.token"
</unit-elements-white-label-app>

Initial Branding

The component can be styled by using a theme object, for example:

<unit-elements-white-label-app
jwt-token="demo.jwt.token"
settings-json='{
"global": {
"colors": {
"primary": "#3A4ADF"
},
"buttons": {
"primary": {
"default": {
"borderRadius": "8px"
}
}
}
},
"elementsCard": {
"designs": [
{
"name": "default",
"url": "https://ui.dev.unit.sh/resources/outlay.png",
"fontColor": "#fafafa"
}
]
}
}'
>
</unit-elements-white-label-app>