diff --git a/.agents/skills/silk-profiler/SKILL.md b/.agents/skills/silk-profiler/SKILL.md new file mode 100644 index 0000000000..64a8ee291b --- /dev/null +++ b/.agents/skills/silk-profiler/SKILL.md @@ -0,0 +1,285 @@ +--- +name: silk-profiler +description: Investigate backend performance using Django Silk profiling data. Use when investigating a slow endpoint, a potential bottleneck, N+1 queries, or understanding query patterns for a specific request. +--- + +# Investigate Backend Performance with Silk + +Use this skill to investigate a slow endpoint or a potential bottleneck. Django Silk (enabled by default in dev via `BASEROW_ENABLE_SILK` in `dev.py`) records every HTTP request, its SQL queries, and full Python stack traces into PostgreSQL. The user may provide a Silk request URL, a request ID, or just describe which endpoint is slow. + +## Prerequisites + +- Silk must be enabled (default in dev: `BASEROW_ENABLE_SILK=on` in `dev.py`) +- The slow operation must have been performed recently so Silk has captured it +- The dev database must be accessible (usually via `docker exec` into the `baserow-db-1` container) + +## Connecting to the Database + +Read the `DATABASES` setting in `backend/src/baserow/config/settings/base.py` (and `dev.py` which imports it) to find the connection credentials. Env vars may override the defaults. + +The database usually runs in a Docker container. Try `docker exec` first: + +```bash +docker exec psql -U -d -c "" +``` + +To find the container name: + +```bash +docker ps --format '{{.Names}}' | grep -i "db\|postgres" +``` + +If `psql` is available locally, connect directly using the host/port from the settings. **Try connecting first, only ask the user if it fails.** + +## Handling User Input + +The user may provide: + +- **A Silk URL** like `http://localhost:8000/silk/request//sql/` — extract the UUID between `/request/` and the next `/` as the request ID. +- **A request ID** (UUID) directly. +- **An endpoint path** like `/api/database/tables/123/` — search for it in `silk_request`. +- **A description** like "deleting a table is slow" — search by path pattern and sort by time. + +## Workflow + +### Step 1: Find the Request + +If you already have a request ID, skip to Step 2. + +```sql +-- Search by path pattern +SELECT id, path, method, round(time_taken::numeric, 0) AS ms, + num_sql_queries AS queries, start_time +FROM silk_request +WHERE path LIKE '%/api/PATTERN/%' +ORDER BY start_time DESC +LIMIT 10; +``` + +```sql +-- Slowest requests overall +SELECT id, path, method, round(time_taken::numeric, 0) AS ms, + num_sql_queries AS queries, start_time +FROM silk_request +ORDER BY time_taken DESC +LIMIT 10; +``` + +```sql +-- Requests with the most SQL queries (likely N+1) +SELECT id, path, method, num_sql_queries AS queries, + round(time_taken::numeric, 0) AS ms, start_time +FROM silk_request +ORDER BY num_sql_queries DESC +LIMIT 10; +``` + +### Step 2: Analyze Where Time Is Spent + +`meta_time_spent_queries` is usually NULL, so compute query time from `silk_sqlquery`: + +```sql +SELECT r.path, r.method, + round(r.time_taken::numeric, 0) AS total_ms, + r.num_sql_queries, + round(q.query_ms::numeric, 0) AS query_ms, + round((r.time_taken - q.query_ms)::numeric, 0) AS python_ms +FROM silk_request r +JOIN ( + SELECT request_id, SUM(time_taken) AS query_ms + FROM silk_sqlquery GROUP BY request_id +) q ON q.request_id = r.id +WHERE r.id = ''; +``` + +If `query_ms` dominates, the problem is database queries. If `python_ms` is high, the bottleneck is in Python code. + +### Step 3: Detect N+1 Query Patterns + +Group by **normalized** query text (string literals and integer params replaced with `?`) to catch N+1 patterns where the same query runs with different IDs: + +```sql +SELECT COUNT(*) AS count, + round(SUM(time_taken)::numeric, 1) AS total_ms, + LEFT(regexp_replace( + regexp_replace(query, '''[^'']*''', '''?''', 'g'), + '= \d+', '= ?', 'g' + ), 200) AS normalized +FROM silk_sqlquery +WHERE request_id = '' +GROUP BY regexp_replace( + regexp_replace(query, '''[^'']*''', '''?''', 'g'), + '= \d+', '= ?', 'g' +) +ORDER BY count DESC +LIMIT 15; +``` + +Any query appearing more than a handful of times is likely an N+1 problem. + +### Step 4: Examine Slow Individual Queries + +```sql +SELECT id, round(time_taken::numeric, 1) AS ms, LEFT(query, 300) AS query_preview +FROM silk_sqlquery +WHERE request_id = '' +ORDER BY time_taken DESC +LIMIT 10; +``` + +```sql +-- Full query text for a specific slow query +SELECT query FROM silk_sqlquery WHERE id = ; +``` + +### Step 5: Analyze Query Plans + +Silk runs `EXPLAIN` on every captured query and stores the plan in the `analysis` column of `silk_sqlquery`. This is always available — no extra configuration needed. + +```sql +SELECT id, round(time_taken::numeric, 1) AS ms, analysis +FROM silk_sqlquery +WHERE request_id = '' +ORDER BY time_taken DESC +LIMIT 5; +``` + +These are estimated plans (no actual execution stats). If you need actual row counts and timings, run `EXPLAIN ANALYZE` manually on a specific query: + +```sql +EXPLAIN ANALYZE ; +``` + +**What to look for:** + +- **Seq Scan on large tables** — a sequential scan on a table that could grow large (e.g. rows, fields, workspaces) means a missing or unused index. Small config tables are fine. +- **Missing indexes** — if a WHERE or JOIN condition filters on a column without an index, the planner falls back to sequential scans. Fix with `db_index=True` on the model field or a migration with `AddIndex`. +- **Existing indexes not being used** — an index may exist but the planner ignores it (wrong column order in composite index, type mismatch, function wrapping the column, etc.). Check whether the index is used by *any* query in the codebase — if not, it's dead weight and should be removed. +- **Nested Loop with high row estimates** — often a sign of missing `select_related` or a missing index on the join column. + +> **Do not enable `SILKY_ANALYZE_QUERIES`** (`BASEROW_DANGEROUS_SILKY_ANALYZE_QUERIES`) to upgrade to EXPLAIN ANALYZE globally. It re-executes every UPDATE and breaks data integrity. The default EXPLAIN plans in the `analysis` column are sufficient for most investigations — run `EXPLAIN ANALYZE` manually only on specific queries when needed. + +### Step 6: Read Stack Traces + +Stack traces are stored reversed: the **top** is ORM/Silk internals, the **middle** contains Baserow application frames (paths containing `baserow/src/baserow/`), and the **bottom** is Django server/threading boilerplate. Scan for the Baserow frames in the middle — those are the ones that matter. + +```sql +SELECT traceback FROM silk_sqlquery WHERE id = ; +``` + +To get traces for the most repeated query pattern: + +```sql +SELECT id, traceback +FROM silk_sqlquery +WHERE request_id = '' + AND regexp_replace( + regexp_replace(query, '''[^'']*''', '''?''', 'g'), + '= \d+', '= ?', 'g' + ) = ( + SELECT regexp_replace( + regexp_replace(query, '''[^'']*''', '''?''', 'g'), + '= \d+', '= ?', 'g' + ) + FROM silk_sqlquery + WHERE request_id = '' + GROUP BY regexp_replace( + regexp_replace(query, '''[^'']*''', '''?''', 'g'), + '= \d+', '= ?', 'g' + ) + ORDER BY COUNT(*) DESC LIMIT 1 + ) +LIMIT 3; +``` + +### Step 7: Trace to Code and Propose Fixes + +Once you've identified the problematic query and its origin in the stack trace: + +1. Read the source file and function that triggered the query +2. Understand the data access pattern +3. Propose a fix based on the patterns below + +## Common Patterns and Fixes + +### N+1 Queries — Missing `select_related()` / `prefetch_related()` + +**Symptom:** The same SELECT appears dozens/hundreds of times, each with a different WHERE id = value. + +**Fix:** Add `select_related('relation')` for ForeignKey/OneToOne, or `prefetch_related('relation')` for reverse FK/M2M, on the queryset that feeds the loop or serializer. + +### Queries in Loops That Could Be Batched + +**Symptom:** Queries inside a Python for-loop that could be replaced with a single bulk operation. + +**Fix:** Collect IDs first, do a single bulk query, then map results back. Common in Baserow: `break_dependencies_for_field` called per-field instead of batching, `FieldCache.reset_cache()` called inside loops invalidating cached data. + +### `specific_iterator` or `specific_queryset` / `.specific` Overhead + +**Symptom:** Many SELECT queries fetching from different field type tables (`database_textfield`, `database_numberfield`, etc.) one at a time. + +**Fix:** Use `specific_iterator()` with a batch of fields rather than calling `.specific` per field in a loop. Or ensure `FieldCache` is populated before the loop and not reset mid-iteration. + +### `get_model()` Called Repeatedly + +**Symptom:** Repeated queries to `database_field` and `django_content_type` tables to rebuild the same table model. + +**Fix:** Cache the model result or pass it as a parameter instead of calling `table.get_model()` multiple times. + +### Duplicate Queries Across Serializer Fields + +**Symptom:** Multiple serializer fields each trigger the same query independently. + +**Fix:** Use `prefetch_related` with a `Prefetch` object on the view's queryset, or add a `@cached_property` on the model. + +### Missing Database Indexes + +**Symptom:** A single query takes a very long time (>100ms). The query filters on a column that isn't indexed. + +**Fix:** Add `db_index=True` to the model field or create a migration with `AddIndex`. + +## Silk Table Schema Reference + +### silk_request +| Column | Type | Notes | +|---|---|---| +| id | CharField(36) | UUID primary key | +| path | CharField(190) | Request URL path | +| method | CharField(10) | HTTP method | +| start_time | DateTimeField | Request start | +| time_taken | FloatField | Total time (ms) | +| num_sql_queries | IntegerField | SQL query count | +| meta_time_spent_queries | FloatField | **Usually NULL** — compute from silk_sqlquery instead | +| view_name | CharField(190) | Django view name (usually populated) | + +### silk_sqlquery +| Column | Type | Notes | +|---|---|---| +| id | IntegerField | Auto PK | +| query | TextField | Full SQL text | +| start_time | DateTimeField | Query start | +| end_time | DateTimeField | Query end | +| time_taken | FloatField | Execution time (ms) | +| request_id | FK | Links to silk_request | +| traceback | TextField | Python stack trace (reversed — ORM at top, Baserow in middle, server at bottom) | +| analysis | TextField | EXPLAIN output (always populated). With `SILKY_ANALYZE_QUERIES` enabled, contains EXPLAIN ANALYZE instead. | + +### silk_profile +| Column | Type | Notes | +|---|---|---| +| id | IntegerField | Auto PK | +| name | CharField(300) | Profile name | +| time_taken | FloatField | Duration (ms) | +| request_id | FK | Links to silk_request | +| file_path | CharField(300) | Source file | +| line_num | IntegerField | Start line | +| func_name | CharField(300) | Function name | + +## Guardrails + +- **Use read-only queries only.** Never run INSERT, UPDATE, DELETE, or DDL on any table. +- **Never enable `SILKY_ANALYZE_QUERIES`** (`BASEROW_DANGEROUS_SILKY_ANALYZE_QUERIES`). It runs every UPDATE twice and breaks data integrity. +- **Do not truncate Silk tables** without asking the user first. +- **Ground every claim in data.** Always quote the specific evidence (EXPLAIN output, stack trace lines, source code with file path and line number) when making a diagnosis. Never state that a query is slow, an index is missing, or a `select_related` is needed without showing the data that supports it. +- When proposing fixes, always read the actual source code first — don't guess from the query text alone. +- **Confirm findings with the user.** When a user describes a problem without a Silk URL or request ID, confirm the matching request was found and provide its Silk URL (e.g. `http://localhost:8000/silk/request//`) so the user can verify before proceeding. diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 6a8ea85066..587c4130c3 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -86,11 +86,6 @@ dependencies = [ "tzdata==2025.3", "sentry-sdk==2.52.0", "typing_extensions>=4.14.1", - "langchain==0.3.28", - "langchain-openai==0.3.35", - "openai==2.14.0", - "anthropic==0.84.0", - "mistralai==2.0.0", "icalendar==6.3.2", "jira2markdown==0.5", "openpyxl==3.1.5", @@ -100,7 +95,7 @@ dependencies = [ "genson==1.3.0", "pyotp==2.9.0", "qrcode==8.2", - "pydantic-ai-slim[anthropic,bedrock,google,groq,openai]==1.66.0", + "pydantic-ai-slim[anthropic,bedrock,google,groq,mistral,openai]==1.66.0", "opentelemetry-sdk>=1.20.0", "netifaces==0.11.0", "requests-futures>=1.0.2", diff --git a/backend/src/baserow/api/generative_ai/errors.py b/backend/src/baserow/api/generative_ai/errors.py index d93f8adbd5..41f33a5691 100644 --- a/backend/src/baserow/api/generative_ai/errors.py +++ b/backend/src/baserow/api/generative_ai/errors.py @@ -15,8 +15,3 @@ HTTP_400_BAD_REQUEST, "Something went wrong prompting the model", ) -ERROR_OUTPUT_PARSER = ( - "ERROR_OUTPUT_PARSER", - HTTP_400_BAD_REQUEST, - "The model didn't respond with the correct output. Please try again.", -) diff --git a/backend/src/baserow/config/settings/base.py b/backend/src/baserow/config/settings/base.py index 7c49ba0218..44e7f69746 100644 --- a/backend/src/baserow/config/settings/base.py +++ b/backend/src/baserow/config/settings/base.py @@ -1318,7 +1318,6 @@ def __setitem__(self, key, value): "anthropic", "mistralai", "ollama", - "langchain_core", "jira2markdown", "saml2", "openpyxl", @@ -1336,14 +1335,13 @@ def __setitem__(self, key, value): from sentry_sdk.scrubber import DEFAULT_DENYLIST, EventScrubber # Exclude integrations whose module-level imports are incompatible: - # - langchain: Python 3.14 type evaluation crash # - pydantic_ai: sentry-sdk patches ToolManager._call_tool which was # removed in pydantic-ai >= 1.x (now execute_tool_call) _sentry_integrations._AUTO_ENABLING_INTEGRATIONS[:] = [ entry for entry in _sentry_integrations._AUTO_ENABLING_INTEGRATIONS - if "langchain" not in entry and "pydantic_ai" not in entry + if "pydantic_ai" not in entry ] SENTRY_DENYLIST = DEFAULT_DENYLIST + ["username", "email", "name"] diff --git a/backend/src/baserow/contrib/database/apps.py b/backend/src/baserow/contrib/database/apps.py index edba83035d..8c76bcee61 100755 --- a/backend/src/baserow/contrib/database/apps.py +++ b/backend/src/baserow/contrib/database/apps.py @@ -1037,20 +1037,44 @@ def ready(self): notification_type_registry.register(WebhookDeactivatedNotificationType()) notification_type_registry.register(WebhookPayloadTooLargeNotificationType()) + from baserow.contrib.database.mcp.fields.tools import ( + CreateFieldsMcpTool, + DeleteFieldsMcpTool, + UpdateFieldsMcpTool, + ) from baserow.contrib.database.mcp.rows.tools import ( - CreateRowMcpTool, - DeleteRowMcpTool, + CreateRowsMcpTool, + DeleteRowsMcpTool, ListRowsMcpTool, - UpdateRowMcpTool, + UpdateRowsMcpTool, + ) + from baserow.contrib.database.mcp.table.tools import ( + CreateDatabaseMcpTool, + CreateTableMcpTool, + DeleteTableMcpTool, + GetTableSchemaMcpTool, + ListDatabasesMcpTool, + ListTablesMcpTool, + UpdateTableMcpTool, ) - from baserow.contrib.database.mcp.table.tools import ListTablesMcpTool from baserow.core.mcp.registries import mcp_tool_registry + mcp_tool_registry.register(ListDatabasesMcpTool()) mcp_tool_registry.register(ListTablesMcpTool()) + mcp_tool_registry.register(GetTableSchemaMcpTool()) mcp_tool_registry.register(ListRowsMcpTool()) - mcp_tool_registry.register(CreateRowMcpTool()) - mcp_tool_registry.register(UpdateRowMcpTool()) - mcp_tool_registry.register(DeleteRowMcpTool()) + mcp_tool_registry.register(CreateRowsMcpTool()) + mcp_tool_registry.register(UpdateRowsMcpTool()) + mcp_tool_registry.register(DeleteRowsMcpTool()) + # Disabled (enabled=False) until users can control tool + # availability through the UI. + mcp_tool_registry.register(CreateDatabaseMcpTool()) + mcp_tool_registry.register(CreateTableMcpTool()) + mcp_tool_registry.register(UpdateTableMcpTool()) + mcp_tool_registry.register(DeleteTableMcpTool()) + mcp_tool_registry.register(CreateFieldsMcpTool()) + mcp_tool_registry.register(UpdateFieldsMcpTool()) + mcp_tool_registry.register(DeleteFieldsMcpTool()) from baserow.contrib.database.rows.history_providers import ( CreateRowHistoryProvider, diff --git a/backend/src/baserow/contrib/database/mcp/fields/__init__.py b/backend/src/baserow/contrib/database/mcp/fields/__init__.py new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/backend/src/baserow/contrib/database/mcp/fields/__init__.py @@ -0,0 +1 @@ + diff --git a/backend/src/baserow/contrib/database/mcp/fields/schemas.py b/backend/src/baserow/contrib/database/mcp/fields/schemas.py new file mode 100644 index 0000000000..283135375d --- /dev/null +++ b/backend/src/baserow/contrib/database/mcp/fields/schemas.py @@ -0,0 +1,46 @@ +from __future__ import annotations + +from pydantic import BaseModel, ConfigDict, Field + + +class FieldSpec(BaseModel): + """A field to create: name and type are required, extra keys are type-specific.""" + + model_config = ConfigDict(extra="allow") + + name: str = Field(..., description="The field name.") + type: str = Field(..., description="The field type (e.g. text, number, link_row).") + + +class FieldUpdateSpec(BaseModel): + """A field to update: id is required, extra keys are the properties to change.""" + + model_config = ConfigDict(extra="allow") + + id: int = Field(..., description="The ID of the field to update.") + + +class CreateFieldsInput(BaseModel): + table_id: int = Field(..., description="The ID of the table to add fields to.") + fields: list[FieldSpec] = Field( + ..., + description=( + "List of fields to create. Each item must have 'name' " + "and 'type'. See create_table for valid types and extras." + ), + ) + + +class UpdateFieldsInput(BaseModel): + fields: list[FieldUpdateSpec] = Field( + ..., + description=( + "List of field updates. Each item must have 'id' " + "plus the properties to change (name, type, " + "or type-specific options)." + ), + ) + + +class DeleteFieldsInput(BaseModel): + field_ids: list[int] = Field(..., description="List of field IDs to delete.") diff --git a/backend/src/baserow/contrib/database/mcp/fields/tools.py b/backend/src/baserow/contrib/database/mcp/fields/tools.py new file mode 100644 index 0000000000..4a6dbf43fc --- /dev/null +++ b/backend/src/baserow/contrib/database/mcp/fields/tools.py @@ -0,0 +1,61 @@ +from baserow.contrib.database.mcp import services +from baserow.contrib.database.mcp.fields.schemas import ( + CreateFieldsInput, + DeleteFieldsInput, + UpdateFieldsInput, +) +from baserow.core.mcp.models import MCPEndpoint +from baserow.core.mcp.registries import MCPTool + + +class CreateFieldsMcpTool(MCPTool): + """ + Add one or more fields to an existing table. + Call get_table_schema first to see existing fields and avoid duplicates. + Fields are created in dependency order (regular → link_row → lookup → formula). + For link_row fields, the linked table must already exist. + """ + + type = "create_fields" + enabled = False + input_schema = CreateFieldsInput + + def _sync_call(self, endpoint: MCPEndpoint, args: CreateFieldsInput) -> list[dict]: + return services.create_fields( + endpoint.user, + endpoint.workspace, + args.table_id, + [f.model_dump() for f in args.fields], + ) + + +class UpdateFieldsMcpTool(MCPTool): + """ + Update one or more existing fields (rename, change type, change properties). + Call get_table_schema first to get field IDs and current types. + """ + + type = "update_fields" + enabled = False + input_schema = UpdateFieldsInput + + def _sync_call(self, endpoint: MCPEndpoint, args: UpdateFieldsInput) -> list[dict]: + return services.update_fields( + endpoint.user, endpoint.workspace, [f.model_dump() for f in args.fields] + ) + + +class DeleteFieldsMcpTool(MCPTool): + """ + Delete (trash) one or more fields by ID. + Primary fields cannot be deleted. + Call get_table_schema first to confirm field IDs. + """ + + type = "delete_fields" + enabled = False + input_schema = DeleteFieldsInput + + def _sync_call(self, endpoint: MCPEndpoint, args: DeleteFieldsInput) -> str: + services.delete_fields(endpoint.user, endpoint.workspace, args.field_ids) + return "Fields successfully deleted." diff --git a/backend/src/baserow/contrib/database/mcp/rows/schemas.py b/backend/src/baserow/contrib/database/mcp/rows/schemas.py new file mode 100644 index 0000000000..ab7972e0da --- /dev/null +++ b/backend/src/baserow/contrib/database/mcp/rows/schemas.py @@ -0,0 +1,44 @@ +from __future__ import annotations + +from pydantic import BaseModel, ConfigDict, Field + + +class ListRowsInput(BaseModel): + table_id: int = Field(..., description="The ID of the table to list rows from.") + search: str | None = Field(None, description="Optional search term to filter rows.") + page: int = Field(1, description="Page number (1-based).") + size: int = Field(100, description="Maximum number of rows to return.") + + +class CreateRowsInput(BaseModel): + table_id: int = Field(..., description="The ID of the table to create rows in.") + rows: list[dict] = Field( + ..., + description=( + "List of rows to create. Each row is an object mapping field name to value." + ), + ) + + +class RowUpdateSpec(BaseModel): + """A row to update: id is required, extra keys are field name → new value.""" + + model_config = ConfigDict(extra="allow") + + id: int = Field(..., description="The row ID.") + + +class UpdateRowsInput(BaseModel): + table_id: int = Field(..., description="The ID of the table containing the rows.") + rows: list[RowUpdateSpec] = Field( + ..., + description=( + "List of rows to update. Each row must have 'id' " + "plus the field names and their new values." + ), + ) + + +class DeleteRowsInput(BaseModel): + table_id: int = Field(..., description="The ID of the table to delete rows from.") + row_ids: list[int] = Field(..., description="List of row IDs to delete.") diff --git a/backend/src/baserow/contrib/database/mcp/rows/tools.py b/backend/src/baserow/contrib/database/mcp/rows/tools.py index 523039e537..8368c8963f 100644 --- a/backend/src/baserow/contrib/database/mcp/rows/tools.py +++ b/backend/src/baserow/contrib/database/mcp/rows/tools.py @@ -1,277 +1,81 @@ -from asgiref.sync import sync_to_async -from rest_framework.response import Response -from starlette.status import HTTP_204_NO_CONTENT - -from baserow.contrib.database.mcp.table.utils import ( - get_all_tables, - get_table_row_serializer, - remove_table_no_permission, - table_in_workspace_of_endpoint, -) -from baserow.contrib.database.rows.operations import UpdateDatabaseRowOperationType -from baserow.contrib.database.table.operations import ( - CreateRowDatabaseTableOperationType, +from baserow.contrib.database.mcp import services +from baserow.contrib.database.mcp.rows.schemas import ( + CreateRowsInput, + DeleteRowsInput, + ListRowsInput, + UpdateRowsInput, ) +from baserow.core.mcp.models import MCPEndpoint from baserow.core.mcp.registries import MCPTool -from baserow.core.mcp.utils import internal_api_request, serializer_to_openapi_inline class ListRowsMcpTool(MCPTool): - type = "list_table_rows" - name = "list_table_rows" - - async def list(self, endpoint): - from mcp import Tool - - return [ - Tool( - name=self.name, - description=f"Lists the rows/records of the provided `table_id`.", - inputSchema={ - "type": "object", - "properties": { - "table_id": { - "type": "integer", - "description": "The ID of the table where to list the " - "rows from.", - }, - "search": { - "type": "string", - "description": "Optionally search in the whole table.", - }, - "page": { - "type": "integer", - "default": 1, - "description": "Rows/records are paginated. Provide " - "if a different page should be fetched.", - }, - "size": { - "type": "integer", - "default": 100, - "description": "Maximum rows/records that must be " - "returned.", - }, - }, - "required": ["table_id"], - }, - ) - ] - - async def call( - self, - endpoint, - name, - name_parameters, - call_arguments, - ): - from mcp.types import TextContent - - table_id = call_arguments["table_id"] - if not await sync_to_async(table_in_workspace_of_endpoint)(endpoint, table_id): - return [TextContent(type="text", text="Table not in endpoint workspace.")] - - search = call_arguments.get("search", "") - page = call_arguments.get("page", 1) - size = call_arguments.get("size", 100) + """ + List rows from a table with optional search and pagination. + Returns rows with user-facing field names as keys. + """ - response: Response = await sync_to_async(internal_api_request)( - "api:database:rows:list", - path_params={"table_id": table_id}, - user=endpoint.user, - query_params={ - "user_field_names": "true", - "search": search, - "page": page, - "size": size, - }, - ) - - return [TextContent(type="text", text=response.content)] - - -class CreateRowMcpTool(MCPTool): - type = "create_table_row" - name = "create_row_table_{id}" - - async def list(self, endpoint): - from mcp import Tool - - tables = await sync_to_async(get_all_tables)(endpoint) - tables = await sync_to_async(remove_table_no_permission)( - endpoint, tables, CreateRowDatabaseTableOperationType - ) - - tools = [] - for table in tables: - validation_serializer = await sync_to_async(get_table_row_serializer)(table) - spec = serializer_to_openapi_inline( - validation_serializer, "POST", "request" - ) - - tools.append( - Tool( - name=self.resolve_name(id=table.id), - description=f"Create a new row/record in table with id {table.id}, " - f'named "{table.name}".', - inputSchema={ - "type": "object", - "properties": { - "row": spec, - }, - "required": ["row"], - }, - ) - ) - return tools - - async def call( - self, - endpoint, - name, - name_parameters, - call_arguments, - ): - from mcp.types import TextContent - - table_id = name_parameters["id"] - if not await sync_to_async(table_in_workspace_of_endpoint)(endpoint, table_id): - return [TextContent(type="text", text="Table not in endpoint workspace.")] - - response: Response = await sync_to_async(internal_api_request)( - "api:database:rows:list", - method="POST", - path_params={"table_id": name_parameters["id"]}, - user=endpoint.user, - data=call_arguments["row"], - query_params={"user_field_names": "true"}, + type = "list_table_rows" + input_schema = ListRowsInput + + def _sync_call(self, endpoint: MCPEndpoint, args: ListRowsInput) -> dict: + return services.list_rows( + endpoint.user, + endpoint.workspace, + args.table_id, + search=args.search or "", + page=args.page, + size=args.size, ) - return [TextContent(type="text", text=response.content)] - -class UpdateRowMcpTool(MCPTool): - type = "update_table_row" - name = "update_row_table_{id}" +class CreateRowsMcpTool(MCPTool): + """ + Create one or more rows in a table. + Call get_table_schema first to learn the field names and types. + Use user-facing field names as keys, not internal field IDs. + """ - async def list(self, endpoint): - from mcp import Tool + type = "create_rows" + input_schema = CreateRowsInput - tables = await sync_to_async(get_all_tables)(endpoint) - tables = await sync_to_async(remove_table_no_permission)( - endpoint, tables, UpdateDatabaseRowOperationType + def _sync_call(self, endpoint: MCPEndpoint, args: CreateRowsInput) -> list[dict]: + return services.create_rows( + endpoint.user, endpoint.workspace, args.table_id, args.rows ) - tools = [] - for table in tables: - validation_serializer = await sync_to_async(get_table_row_serializer)(table) - spec = serializer_to_openapi_inline( - validation_serializer, "PATCH", "request" - ) - tools.append( - Tool( - name=self.resolve_name(id=table.id), - description=f"Updates an existing row/record in table with id" - f' {table.id}, named "{table.name}".', - inputSchema={ - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "The row/record ID that must be updated.", - }, - "row": spec, - }, - "required": ["id", "row"], - }, - ) - ) - return tools +class UpdateRowsMcpTool(MCPTool): + """ + Update one or more existing rows in a table. + Each row must include 'id' plus the fields to update. + Call get_table_schema first to learn the field names. + Use user-facing field names as keys, not internal field IDs. + """ - async def call( - self, - endpoint, - name, - name_parameters, - call_arguments, - ): - from mcp.types import TextContent + type = "update_rows" + input_schema = UpdateRowsInput - table_id = name_parameters["id"] - if not await sync_to_async(table_in_workspace_of_endpoint)(endpoint, table_id): - return [TextContent(type="text", text="Table not in endpoint workspace.")] - - response: Response = await sync_to_async(internal_api_request)( - "api:database:rows:item", - method="PATCH", - path_params={ - "table_id": name_parameters["id"], - "row_id": call_arguments["id"], - }, - user=endpoint.user, - data=call_arguments["row"], - query_params={"user_field_names": "true"}, + def _sync_call(self, endpoint: MCPEndpoint, args: UpdateRowsInput) -> list[dict]: + return services.update_rows( + endpoint.user, + endpoint.workspace, + args.table_id, + [r.model_dump() for r in args.rows], ) - return [TextContent(type="text", text=response.content)] - - -class DeleteRowMcpTool(MCPTool): - type = "delete_table_row" - name = "delete_table_row" - - async def list(self, endpoint): - from mcp import Tool - return [ - Tool( - name=self.name, - description=f"Delete an existing row/record from the table of the provided " - f"`table_id`.", - inputSchema={ - "type": "object", - "properties": { - "table_id": { - "type": "integer", - "description": "The ID of the table where to delete the " - "row/record from.", - }, - "id": { - "type": "integer", - "description": "The ID of the row that must be deleted.", - }, - }, - "required": ["table_id", "id"], - }, - ) - ] +class DeleteRowsMcpTool(MCPTool): + """ + Delete one or more rows from a table by ID. + Use list_table_rows to find row IDs first. + """ - async def call( - self, - endpoint, - name, - name_parameters, - call_arguments, - ): - from mcp.types import TextContent - - table_id = call_arguments["table_id"] - if not await sync_to_async(table_in_workspace_of_endpoint)(endpoint, table_id): - return [TextContent(type="text", text="Table not in endpoint workspace.")] - - response: Response = await sync_to_async(internal_api_request)( - "api:database:rows:item", - method="DELETE", - path_params={ - "table_id": table_id, - "row_id": call_arguments["id"], - }, - user=endpoint.user, - ) + type = "delete_rows" + input_schema = DeleteRowsInput - content = ( - "successfully deleted" - if response.status_code == HTTP_204_NO_CONTENT - else response.content + def _sync_call(self, endpoint: MCPEndpoint, args: DeleteRowsInput) -> str: + services.delete_rows( + endpoint.user, endpoint.workspace, args.table_id, args.row_ids ) - return [TextContent(type="text", text=content)] + return "Rows successfully deleted." diff --git a/backend/src/baserow/contrib/database/mcp/services.py b/backend/src/baserow/contrib/database/mcp/services.py new file mode 100644 index 0000000000..30b71cc34d --- /dev/null +++ b/backend/src/baserow/contrib/database/mcp/services.py @@ -0,0 +1,500 @@ +""" +Shared database service layer. + +Provides workspace-scoped access to databases, tables, fields, and rows. + +All functions accept ``user`` and ``workspace`` and apply permission filtering +so callers never need to worry about permissions or cross-workspace access. +""" + +from typing import Any + +from django.contrib.auth.models import AbstractUser +from django.db import transaction + +from baserow.contrib.database.fields.handler import FieldHandler +from baserow.contrib.database.fields.models import Field +from baserow.contrib.database.fields.registries import field_type_registry +from baserow.contrib.database.table.handler import TableHandler +from baserow.contrib.database.table.models import Table +from baserow.core.db import specific_iterator +from baserow.core.handler import CoreHandler +from baserow.core.models import Workspace + +# --------------------------------------------------------------------------- +# Query helpers (shared with enterprise assistant) +# --------------------------------------------------------------------------- + + +def filter_tables(user: AbstractUser, workspace: Workspace): + """Return all tables visible to the user in the given workspace.""" + return TableHandler().list_workspace_tables(user, workspace) + + +def get_table(user: AbstractUser, workspace: Workspace, table_id: int) -> Table: + """ + Return a single table by ID, verifying workspace access. + + :raises Table.DoesNotExist: if the table is not found or not accessible. + """ + return filter_tables(user, workspace).get(id=table_id) + + +# --------------------------------------------------------------------------- +# Database operations +# --------------------------------------------------------------------------- + + +def list_databases(user: AbstractUser, workspace: Workspace) -> list: + """ + Return all databases in the workspace that the user can see. + + :returns: List of Database instances, ordered by (order, id). + """ + from baserow.contrib.database.models import Database + from baserow.core.operations import ListApplicationsWorkspaceOperationType + + qs = Database.objects.filter( + workspace=workspace, + workspace__trashed=False, + trashed=False, + ).order_by("order", "id") + + return list( + CoreHandler().filter_queryset( + user, + ListApplicationsWorkspaceOperationType.type, + qs, + workspace=workspace, + ) + ) + + +def get_database(user: AbstractUser, workspace: Workspace, database_id: int): + """ + Return a single database by ID, verifying workspace access. + + :raises Database.DoesNotExist: if not found or not accessible. + """ + from baserow.contrib.database.models import Database + from baserow.core.operations import ListApplicationsWorkspaceOperationType + + qs = Database.objects.filter( + workspace=workspace, + workspace__trashed=False, + trashed=False, + id=database_id, + ) + return ( + CoreHandler() + .filter_queryset( + user, ListApplicationsWorkspaceOperationType.type, qs, workspace=workspace + ) + .get() + ) + + +def create_database(user: AbstractUser, workspace: Workspace, name: str): + """ + Create a new database in the workspace. + + :returns: The created Database instance. + """ + from baserow.core.actions import CreateApplicationActionType + + return CreateApplicationActionType.do(user, workspace, "database", name=name) + + +# --------------------------------------------------------------------------- +# Table operations +# --------------------------------------------------------------------------- + + +def list_tables( + user: AbstractUser, workspace: Workspace, database_id: int | None = None +) -> list[Table]: + """ + Return all tables visible to the user in the workspace. + + :param database_id: If provided, restrict to tables in this database. + :returns: List of Table instances. + """ + qs = filter_tables(user, workspace) + if database_id is not None: + qs = qs.filter(database_id=database_id) + return list(qs) + + +def get_table_schema( + user: AbstractUser, workspace: Workspace, table_ids: list[int] +) -> list[dict]: + """ + Return field schemas for the given tables. + + :returns: List of dicts ``{id, name, database_id, fields: [...]}``. + Each field dict includes ``id``, ``name``, ``type``, ``primary`` + and type-specific extras (select_options, link_row_table_id, etc.). + """ + tables = { + t.id: t + for t in filter_tables(user, workspace) + .filter(id__in=table_ids) + .select_related("database") + } + + valid_table_ids = [tid for tid in table_ids if tid in tables] + if not valid_table_ids: + return [] + + all_fields = list( + specific_iterator( + FieldHandler() + .get_base_fields_queryset() + .filter(table_id__in=valid_table_ids) + .order_by("table_id", "-primary", "order", "id"), + per_content_type_queryset_hook=( + lambda model, queryset: field_type_registry.get_by_model( + model + ).enhance_field_queryset(queryset, model) + ), + ) + ) + + fields_by_table: dict[int, list] = {} + for field in all_fields: + fields_by_table.setdefault(field.table_id, []).append(field) + + return [ + { + "id": tables[tid].id, + "name": tables[tid].name, + "database_id": tables[tid].database_id, + "fields": [_serialize_field(f) for f in fields_by_table.get(tid, [])], + } + for tid in valid_table_ids + ] + + +def _serialize_field(field) -> dict: + """Convert a specific field instance to a plain dict for schema output.""" + from baserow.contrib.database.fields.models import ( + DateField, + FormulaField, + LinkRowField, + MultipleSelectField, + NumberField, + RatingField, + SingleSelectField, + ) + + field_type = field_type_registry.get_by_model(field) + data: dict[str, Any] = { + "id": field.id, + "name": field.name, + "type": field_type.type, + "primary": field.primary, + } + + if isinstance(field, (SingleSelectField, MultipleSelectField)): + data["select_options"] = [ + {"id": opt.id, "value": opt.value, "color": opt.color} + for opt in field.select_options.all() + ] + elif isinstance(field, LinkRowField): + data["link_row_table_id"] = field.link_row_table_id + linked = field.link_row_table + data["link_row_table_name"] = linked.name if linked else None + elif isinstance(field, NumberField): + data["number_decimal_places"] = field.number_decimal_places + elif isinstance(field, DateField): + data["date_include_time"] = field.date_include_time + data["date_force_timezone"] = field.date_force_timezone + elif isinstance(field, FormulaField): + data["formula"] = field.formula + data["formula_type"] = field.formula_type + elif isinstance(field, RatingField): + data["max_value"] = field.max_value + + return data + + +# Dependency order for field creation: regular → link_row → lookup → formula. +_FIELD_CREATION_ORDER: dict[str, int] = { + "link_row": 1, + "lookup": 2, + "formula": 3, +} + + +def create_table( + user: AbstractUser, + workspace: Workspace, + database_id: int, + name: str, + fields: list[dict] | None = None, +) -> dict: + """ + Create a table in the given database, optionally with additional fields. + + ``fields`` is a list of dicts with at minimum ``name`` and ``type``. + Other keys are passed as kwargs to ``CreateFieldActionType.do()``. + + :returns: Dict with the created table and its fields. + """ + from baserow.contrib.database.fields.actions import CreateFieldActionType + from baserow.contrib.database.table.actions import CreateTableActionType + + database = get_database(user, workspace, database_id) + table, _ = CreateTableActionType.do(user, database, name, fill_example=False) + + created_fields = [] + if fields: + sorted_fields = sorted( + fields, key=lambda f: _FIELD_CREATION_ORDER.get(f.get("type", "text"), 0) + ) + for src_field_spec in sorted_fields: + field_spec = dict(src_field_spec) + type_name = field_spec.pop("type") + created = CreateFieldActionType.do(user, table, type_name, **field_spec) + created_fields.append(_serialize_field(created)) + + return { + "id": table.id, + "name": table.name, + "database_id": table.database_id, + "fields": created_fields, + } + + +def update_table( + user: AbstractUser, workspace: Workspace, table_id: int, name: str +) -> dict: + """Rename a table.""" + from baserow.contrib.database.table.actions import UpdateTableActionType + + table = get_table(user, workspace, table_id) + UpdateTableActionType.do(user, table, name=name) + # UpdateTableActionType mutates table in-place via the handler + return {"id": table.id, "name": table.name, "database_id": table.database_id} + + +def delete_table(user: AbstractUser, workspace: Workspace, table_id: int) -> None: + """Delete (trash) a table.""" + from baserow.contrib.database.table.actions import DeleteTableActionType + + table = get_table(user, workspace, table_id) + DeleteTableActionType.do(user, table) + + +# --------------------------------------------------------------------------- +# Field operations +# --------------------------------------------------------------------------- + + +def get_field(user: AbstractUser, workspace: Workspace, field_id: int): + """ + Return a locked specific field by ID, verifying workspace access. + + :raises Field.DoesNotExist: if not found or outside workspace. + """ + + try: + field = Field.objects.select_related("table__database").get(id=field_id) + except Field.DoesNotExist: + raise + if field.table.database.workspace_id != workspace.id: + raise Field.DoesNotExist(f"Field {field_id} not in workspace.") + if not filter_tables(user, workspace).filter(id=field.table_id).exists(): + raise Field.DoesNotExist(f"Field {field_id} not accessible.") + return FieldHandler().get_specific_field_for_update(field_id) + + +def create_fields( + user: AbstractUser, workspace: Workspace, table_id: int, fields: list[dict] +) -> list[dict]: + """ + Create one or more fields in a table. + + Each dict in ``fields`` must have ``name`` and ``type``; other keys are + passed as kwargs to ``CreateFieldActionType.do()``. + + Fields are created in dependency order (regular → link_row → lookup → formula). + + :returns: List of serialized created field dicts. + """ + from baserow.contrib.database.fields.actions import CreateFieldActionType + + table = get_table(user, workspace, table_id) + sorted_fields = sorted( + fields, key=lambda f: _FIELD_CREATION_ORDER.get(f.get("type", "text"), 0) + ) + created = [] + for src_field_spec in sorted_fields: + field_spec = dict(src_field_spec) + type_name = field_spec.pop("type") + field = CreateFieldActionType.do(user, table, type_name, **field_spec) + created.append(_serialize_field(field)) + return created + + +def update_fields( + user: AbstractUser, workspace: Workspace, fields: list[dict] +) -> list[dict]: + """ + Update one or more fields. + + Each dict must have ``id``; other keys are passed to ``UpdateFieldActionType.do()``. + + :returns: List of serialized updated field dicts. + """ + from baserow.contrib.database.fields.actions import UpdateFieldActionType + + updated = [] + for src_field_spec in fields: + field_spec = dict(src_field_spec) + field_id = field_spec.pop("id") + new_type_name = field_spec.pop("type", None) + field = get_field(user, workspace, field_id) + result, _ = UpdateFieldActionType.do( + user, field, new_type_name=new_type_name, **field_spec + ) + updated.append(_serialize_field(result)) + return updated + + +def delete_fields( + user: AbstractUser, workspace: Workspace, field_ids: list[int] +) -> None: + """Delete (trash) a list of fields by ID.""" + from baserow.contrib.database.fields.actions import DeleteFieldActionType + + for field_id in field_ids: + field = get_field(user, workspace, field_id) + DeleteFieldActionType.do(user, field) + + +# --------------------------------------------------------------------------- +# Row operations +# --------------------------------------------------------------------------- + + +def list_rows( + user: AbstractUser, + workspace: Workspace, + table_id: int, + search: str = "", + page: int = 1, + size: int = 100, +) -> dict: + """ + Return a paginated list of rows from a table, with user field names. + + :returns: Dict with ``count`` and ``results`` (list of row dicts). + """ + from django.conf import settings + + from baserow.contrib.database.api.rows.serializers import ( + serialize_rows_for_response, + ) + + # Clamp pagination parameters to safe bounds. + page = max(1, page) + size = max(1, min(size, settings.ROW_PAGE_SIZE_LIMIT)) + + table = get_table(user, workspace, table_id) + model = table.get_model() + qs = model.objects.filter(trashed=False).order_by("order", "id") + + if search: + qs = qs.search_all_fields(search) + + count = qs.count() + offset = (page - 1) * size + rows = list(qs[offset : offset + size]) + + data = serialize_rows_for_response(rows, model, user_field_names=True) + return {"count": count, "results": list(data)} + + +def _map_user_field_names(model, rows: list[dict]) -> list[dict]: + """ + Convert user field names to internal column names. + + e.g. ``{"Name": "John"}`` → ``{"field_1": "John"}``. + + :raises ValueError: if a field name is not recognised. + """ + name_to_col = { + info["field"].name: info["name"] for info in model._field_objects.values() + } + result = [] + for row in rows: + converted: dict[str, Any] = {} + for key, value in row.items(): + if key == "id": + converted["id"] = value + elif key in name_to_col: + converted[name_to_col[key]] = value + else: + available = list(name_to_col.keys()) + raise ValueError( + f"Unknown field name '{key}'. Available fields: {available}" + ) + result.append(converted) + return result + + +def create_rows( + user: AbstractUser, workspace: Workspace, table_id: int, rows: list[dict] +) -> list[dict]: + """ + Create rows in a table using user field names. + + :param rows: List of dicts mapping user field name → value. + :returns: List of created row dicts with user field names. + """ + from baserow.contrib.database.api.rows.serializers import ( + serialize_rows_for_response, + ) + from baserow.contrib.database.rows.actions import CreateRowsActionType + + table = get_table(user, workspace, table_id) + model = table.get_model() + rows_values = _map_user_field_names(model, rows) + created = CreateRowsActionType.do(user, table, rows_values, model=model) + return list(serialize_rows_for_response(created, model, user_field_names=True)) + + +def update_rows( + user: AbstractUser, workspace: Workspace, table_id: int, rows: list[dict] +) -> list[dict]: + """ + Update rows in a table using user field names. + + Each dict in ``rows`` must include ``id`` plus the fields to update. + + :returns: List of updated row dicts with user field names. + """ + from baserow.contrib.database.api.rows.serializers import ( + serialize_rows_for_response, + ) + from baserow.contrib.database.rows.actions import UpdateRowsActionType + + table = get_table(user, workspace, table_id) + model = table.get_model() + rows_values = _map_user_field_names(model, rows) + with transaction.atomic(): + result = UpdateRowsActionType.do(user, table, rows_values, model=model) + return list( + serialize_rows_for_response(result.updated_rows, model, user_field_names=True) + ) + + +def delete_rows( + user: AbstractUser, workspace: Workspace, table_id: int, row_ids: list[int] +) -> None: + """Delete rows by ID.""" + from baserow.contrib.database.rows.actions import DeleteRowsActionType + + table = get_table(user, workspace, table_id) + DeleteRowsActionType.do(user, table, row_ids) diff --git a/backend/src/baserow/contrib/database/mcp/table/schemas.py b/backend/src/baserow/contrib/database/mcp/table/schemas.py new file mode 100644 index 0000000000..1ca559d582 --- /dev/null +++ b/backend/src/baserow/contrib/database/mcp/table/schemas.py @@ -0,0 +1,55 @@ +from __future__ import annotations + +from pydantic import BaseModel, Field + +from baserow.contrib.database.mcp.fields.schemas import FieldSpec + + +class ListDatabasesInput(BaseModel): + pass + + +class CreateDatabaseInput(BaseModel): + name: str = Field(..., description="The name of the database to create.") + + +class ListTablesInput(BaseModel): + database_id: int | None = Field( + None, description="If provided, only return tables from this database." + ) + + +class CreateTableInput(BaseModel): + database_id: int = Field( + ..., description="The ID of the database to create the table in." + ) + name: str = Field(..., description="The name of the table.") + fields: list[FieldSpec] | None = Field( + None, + description=( + "Optional list of additional fields. Each item must have " + "'name' and 'type'. Type-specific extras: " + "number_decimal_places (number), date_include_time (date), " + "select_options=[{value, color}] " + "(single_select/multiple_select), " + "link_row_table_id (link_row). " + "Valid types: text, long_text, number, boolean, date, " + "single_select, multiple_select, link_row, file, email, " + "url, phone_number, rating, formula, lookup." + ), + ) + + +class UpdateTableInput(BaseModel): + table_id: int = Field(..., description="The ID of the table to rename.") + name: str = Field(..., description="The new name for the table.") + + +class DeleteTableInput(BaseModel): + table_id: int = Field(..., description="The ID of the table to delete.") + + +class GetTableSchemaInput(BaseModel): + table_ids: list[int] = Field( + ..., description="List of table IDs to get the schema for." + ) diff --git a/backend/src/baserow/contrib/database/mcp/table/tools.py b/backend/src/baserow/contrib/database/mcp/table/tools.py index 17f959dac8..8a779b34a9 100644 --- a/backend/src/baserow/contrib/database/mcp/table/tools.py +++ b/backend/src/baserow/contrib/database/mcp/table/tools.py @@ -1,42 +1,135 @@ -import json - -from asgiref.sync import sync_to_async - -from baserow.contrib.database.api.tables.serializers import ( - TableWithoutDataSyncSerializer, +from baserow.contrib.database.mcp import services +from baserow.contrib.database.mcp.table.schemas import ( + CreateDatabaseInput, + CreateTableInput, + DeleteTableInput, + GetTableSchemaInput, + ListDatabasesInput, + ListTablesInput, + UpdateTableInput, ) -from baserow.contrib.database.mcp.table.utils import get_all_tables +from baserow.core.mcp.models import MCPEndpoint from baserow.core.mcp.registries import MCPTool +class ListDatabasesMcpTool(MCPTool): + """ + List all databases in the workspace. + Use this to discover database IDs before listing tables. + """ + + type = "list_databases" + input_schema = ListDatabasesInput + + def _sync_call(self, endpoint: MCPEndpoint, args: ListDatabasesInput) -> list[dict]: + databases = services.list_databases(endpoint.user, endpoint.workspace) + return [{"id": db.id, "name": db.name, "order": db.order} for db in databases] + + +class CreateDatabaseMcpTool(MCPTool): + """ + Create a new database in the workspace. + Returns the new database ID and name. + """ + + type = "create_database" + enabled = False + input_schema = CreateDatabaseInput + + def _sync_call(self, endpoint: MCPEndpoint, args: CreateDatabaseInput) -> dict: + db = services.create_database(endpoint.user, endpoint.workspace, args.name) + return {"id": db.id, "name": db.name} + + class ListTablesMcpTool(MCPTool): - type = "list_tables" - name = "list_tables" + """ + List all tables in the workspace, optionally filtered by database. + Use this to discover table IDs before calling get_table_schema. + """ - async def list(self, endpoint): - from mcp import Tool + type = "list_tables" + input_schema = ListTablesInput + def _sync_call(self, endpoint: MCPEndpoint, args: ListTablesInput) -> list[dict]: + tables = services.list_tables( + endpoint.user, endpoint.workspace, database_id=args.database_id + ) return [ - Tool( - name=self.name, - description=f"Lists all the tables.", - inputSchema={ - "type": "object", - "properties": {}, - }, - ) + { + "id": t.id, + "name": t.name, + "order": t.order, + "database_id": t.database_id, + } + for t in tables ] - async def call( - self, - endpoint, - name, - name_parameters, - call_arguments, - ): - from mcp.types import TextContent - - tables = await sync_to_async(get_all_tables)(endpoint) - serializer = TableWithoutDataSyncSerializer(tables, many=True) - table_json = json.dumps(serializer.data) - return [TextContent(type="text", text=table_json)] + +class CreateTableMcpTool(MCPTool): + """ + Create a new table in a database, optionally with initial fields. + Fields are created in dependency order (regular → link_row → lookup → formula). + For link_row fields, the linked table must already exist. + """ + + type = "create_table" + enabled = False + input_schema = CreateTableInput + + def _sync_call(self, endpoint: MCPEndpoint, args: CreateTableInput) -> dict: + return services.create_table( + endpoint.user, + endpoint.workspace, + args.database_id, + args.name, + [f.model_dump() for f in args.fields] if args.fields else None, + ) + + +class UpdateTableMcpTool(MCPTool): + """ + Rename an existing table. + Call list_tables first to get the table ID. + """ + + type = "update_table" + enabled = False + input_schema = UpdateTableInput + + def _sync_call(self, endpoint: MCPEndpoint, args: UpdateTableInput) -> dict: + return services.update_table( + endpoint.user, endpoint.workspace, args.table_id, args.name + ) + + +class DeleteTableMcpTool(MCPTool): + """ + Delete (trash) a table and all its rows. + The table can be restored from trash afterwards. + """ + + type = "delete_table" + enabled = False + input_schema = DeleteTableInput + + def _sync_call(self, endpoint: MCPEndpoint, args: DeleteTableInput) -> str: + services.delete_table(endpoint.user, endpoint.workspace, args.table_id) + return "Table successfully deleted." + + +class GetTableSchemaMcpTool(MCPTool): + """ + Get the field schema for one or more tables. + Call this before create_rows or update_rows to learn the field + names and types accepted by those tools. + """ + + type = "get_table_schema" + input_schema = GetTableSchemaInput + + def _sync_call( + self, endpoint: MCPEndpoint, args: GetTableSchemaInput + ) -> list[dict]: + return services.get_table_schema( + endpoint.user, endpoint.workspace, args.table_ids + ) diff --git a/backend/src/baserow/contrib/database/mcp/table/utils.py b/backend/src/baserow/contrib/database/mcp/table/utils.py deleted file mode 100644 index a7ff301c7a..0000000000 --- a/backend/src/baserow/contrib/database/mcp/table/utils.py +++ /dev/null @@ -1,87 +0,0 @@ -from typing import List - -from baserow.contrib.database.api.rows.serializers import get_row_serializer_class -from baserow.contrib.database.operations import ListTablesDatabaseTableOperationType -from baserow.contrib.database.table.models import Table -from baserow.core.handler import CoreHandler -from baserow.core.mcp.models import MCPEndpoint -from baserow.core.registries import OperationType -from baserow.core.types import PermissionCheck - - -def get_all_tables(endpoint: MCPEndpoint) -> List[Table]: - """ - Returns all the tables that the user of the endpoint has access to and are within - the scope of the workspace. - - :param endpoint: The endpoint where to get the tables for. - :return: The tables that the endpoint user has access to. - """ - - workspace = endpoint.workspace - tables_qs = Table.objects.filter( - database__workspace_id=workspace.id, - database__trashed=False, - ).select_related("database__workspace") - return list( - CoreHandler().filter_queryset( - endpoint.user, - ListTablesDatabaseTableOperationType.type, - tables_qs, - workspace=workspace, - ) - ) - - -def remove_table_no_permission( - endpoint: MCPEndpoint, tables: List[Table], operation_type: List[OperationType] -) -> List[Table]: - """ - Helper method that filters out the tables where the user doesn't have - `operation_type` permissions for. This can be used to nicely list what the user - does have access to. - - :param endpoint: The MCPEndpoint where the user and workspace will be extracted - from. - :param tables: A list of tables where the permissions of the `operation_type` must - be checked for. - :param operation_type: The operation type where to check if the user has table - permissions for. - :return: An updated list, only containing the tables that the user has - `operation_type` permissions for. - """ - - checks = [ - PermissionCheck(endpoint.user, operation_type.type, table) for table in tables - ] - results = CoreHandler().check_multiple_permissions( - checks=checks, workspace=endpoint.workspace - ) - return [check.context for check, outcome in results.items() if outcome] - - -def table_in_workspace_of_endpoint(endpoint: MCPEndpoint, table_id: int) -> bool: - """ - Checks if the provided table_id belongs to the workspace of the endpoint. - - :param endpoint: The endpoint where to get the workspace for. - :param table_id: The table id to check. - :return: Whether the table belongs to the workspace. - """ - - return Table.objects.filter( - id=table_id, database__workspace_id=endpoint.workspace.id - ).exists() - - -def get_table_row_serializer(table): - """ - Returns the serializer class for rows in the given table, using the user field - names. - - :param table: The table to get the serializer for. - :return: The serializer class for the table rows. - """ - - model = table.get_model() - return get_row_serializer_class(model, user_field_names=True) diff --git a/backend/src/baserow/contrib/integrations/ai/service_types.py b/backend/src/baserow/contrib/integrations/ai/service_types.py index 4a64240561..5c8e2118ab 100644 --- a/backend/src/baserow/contrib/integrations/ai/service_types.py +++ b/backend/src/baserow/contrib/integrations/ai/service_types.py @@ -1,4 +1,3 @@ -import enum from typing import Any, Dict, Generator, List, Optional from django.contrib.auth.models import AbstractUser @@ -16,7 +15,6 @@ ) from baserow.core.generative_ai.registries import generative_ai_model_type_registry from baserow.core.integrations.handler import IntegrationHandler -from baserow.core.output_parsers import get_strict_enum_output_parser from baserow.core.services.dispatch_context import DispatchContext from baserow.core.services.exceptions import ( ServiceImproperlyConfiguredDispatchException, @@ -168,9 +166,6 @@ def dispatch_data( resolved_values: Dict[str, Any], dispatch_context: DispatchContext, ) -> Dict[str, Any]: - from langchain_core.exceptions import OutputParserException - from langchain_core.prompts import PromptTemplate - if not service.ai_generative_ai_type: raise ServiceImproperlyConfiguredDispatchException( "The AI provider type is missing." @@ -213,39 +208,24 @@ def dispatch_data( integration, service.ai_generative_ai_type ) - output_parser = None + kwargs = {} + if service.ai_temperature is not None: + kwargs["temperature"] = service.ai_temperature - # If the choice output type has been set, then a different prompt and output - # parser must be used to make sure the result matches the requirements of the - # choice type. - if service.ai_output_type == AIOutputType.CHOICE: - choices = service.ai_choices or [] - - if not choices: - raise ServiceImproperlyConfiguredDispatchException( - "No valid choices provided for 'choice' output type." - ) - - choices_enum = enum.Enum( - "Choices", {f"OPTION_{i}": choice for i, choice in enumerate(choices)} - ) - output_parser = get_strict_enum_output_parser(enum=choices_enum) - format_instructions = output_parser.get_format_instructions() - prompt_template = PromptTemplate( - template=prompt + "\n\nGiven this user query:\n\n{format_instructions}", - input_variables=[], - partial_variables={"format_instructions": format_instructions}, - ) - prompt = prompt_template.format() + # Always pass provider settings (which may be from integration or workspace) + if provider_settings: + kwargs["settings_override"] = provider_settings try: - kwargs = {} - if service.ai_temperature is not None: - kwargs["temperature"] = service.ai_temperature + if service.ai_output_type == AIOutputType.CHOICE: + choices = service.ai_choices or [] + + if not choices: + raise ServiceImproperlyConfiguredDispatchException( + "No valid choices provided for 'choice' output type." + ) - # Always pass provider settings (which may be from integration or workspace) - if provider_settings: - kwargs["settings_override"] = provider_settings + kwargs["output_type"] = choices result = ai_model_type.prompt( model=service.ai_generative_ai_model, @@ -253,22 +233,12 @@ def dispatch_data( workspace=workspace, **kwargs, ) + return {"result": result} except GenerativeAIPromptError as e: raise UnexpectedDispatchException( f"AI prompt execution failed: {str(e)}" ) from e - # Parse the result for choice output type - if service.ai_output_type == AIOutputType.CHOICE and output_parser: - try: - parsed_result = output_parser.parse(result) - result = parsed_result.value - except OutputParserException: - # If parsing fails, return the raw result - pass - - return {"result": result} - def dispatch_transform(self, data: Dict[str, Any]) -> DispatchResult: return DispatchResult(data=data) diff --git a/backend/src/baserow/core/generative_ai/exceptions.py b/backend/src/baserow/core/generative_ai/exceptions.py index 66c15e25a1..1d74b0dea3 100644 --- a/backend/src/baserow/core/generative_ai/exceptions.py +++ b/backend/src/baserow/core/generative_ai/exceptions.py @@ -15,7 +15,3 @@ def __init__(self, model_name, *args, **kwargs): class GenerativeAIPromptError(Exception): """Raised when an error occurs while prompting the model.""" - - -class AIFileError(Exception): - """Raised when the processing of a file for AI purposes fails""" diff --git a/backend/src/baserow/core/generative_ai/generative_ai_model_types.py b/backend/src/baserow/core/generative_ai/generative_ai_model_types.py index 36008330aa..ea60e12479 100644 --- a/backend/src/baserow/core/generative_ai/generative_ai_model_types.py +++ b/backend/src/baserow/core/generative_ai/generative_ai_model_types.py @@ -1,37 +1,61 @@ +from __future__ import annotations + import os -import re +from typing import TYPE_CHECKING, Any, Optional from django.conf import settings -from baserow.core.generative_ai.exceptions import AIFileError, GenerativeAIPromptError -from baserow.core.generative_ai.types import FileId +from baserow.core.models import Workspace + +from .registries import GenerativeAIModelType -from .registries import GenerativeAIModelType, GenerativeAIWithFilesModelType +if TYPE_CHECKING: + from baserow_premium.fields.ai_file import AIFile class BaseOpenAIGenerativeAIModelType(GenerativeAIModelType): - def get_api_key(self, workspace=None, settings_override=None): + def get_api_key( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Optional[str]: return ( self.get_workspace_setting(workspace, "api_key", settings_override) or settings.BASEROW_OPENAI_API_KEY ) - def get_enabled_models(self, workspace=None, settings_override=None): + def get_enabled_models( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> list[str]: workspace_models = self.get_workspace_setting( workspace, "models", settings_override ) return workspace_models or settings.BASEROW_OPENAI_MODELS - def get_organization(self, workspace=None, settings_override=None): + def get_organization( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Optional[str]: return ( self.get_workspace_setting(workspace, "organization", settings_override) or settings.BASEROW_OPENAI_ORGANIZATION ) - def get_base_url(self, workspace=None, settings_override=None): + def get_base_url( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Optional[str]: return None - def is_enabled(self, workspace=None, settings_override=None): + def is_enabled( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> bool: api_key = self.get_api_key(workspace, settings_override) return bool(api_key) and bool( self.get_enabled_models( @@ -39,193 +63,197 @@ def is_enabled(self, workspace=None, settings_override=None): ) ) - def get_client(self, workspace=None, settings_override=None): - from openai import OpenAI + def get_ai_model( + self, + model_name: str, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Any: + from openai import AsyncOpenAI + from pydantic_ai.models.openai import OpenAIResponsesModel + from pydantic_ai.providers.openai import OpenAIProvider api_key = self.get_api_key(workspace, settings_override) organization = self.get_organization(workspace, settings_override) base_url = self.get_base_url(workspace, settings_override) - return OpenAI(api_key=api_key, organization=organization, base_url=base_url) + client = AsyncOpenAI( + api_key=api_key, organization=organization, base_url=base_url + ) + return OpenAIResponsesModel( + model_name, provider=OpenAIProvider(openai_client=client) + ) - def get_settings_serializer(self): + def get_settings_serializer(self) -> type: from baserow.api.generative_ai.serializers import BaseOpenAISettingsSerializer return BaseOpenAISettingsSerializer - def prompt( - self, model, prompt, workspace=None, temperature=None, settings_override=None - ): - from openai import APIStatusError as OpenAIAPIStatusError - from openai import OpenAIError - - try: - client = self.get_client(workspace, settings_override) - kwargs = {} - if temperature: - kwargs["temperature"] = temperature - chat_completion = client.chat.completions.create( - messages=[{"role": "user", "content": prompt}], - model=model, - stream=False, - **kwargs, - ) - except (OpenAIError, OpenAIAPIStatusError) as exc: - raise GenerativeAIPromptError(str(exc)) from exc - return chat_completion.choices[0].message.content - -class OpenAIGenerativeAIModelType( - GenerativeAIWithFilesModelType, BaseOpenAIGenerativeAIModelType -): +class OpenAIGenerativeAIModelType(BaseOpenAIGenerativeAIModelType): type = "openai" - def get_settings_serializer(self): + def get_settings_serializer(self) -> type: from baserow.api.generative_ai.serializers import OpenAISettingsSerializer return OpenAISettingsSerializer - def get_base_url(self, workspace=None, settings_override=None): + def get_base_url( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Optional[str]: return ( self.get_workspace_setting(workspace, "base_url", settings_override) or settings.BASEROW_OPENAI_BASE_URL ) - def is_file_compatible(self, file_name: str) -> bool: - # See supported files at: - # https://platform.openai.com/docs/assistants/tools/file-search/supported-files - supported_file_extensions = { - ".doc", - ".docx", - ".html", - ".json", - ".md", - ".pdf", - ".pptx", - ".txt", - ".tex", - } - - _, ext = os.path.splitext(file_name) - if ext not in supported_file_extensions: - return False - return True - - def get_max_file_size(self) -> int: - return min(512, settings.BASEROW_OPENAI_UPLOADED_FILE_SIZE_LIMIT_MB) - - def upload_file(self, file_name: str, file: bytes, workspace=None) -> FileId: - from openai import APIStatusError as OpenAIAPIStatusError - from openai import OpenAIError - - try: - client = self.get_client(workspace=workspace) - openai_file = client.files.create( - file=(file_name, file, None), purpose="assistants" - ) - return openai_file.id - except (OpenAIError, OpenAIAPIStatusError) as exc: - raise AIFileError(str(exc)) from exc - - def delete_files(self, file_ids: list[FileId], workspace=None): - from openai import APIStatusError as OpenAIAPIStatusError - from openai import OpenAIError - - try: - client = self.get_client(workspace=workspace) - for file_id in file_ids: - client.files.delete(file_id) - except (OpenAIError, OpenAIAPIStatusError) as exc: - raise AIFileError(str(exc)) from exc - - def prompt_with_files( - self, model, prompt, file_ids: list[FileId], workspace=None, temperature=None - ): - from openai import APIStatusError as OpenAIAPIStatusError - from openai import OpenAIError - - run, thread, assistant = None, None, None - try: - client = self.get_client(workspace) - kwargs = {} - if temperature: - kwargs["temperature"] = temperature - - assistant = client.beta.assistants.create( - name="Assistant that have access to user files", - instructions="", - model=model, - tools=[{"type": "file_search"}], - **kwargs, - ) - thread = client.beta.threads.create() - attachments = [ - {"file_id": file_id, "tools": [{"type": "file_search"}]} - for file_id in file_ids - ] - message = client.beta.threads.messages.create( - thread_id=thread.id, - role="user", - content=prompt, - attachments=attachments, - ) - run = client.beta.threads.runs.create_and_poll( - thread_id=thread.id, - assistant_id=assistant.id, - poll_interval_ms=2000, # 2 seconds - timeout=60.0, # 1 minute - ) - if run.status == "completed": - messages = client.beta.threads.messages.list(thread_id=thread.id) - try: - message = messages.data[0].content[0].text.value - except Exception: - raise GenerativeAIPromptError( - "The OpenAI model didn't respond with an answer." + supports_files = True + + _EMBEDDABLE_EXTENSIONS = {".gif", ".jpg", ".jpeg", ".png", ".webp"} + _UPLOADABLE_EXTENSIONS = { + ".csv", + ".doc", + ".docx", + ".html", + ".json", + ".md", + ".pdf", + ".pptx", + ".txt", + ".tex", + ".xlsx", + ".xls", + } + _MAX_EMBED_PAYLOAD_BYTES = 45 * 1024 * 1024 # 50 MB minus some headroom + _MAX_EMBEDS_PER_REQUEST = 500 + + def _get_max_upload_bytes(self) -> int: + return ( + min(512, settings.BASEROW_OPENAI_UPLOADED_FILE_SIZE_LIMIT_MB) * 1024 * 1024 + ) + + def prepare_files( + self, + files: list[AIFile], + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> list[AIFile]: + from loguru import logger + from pydantic_ai import BinaryContent, UploadedFile + + embed_payload = 0 + embed_count = 0 + max_upload = self._get_max_upload_bytes() + + for ai_file in files: + _, ext = os.path.splitext(ai_file.name) + ext = ext.lower() + + try: + if ext in self._EMBEDDABLE_EXTENSIONS: + if ( + embed_count >= self._MAX_EMBEDS_PER_REQUEST + or embed_payload + ai_file.size > self._MAX_EMBED_PAYLOAD_BYTES + ): + continue + data = ai_file.read_content() + ai_file.content = BinaryContent( + data=data, + media_type=ai_file.mime_type, + identifier=ai_file.original_name, ) + embed_payload += ai_file.size + embed_count += 1 + + elif ext in self._UPLOADABLE_EXTENSIONS: + if ai_file.size > max_upload: + continue + data = ai_file.read_content() + file_id = self._upload_file( + ai_file.name, data, workspace, settings_override + ) + ai_file.provider_file_id = file_id + ai_file.content = UploadedFile( + file_id=file_id, + provider_name="openai", + media_type=ai_file.mime_type, + identifier=ai_file.original_name, + ) + except Exception: + logger.warning( + f"Skipping file {ai_file.name}: failed to read or upload." + ) + continue - # remove references from the output - regex = r"【[0-9:]{1,}†source】" - message = re.sub(regex, "", message, 0) + return [f for f in files if f.content is not None] - return message - else: - raise GenerativeAIPromptError( - "The OpenAI model didn't respond with an answer." - ) - except (OpenAIError, OpenAIAPIStatusError) as exc: - raise GenerativeAIPromptError(str(exc)) from exc - finally: - if run and thread: - if run.status in [ - "queued", - "in_progress", - "requires_action", - "incomplete", - ]: - client.beta.threads.runs.cancel(run.id, thread_id=thread.id) - if thread: - # Deleting the thread should delete all messages within - client.beta.threads.delete(thread_id=thread.id) - if assistant: - client.beta.assistants.delete(assistant_id=assistant.id) + def _get_upload_client( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Any: + """Return a sync OpenAI client for file upload/delete operations.""" + + from openai import OpenAI + + api_key = self.get_api_key(workspace, settings_override) + organization = self.get_organization(workspace, settings_override) + base_url = self.get_base_url(workspace, settings_override) + return OpenAI(api_key=api_key, organization=organization, base_url=base_url) + + def _upload_file( + self, + file_name: str, + file_bytes: bytes, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> str: + client = self._get_upload_client(workspace, settings_override) + uploaded = client.files.create( + file=(file_name, file_bytes), purpose="user_data" + ) + return uploaded.id + + def delete_file( + self, + ai_file: AIFile, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> None: + """Delete an uploaded file from OpenAI.""" + + client = self._get_upload_client(workspace, settings_override) + client.files.delete(ai_file.provider_file_id) class AnthropicGenerativeAIModelType(GenerativeAIModelType): type = "anthropic" - def get_api_key(self, workspace=None, settings_override=None): + def get_api_key( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Optional[str]: return ( self.get_workspace_setting(workspace, "api_key", settings_override) or settings.BASEROW_ANTHROPIC_API_KEY ) - def get_enabled_models(self, workspace=None, settings_override=None): + def get_enabled_models( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> list[str]: workspace_models = self.get_workspace_setting( workspace, "models", settings_override ) return workspace_models or settings.BASEROW_ANTHROPIC_MODELS - def is_enabled(self, workspace=None, settings_override=None): + def is_enabled( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> bool: api_key = self.get_api_key(workspace, settings_override) return bool(api_key) and bool( self.get_enabled_models( @@ -233,60 +261,61 @@ def is_enabled(self, workspace=None, settings_override=None): ) ) - def get_client(self, workspace=None, settings_override=None): - from anthropic import Anthropic + def get_ai_model( + self, + model_name: str, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Any: + from pydantic_ai.models.anthropic import AnthropicModel + from pydantic_ai.providers.anthropic import AnthropicProvider api_key = self.get_api_key(workspace, settings_override) - return Anthropic(api_key=api_key) - - def get_settings_serializer(self): + return AnthropicModel(model_name, provider=AnthropicProvider(api_key=api_key)) + + def _prepare_model_settings( + self, temperature: Optional[float] = None + ) -> dict[str, Any]: + settings: dict[str, Any] = {} + if temperature is not None: + # Anthropic only accepts temperature up to 1.0 + settings["temperature"] = min(temperature, 1) + return settings + + def get_settings_serializer(self) -> type: from baserow.api.generative_ai.serializers import AnthropicSettingsSerializer return AnthropicSettingsSerializer - def prompt( - self, model, prompt, workspace=None, temperature=None, settings_override=None - ): - from anthropic import APIStatusError - - try: - client = self.get_client(workspace, settings_override) - kwargs = {} - if temperature: - # Because some LLMs can have a temperature of 2, this is the maximum by - # default. We're changing it to a maximum of 1 because Anthropic only - # accepts 1. - kwargs["temperature"] = min(temperature, 1) - message = client.messages.create( - messages=[ - {"role": "user", "content": [{"type": "text", "text": prompt}]} - ], - model=model, - max_tokens=4096, - stream=False, - **kwargs, - ) - return message.content[0].text - except APIStatusError as exc: - raise GenerativeAIPromptError(str(exc)) from exc - class MistralGenerativeAIModelType(GenerativeAIModelType): type = "mistral" - def get_api_key(self, workspace=None, settings_override=None): + def get_api_key( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Optional[str]: return ( self.get_workspace_setting(workspace, "api_key", settings_override) or settings.BASEROW_MISTRAL_API_KEY ) - def get_enabled_models(self, workspace=None, settings_override=None): + def get_enabled_models( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> list[str]: workspace_models = self.get_workspace_setting( workspace, "models", settings_override ) return workspace_models or settings.BASEROW_MISTRAL_MODELS - def is_enabled(self, workspace=None, settings_override=None): + def is_enabled( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> bool: api_key = self.get_api_key(workspace, settings_override) return bool(api_key) and bool( self.get_enabled_models( @@ -294,72 +323,103 @@ def is_enabled(self, workspace=None, settings_override=None): ) ) - def get_client(self, workspace=None, settings_override=None): - from mistralai import Mistral + def get_ai_model( + self, + model_name: str, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Any: + from pydantic_ai.models.mistral import MistralModel + from pydantic_ai.providers.mistral import MistralProvider api_key = self.get_api_key(workspace, settings_override) - return Mistral(api_key=api_key) - - def get_settings_serializer(self): + return MistralModel(model_name, provider=MistralProvider(api_key=api_key)) + + def _prepare_model_settings( + self, temperature: Optional[float] = None + ) -> dict[str, Any]: + settings: dict[str, Any] = {} + if temperature is not None: + # Mistral only accepts temperature up to 1.0 + settings["temperature"] = min(temperature, 1) + return settings + + def get_settings_serializer(self) -> type: from baserow.api.generative_ai.serializers import MistralSettingsSerializer return MistralSettingsSerializer - def prompt( - self, model, prompt, workspace=None, temperature=None, settings_override=None - ): - from mistralai.models import HTTPValidationError, SDKError - - try: - client = self.get_client(workspace, settings_override) - kwargs = {} - if temperature: - # Because some LLMs can have a temperature of 2, this is the maximum by - # default. We're changing it to a maximum of 1 because Mistral only - # accepts 1. - kwargs["temperature"] = min(temperature, 1) - response = client.chat.complete( - messages=[{"role": "user", "content": prompt}], - model=model, - **kwargs, - ) - return response.choices[0].message.content - except (HTTPValidationError, SDKError) as exc: - raise GenerativeAIPromptError(str(exc)) from exc - class OllamaGenerativeAIModelType(BaseOpenAIGenerativeAIModelType): type = "ollama" - def get_host(self, workspace=None, settings_override=None): + def get_host( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Optional[str]: return ( self.get_workspace_setting(workspace, "host", settings_override) or settings.BASEROW_OLLAMA_HOST ) - def get_api_key(self, workspace=None, settings_override=None): + def get_api_key( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> str: return "ollama" - def get_organization(self, workspace=None, settings_override=None): + def get_organization( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> None: return None - def get_base_url(self, workspace=None, settings_override=None): + def get_base_url( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> str: host = self.get_host(workspace, settings_override) return f"{host}/v1" - def get_enabled_models(self, workspace=None, settings_override=None): + def get_enabled_models( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> list[str]: workspace_models = self.get_workspace_setting( workspace, "models", settings_override ) return workspace_models or settings.BASEROW_OLLAMA_MODELS - def is_enabled(self, workspace=None, settings_override=None): + def is_enabled( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> bool: host = self.get_host(workspace, settings_override) return bool(host) and bool( self.get_enabled_models(workspace, settings_override) ) - def get_settings_serializer(self): + def get_ai_model( + self, + model_name: str, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Any: + from pydantic_ai.models.openai import OpenAIChatModel + from pydantic_ai.providers.ollama import OllamaProvider + + host = self.get_host(workspace, settings_override) + return OpenAIChatModel( + model_name, provider=OllamaProvider(base_url=f"{host}/v1") + ) + + def get_settings_serializer(self) -> type: from baserow.api.generative_ai.serializers import OllamaSettingsSerializer return OllamaSettingsSerializer @@ -372,31 +432,65 @@ class OpenRouterGenerativeAIModelType(BaseOpenAIGenerativeAIModelType): type = "openrouter" - def get_api_key(self, workspace=None, settings_override=None): + def get_api_key( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Optional[str]: return ( self.get_workspace_setting(workspace, "api_key", settings_override) or settings.BASEROW_OPENROUTER_API_KEY ) - def get_enabled_models(self, workspace=None, settings_override=None): + def get_enabled_models( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> list[str]: workspace_models = self.get_workspace_setting( workspace, "models", settings_override ) return workspace_models or settings.BASEROW_OPENROUTER_MODELS - def get_organization(self, workspace=None, settings_override=None): + def get_organization( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Optional[str]: return ( self.get_workspace_setting(workspace, "organization", settings_override) or settings.BASEROW_OPENROUTER_ORGANIZATION ) - def get_base_url(self, workspace=None, settings_override=None): + def get_base_url( + self, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> str: return "https://openrouter.ai/api/v1" - def get_settings_serializer(self): + def get_ai_model( + self, + model_name: str, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Any: + from openai import AsyncOpenAI + from pydantic_ai.models.openai import OpenAIChatModel + from pydantic_ai.providers.openrouter import OpenRouterProvider + + api_key = self.get_api_key(workspace, settings_override) + organization = self.get_organization(workspace, settings_override) + client = AsyncOpenAI( + api_key=api_key, + organization=organization, + base_url="https://openrouter.ai/api/v1", + ) + return OpenAIChatModel( + model_name, provider=OpenRouterProvider(openai_client=client) + ) + + def get_settings_serializer(self) -> type: from baserow.api.generative_ai.serializers import OpenRouterSettingsSerializer return OpenRouterSettingsSerializer - - def is_file_compatible(self, file_name): - return False diff --git a/backend/src/baserow/core/generative_ai/registries.py b/backend/src/baserow/core/generative_ai/registries.py index 09dd0bfacc..74eb4e1140 100644 --- a/backend/src/baserow/core/generative_ai/registries.py +++ b/backend/src/baserow/core/generative_ai/registries.py @@ -1,125 +1,311 @@ -from abc import ABC, abstractmethod -from typing import Optional +from __future__ import annotations + +from typing import TYPE_CHECKING, Any, Optional + +from loguru import logger +from pydantic_ai.messages import UserContent -from baserow.core.generative_ai.types import FileId from baserow.core.models import Workspace from baserow.core.registry import Instance, Registry from .exceptions import GenerativeAITypeDoesNotExist +if TYPE_CHECKING: + from pydantic_ai import Agent + + from baserow_premium.fields.ai_file import AIFile + + +class GenerativeAIModelType(Instance): + supports_files: bool = False -class GenerativeAIWithFilesModelType(ABC): - @abstractmethod - def is_file_compatible(self, file_name: str) -> bool: + def get_workspace_setting( + self, + workspace: Optional[Workspace], + key: str, + settings_override: Optional[dict[str, Any]] = None, + ) -> Any: """ - Method to determine whether provided file can be used - for processing. + Get a setting for this AI model type. - :param file_name: The name of the file. + :param workspace: The workspace to get settings from. + :param key: The setting key to retrieve. + :param settings_override: Optional dict of settings to use instead of workspace + settings. Format: {"api_key": "...", "models": [...]} + :return: The setting value or None. """ - raise NotImplementedError( - "The is_file_compatible function must be implemented." - ) + if settings_override is not None and key in settings_override: + return settings_override[key] + + if not isinstance(workspace, Workspace): + return None + + settings = workspace.generative_ai_models_settings or {} + type_settings = settings.get(self.type, {}) + return type_settings.get(key, None) + + def is_enabled(self, workspace: Optional[Workspace] = None) -> bool: + return False + + def get_enabled_models(self, workspace: Optional[Workspace] = None) -> list[str]: + return [] + + def prepare_files( + self, + files: list[AIFile], + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> list[AIFile]: + """Process files into prompt content. Each provider implements its + own logic for deciding what to embed, what to upload, and which files + to skip. + + Providers set ``content`` and optionally ``provider_file_id`` on each + accepted file. Only processed files (those with ``content`` set) are + returned; skipped files are filtered out. + + :param files: List of AIFile instances with metadata and lazy + ``read_content()`` method. + :param workspace: The workspace for settings resolution. + :param settings_override: Optional provider settings override. + :return: The processed files with content/provider_file_id set. + """ + + return [] - @abstractmethod - def get_max_file_size(self) -> int: + def delete_file( + self, + ai_file: AIFile, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> None: """ - Returns the maximum size of the file in MB that can be used. + Delete a single uploaded file from the provider. Override in + subclasses that upload files in ``prepare_files``. + + :param ai_file: The AIFile instance representing the file to delete. + :param workspace: The workspace for settings resolution. + :param settings_override: Optional provider settings override. """ - raise NotImplementedError("The get_max_file_size function must be implemented.") + def cleanup_files( + self, + files: list[AIFile], + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> None: + """ + Clean up provider-uploaded files. Only files with a + ``provider_file_id`` are processed. Safe to call with an empty list. + + :param files: List of AIFile instances returned by ``prepare_files``. + :param workspace: The workspace for settings resolution. + :param settings_override: Optional provider settings override. + """ - @abstractmethod - def upload_file( - self, file_name: str, file: bytes, workspace: Optional[Workspace] = None - ) -> FileId: + for ai_file in files: + if not ai_file.provider_file_id: + continue + try: + self.delete_file(ai_file, workspace, settings_override) + except Exception: + logger.warning( + f"Failed to delete file {ai_file.provider_file_id} from " + f"provider {self.type}." + ) + + def get_ai_model( + self, + model_name: str, + workspace: Optional[Workspace] = None, + settings_override: Optional[dict[str, Any]] = None, + ) -> Any: """ - Method to upload files for processing. + Return a pydantic-ai Model instance configured with provider credentials. - :param file_name: The name for the uploaded file including file extension. - :param file: File to upload as bytes. - :param workspace: Workspace where the processing happens. - :raises AIFileError: If the file has not been uploaded. - :return: List of file ids to keep as a reference to processed files. + :param model_name: The name of the model to retrieve. + :param workspace: The workspace for settings resolution. + :param settings_override: Optional provider settings override. """ - raise NotImplementedError("The upload_file function must be implemented.") + raise NotImplementedError("The get_ai_model function must be implemented.") - @abstractmethod - def delete_files( - self, file_ids: list[FileId], workspace: Optional[Workspace] = None - ): + def _prepare_model_settings( + self, temperature: Optional[float] = None + ) -> dict[str, Any]: """ - Method to clean up processed files that are no longer needed. + Build model settings dict. Override in subclasses for provider quirks. - :param file_ids: File ids of files to delete. - :param workspace: Workspace where the processing happens. - :raises AIFileError: If the file has not been deleted. + :param temperature: Optional temperature override. + :return: Dictionary of model settings. """ - raise NotImplementedError("The delete_files function must be implemented.") + settings: dict[str, Any] = {} + if temperature is not None: + settings["temperature"] = temperature + return settings - @abstractmethod - def prompt_with_files( + def _is_choices(self, output_type: Any) -> bool: + """ + Determine if the output_type represents a list of string choices. + + :param output_type: The output_type to check. + :return: True if output_type is a list of strings, False otherwise. + """ + + return isinstance(output_type, list) and all( + isinstance(c, str) for c in output_type + ) + + def _build_user_prompt( self, - model: str, prompt: str, - file_ids: list[FileId], - workspace: Optional[Workspace] = None, - temperature: Optional[float] = None, - ): + output_type: Any = None, + content: Optional[list[UserContent]] = None, + ) -> str | list[UserContent]: """ - Prompt AI model for an answer using the provided files as file ids as the - knowledge base. + Build the user prompt, optionally adding choice constraints and + multi-modal content. - :param model: The name of the model to use. - :param prompt: The model's prompt to use. - :param file_ids: File ids of files to use as the knowledge base. - :param workspace: The workspace related to the prompt. - :param temperature: The temperature that must be used when executing the prompt. + :param prompt: The base text prompt. + :param output_type: The output_type to determine if choices should be added. + :param content: Optional list of UserContent for multi-modal input. + :return: The final prompt, either as a string or list of UserContent. """ - raise NotImplementedError("The prompt_with_files function must be implemented.") + import json + if self._is_choices(output_type): + choices_json = json.dumps(output_type) + prompt = ( + f"{prompt}\n\n" + f"Select exactly one option from: {choices_json}\n" + f"Respond with only the option name, nothing else." + ) -class GenerativeAIModelType(Instance): - def get_workspace_setting(self, workspace, key, settings_override=None): + if content: + prompt = ( + f"{prompt}\n\n" + "The contents of the attached files are included below. " + "Use them to answer the prompt above." + ) + return [prompt] + content + + return prompt + + def _build_agent(self, output_type: Any = None) -> "Agent": """ - Get a setting for this AI model type. + Create a pydantic-ai Agent with the appropriate output type. - :param workspace: The workspace to get settings from. - :param key: The setting key to retrieve. - :param settings_override: Optional dict of settings to use instead of workspace - settings. Format: {"api_key": "...", "models": [...]} - :return: The setting value or None. + :param output_type: The output_type to determine the Agent's output format. + :return: A configured Agent instance. """ - if settings_override is not None and key in settings_override: - return settings_override[key] + from pydantic_ai import Agent, PromptedOutput - if not isinstance(workspace, Workspace): - return None + if output_type is not None and not self._is_choices(output_type): + return Agent( + output_type=PromptedOutput(output_type), + output_retries=3, + ) - settings = workspace.generative_ai_models_settings or {} - type_settings = settings.get(self.type, {}) - return type_settings.get(key, None) + return Agent(output_type=str) - def is_enabled(self, workspace=None): - return False + def _resolve_choices( + self, text: str, choices: list[str], cutoff: float = 0.6 + ) -> Optional[str]: + """ + Fuzzy-match the model's text response against the valid choices. If the + best match is above the cutoff threshold, return it; otherwise return + None. + + :param text: The model's raw text response. + :param choices: The list of valid choice strings. + :param cutoff: The similarity threshold for matching (0.0 to 1.0). + :return: The matched choice string, or None if no good match is found. + """ - def get_enabled_models(self, workspace=None): - return [] + import re + from difflib import get_close_matches + + # Normalize common LLM formatting: quotes, markdown bold, trailing + # punctuation, etc. Case-insensitive matching to handle ALL CAPS or + # lowercase responses. + normalized = re.sub(r"^[\s\"'`*]+|[\s\"'`*.!,]+$", "", text).lower() + + lower_choices = [c.lower() for c in choices] + closest = get_close_matches(normalized, lower_choices, n=1, cutoff=cutoff) + if closest: + return choices[lower_choices.index(closest[0])] + return None + + def prompt( + self, + model: str, + prompt: str, + workspace: Optional[Workspace] = None, + temperature: Optional[float] = None, + settings_override: Optional[dict[str, Any]] = None, + output_type: Any = None, + content: Optional[list[UserContent]] = None, + ) -> Any: + """ + Prompt the AI model and return the result. Handles model retrieval, + prompt construction, agent execution, and choice resolution. + + If output_type is a list of strings, the model's response will be + fuzzy-matched against those choices, and the matched choice will be + returned (or None if no good match). If output_type is a Pydantic model, + the response will be validated and returned as an instance of that model. + + If content is provided, it will be included as multi-modal input alongside + the text prompt. + + :param model: The model name to use. + :param prompt: The text prompt to send. + :param workspace: The workspace for settings resolution. + :param temperature: Optional temperature override. + :param settings_override: Optional provider settings override. + :param output_type: Controls the output format: + - None (default): plain text response (str) + - list[str]: choice selection — the model picks one, fuzzy-matched. + Returns None if no match is found. + - A Pydantic BaseModel or TypedDict: structured output via + PromptedOutput. Returns a validated instance. + :param content: A list of pydantic-ai content objects (BinaryContent, etc.) + to include as multi-modal input alongside the text prompt. + :return: The model's response — a string, a matched choice, or a + validated output_type instance. + """ + + from .exceptions import GenerativeAIPromptError + + try: + ai_model = self.get_ai_model(model, workspace, settings_override) + model_settings = self._prepare_model_settings(temperature) + user_prompt = self._build_user_prompt(prompt, output_type, content) + agent = self._build_agent(output_type) + + result = agent.run_sync( + user_prompt, model=ai_model, model_settings=model_settings + ) + + if self._is_choices(output_type): + return self._resolve_choices(result.output, output_type) - def prompt(self, model, prompt, workspace=None, temperature=None): - raise NotImplementedError("The prompt function must be implemented.") + return result.output + except GenerativeAIPromptError: + raise + except Exception as e: + raise GenerativeAIPromptError(str(e)) from e - def get_settings_serializer(self): + def get_settings_serializer(self) -> type: raise NotImplementedError( "The get_settings_serializer function must be implemented." ) - def get_serializer(self): + def get_serializer(self) -> type: from baserow.api.generative_ai.serializers import GenerativeAIModelsSerializer return GenerativeAIModelsSerializer @@ -129,7 +315,9 @@ class GenerativeAIModelTypeRegistry(Registry): name = "generative_ai_model_type" does_not_exist_exception_class = GenerativeAITypeDoesNotExist - def get_enabled_models_per_type(self, workspace=None): + def get_enabled_models_per_type( + self, workspace: Optional[Workspace] = None + ) -> dict[str, list[str]]: return { key: model_type.get_enabled_models(workspace) for key, model_type in self.registry.items() diff --git a/backend/src/baserow/core/generative_ai/types.py b/backend/src/baserow/core/generative_ai/types.py index c3da091f23..e69de29bb2 100644 --- a/backend/src/baserow/core/generative_ai/types.py +++ b/backend/src/baserow/core/generative_ai/types.py @@ -1,4 +0,0 @@ -# Arbitrary id that is specific to -# the used vector database and identifies -# one particular file/document -FileId = str diff --git a/backend/src/baserow/core/mcp/__init__.py b/backend/src/baserow/core/mcp/__init__.py index 72c19f8d58..4579343f7b 100644 --- a/backend/src/baserow/core/mcp/__init__.py +++ b/backend/src/baserow/core/mcp/__init__.py @@ -84,11 +84,15 @@ async def call_tool(self, name: str, arguments): endpoint = await self.get_endpoint() if not endpoint: - return [TextContent(type="text", text=f"Endpoint not found.")] - tool, params = mcp_tool_registry.match_by_name(name) - if not tool or params is None: + return [TextContent(type="text", text="Endpoint not found.")] + tool = mcp_tool_registry.match_by_name(name) + if not tool: return [TextContent(type="text", text=f"Tool '{name}' not found.")] - return await tool.call(endpoint, name, params, arguments) + try: + return await tool.call(endpoint, arguments) + except Exception as e: + logger.exception("Unhandled exception in MCP tool '{}'", name) + return [TextContent(type="text", text=f"Error: {e}")] async def list_tools(self) -> list["Tool"]: from baserow.core.mcp.registries import mcp_tool_registry diff --git a/backend/src/baserow/core/mcp/registries.py b/backend/src/baserow/core/mcp/registries.py index 782ad2f014..07e2cd820d 100644 --- a/backend/src/baserow/core/mcp/registries.py +++ b/backend/src/baserow/core/mcp/registries.py @@ -1,7 +1,10 @@ +import json from typing import TYPE_CHECKING, Any, Dict, List, Optional, Sequence, Union +from asgiref.sync import sync_to_async +from pydantic import BaseModel + from baserow.core.mcp.models import MCPEndpoint -from baserow.core.mcp.utils import NameRoute from baserow.core.registry import Instance, Registry if TYPE_CHECKING: @@ -10,82 +13,109 @@ class MCPTool(Instance): - name = None """ - Unique name of the tool. This is used to route the tool call to this instance. It - can contain name parameters, like `{id}`. If provided, then it will dynamically - route all calls to this tool. This can be used to generate dynamic tools. + Base class for MCP tools. + + Subclasses must set ``type`` (used as both the registry key and the MCP + tool name) and define a docstring (used as the MCP tool description). + + Set ``input_schema`` to a pydantic ``BaseModel`` subclass to + auto-generate the JSON Schema and receive a validated instance in + ``_sync_call``. + + Set ``enabled = False`` to prevent the tool from being exposed to MCP + clients. Disabled tools will be re-enabled once users can control tool + availability through the UI. """ - def get_name(self): - if self.name is None: - raise NotImplementedError( - "Either the `name` property or `get_name` method must be implemented." - ) - return self.name + input_schema: type[BaseModel] | None = None + """Pydantic model for the tool's input. Used to generate the JSON Schema.""" + + enabled: bool = True + """Whether the tool is available to MCP clients.""" + + @property + def name(self) -> str: + """MCP tool name, derived from ``type``.""" + return self.type + + def get_name(self) -> str: + return self.type async def list(self, endpoint: MCPEndpoint) -> List["Tool"]: """ - :param endpoint: The endpoint related to the request. Can be used to - dynamically check which tools the user has access to. - :return: List of all the available tools to the user. - """ + Return the MCP Tool definition(s) for this tool. - raise NotImplementedError("The `list` method must be implemented.") + The default implementation builds a single Tool from ``type`` + (as name), the class docstring (as description) and + ``input_schema``. Override for custom behaviour. + """ + from mcp import Tool + + schema = ( + self.input_schema.model_json_schema() + if self.input_schema + else {"type": "object", "properties": {}} + ) + description = self.__class__.__doc__ + if description: + description = " ".join(description.split()) + return [Tool(name=self.type, description=description, inputSchema=schema)] async def call( self, endpoint: MCPEndpoint, - name_parameters: Dict[str, Any], call_arguments: Dict[str, Any], ) -> Sequence[Union["TextContent", "ImageContent", "EmbeddedResource"]]: """ + Execute the tool and return MCP content. - :param endpoint: The endpoint related to the authenticated user. - :param name_parameters: A dict containing the provided name params defined in - the `name` property like {id}. - :param call_arguments: A dict containing the validated arguments from the - tool inputSchema. - :return: The response of the call. + The default implementation calls ``_sync_call`` inside + ``sync_to_async``, serialises the result as JSON (or plain text if + already a string), and wraps exceptions in an error message. + + Override ``_sync_call`` for the common case. Override ``call`` + directly only when you need full async control. """ + from mcp.types import TextContent - raise NotImplementedError("The `call` method must be implemented.") + if self.input_schema: + args = self.input_schema(**call_arguments) + else: + args = call_arguments + result = await sync_to_async(self._sync_call)(endpoint, args) + text = result if isinstance(result, str) else json.dumps(result) + return [TextContent(type="text", text=text)] - def resolve_name(self, **kwargs): - return self.name.format(**kwargs) + def _sync_call(self, endpoint: MCPEndpoint, args: Any) -> Any: + """ + Synchronous implementation of the tool logic. + + ``args`` is a validated instance of ``input_schema`` (a pydantic model) + when ``input_schema`` is set, otherwise the raw dict. + + Return a string for plain-text responses or any JSON-serialisable + value. Raise an exception to signal an error to the client. + """ + raise NotImplementedError("Implement _sync_call or override call.") class MCPToolRegistry(Registry[MCPTool]): name = "mcp_tools" async def list_all_tools(self, endpoint: MCPEndpoint) -> List["Tool"]: - """ - :param endpoint: The endpoint related to the request. Can be used to - dynamically check which tools the user has access to. - :return: List of all the available tools to the provided user. - """ - - all_tools = [] + """Return only *enabled* tools available to the given endpoint user.""" + all_tools: List["Tool"] = [] for mcp in self.registry.values(): + if not mcp.enabled: + continue tools = await mcp.list(endpoint) all_tools.extend(tools) return all_tools - def match_by_name(self, name: str) -> Union[Optional[MCPTool], Optional[dict]]: - """ - Tries to find a matching tool by the name route, including the resolving of - the parameters like `{id}`. - - :param name: The name of the tool that must be matched. - :return: Returns the matching tool and the extracts params. - """ - - for tool in self.registry.values(): - tool_name = NameRoute(tool.name) - params = tool_name.match(name) - if params is not None: - return tool, params - return None, None + def match_by_name(self, name: str) -> Optional[MCPTool]: + """Return the tool registered under ``name``, or None.""" + return self.registry.get(name) mcp_tool_registry = MCPToolRegistry() diff --git a/backend/src/baserow/core/mcp/sse.py b/backend/src/baserow/core/mcp/sse.py index 96ba7c01ca..520a9bf693 100644 --- a/backend/src/baserow/core/mcp/sse.py +++ b/backend/src/baserow/core/mcp/sse.py @@ -107,9 +107,15 @@ async def connect_sse(self, scope: "Scope", receive: "Receive", send: "Send"): group_name = f"mcp_sse_{session_id.hex}" channel_name = f"sse_client_{session_id.hex}" + group_ready = anyio.Event() + async def sse_writer(): logger.debug("Starting SSE writer") async with sse_stream_writer, write_stream_reader: + # Wait until group_listener has joined the channel group so that + # no POSTed messages can be lost between the client receiving the + # endpoint event and the group being ready to receive. + await group_ready.wait() await sse_stream_writer.send({"event": "endpoint", "data": session_uri}) logger.debug(f"Sent endpoint event: {session_uri}") @@ -127,6 +133,7 @@ async def sse_writer(): async def group_listener(): logger.debug(f"Listening for incoming messages on group: {group_name}") await channel_layer.group_add(group_name, channel_name) + group_ready.set() try: while True: incoming = await channel_layer.receive(channel_name) diff --git a/backend/src/baserow/core/mcp/utils.py b/backend/src/baserow/core/mcp/utils.py deleted file mode 100644 index 162ec1bd7a..0000000000 --- a/backend/src/baserow/core/mcp/utils.py +++ /dev/null @@ -1,203 +0,0 @@ -import re -from typing import Dict, Optional -from urllib.parse import urlencode - -from django.contrib.auth.models import AbstractUser -from django.urls import reverse - -from drf_spectacular.extensions import OpenApiSerializerExtension -from drf_spectacular.openapi import AutoSchema -from drf_spectacular.plumbing import ( - ComponentRegistry, - OpenApiGeneratorExtension, - build_root_object, - force_instance, -) -from rest_framework import viewsets -from rest_framework.request import Request -from rest_framework.response import Response -from rest_framework.serializers import Serializer -from rest_framework.test import APIClient, APIRequestFactory -from rest_framework_simplejwt.tokens import AccessToken - - -class FullyInlineAutoSchema(AutoSchema): - def _map_serializer_field(self, field, direction, bypass_extensions=False): - from drf_spectacular.plumbing import is_list_serializer, is_serializer - - if is_list_serializer(field): - return self._unwrap_list_serializer(field, direction) - - if is_serializer(field): - return self._map_serializer(field, direction) - - return super()._map_serializer_field(field, direction, bypass_extensions) - - def _unwrap_list_serializer(self, serializer, direction): - from drf_spectacular.plumbing import is_list_serializer, is_serializer - - if not is_list_serializer(serializer): - return None - - child = serializer.child - if is_serializer(child): - item_schema = self._map_serializer(child, direction) - return {"type": "array", "items": item_schema} - - return super()._unwrap_list_serializer(serializer, direction) - - def resolve_serializer(self, serializer, direction): - """ - Overrides the normal behavior to avoid ever returning $ref. - This forces all serializers (including those via extensions) to be fully - inlined. - """ - - serializer = force_instance(serializer) - extension = OpenApiSerializerExtension.get_match(serializer) - - schema_dict = ( - extension.map_serializer(self, direction) - if extension - else self._map_serializer(serializer, direction) - ) - - # Return a dummy object that provides `.ref` as the inlined schema dict - return type("ResolvedInline", (), {"ref": schema_dict})() - - -def serializer_to_openapi_inline( - serializer_class: Serializer, method: str = "GET", direction: str = "request" -) -> Dict: - """ - This helper method converts the provided serializer class into an inline OpenAPI - schema dict. It uses the `drf-spectacular` library that we're already using to - automatically generate the full API docs. - - It's also compatible with OpenAPI serializer extensions like - `CustomFieldRegistryMappingSerializer`. - - :param serializer_class: The serializer class that must be converted to the OpenAI - dict. - :param method: `drf-spectacular` automatically extracts information from a view. - It therefore also extracts the method, and it must be provided here. - :param direction: `request` or `response` serializer. - :return: The OpenAPI spec of the serializer as dict. - """ - - class DummyViewSet(viewsets.ViewSet): - def get_serializer(self, *args, **kwargs): - return serializer_class(*args, **kwargs) - - factory = APIRequestFactory() - request = factory.generic(method.upper(), "/dummy/") - wrapped_request = Request(request) - - dummy_view = DummyViewSet() - dummy_view.request = wrapped_request - dummy_view.format_kwarg = None - - schema = FullyInlineAutoSchema() - schema.view = dummy_view - schema.method = method.upper() - schema.path = "/dummy/" - schema.registry = ComponentRegistry() - - build_root_object( - paths={"/dummy/": {schema.method.lower(): schema}}, - components={}, - webhooks={}, - version="1.0.0", - ) - - serializer_instance = force_instance(serializer_class) - - extension = OpenApiGeneratorExtension.get_match(serializer_instance) - if extension: - return extension.map_serializer(schema, direction) - else: - return schema._map_serializer(serializer_instance, direction) - - -class NameRoute: - """ - Helper class to construct an match a route with parameters. Can be used like: - - ``` - route = NameRoute("/page/{id}/test") - route.match("/page/1/test") == {"id": 1} - route.match("other-page") == None - ``` - """ - - def __init__(self, pattern: str): - self.pattern = pattern - self.regex, self.param_names = self._compile_pattern(pattern) - - def _compile_pattern(self, pattern: str): - param_names = [] - regex_pattern = "" - - pos = 0 - for match in re.finditer(r"{(\w+)}", pattern): - start, end = match.span() - param_name = match.group(1) - param_names.append(param_name) - - regex_pattern += re.escape(pattern[pos:start]) - regex_pattern += r"(?P<%s>[^/]+)" % param_name - pos = end - - regex_pattern += re.escape(pattern[pos:]) - regex = re.compile(f"^{regex_pattern}$") - return regex, param_names - - def match(self, path: str) -> Optional[Dict[str, str]]: - match = self.regex.match(path) - if match: - return match.groupdict() - return None - - -def internal_api_request( - route_name: str, - method: str = "GET", - path_params: Optional[dict] = None, - data: Optional[dict] = None, - user: Optional[AbstractUser] = None, - query_params: Optional[dict] = None, -) -> Response: - """ - Simulate an internal API request in Django. - - :param route_name: Name of the URL pattern (named route). - :param method: HTTP method (e.g., 'GET', 'POST'). - :param path_params: Dictionary of path parameters. - :param data: Dictory used as payload in the body. - :param user: User object or None if anonymous. Automatically adds the `JWT` - authorization header if provided. - :param query_params: Dictionary of query parameters. - :return: Response from the view function. - """ - - client = APIClient() - - if user: - jwt_token = str(AccessToken.for_user(user)) - client.credentials(HTTP_AUTHORIZATION=f"JWT {jwt_token}") - - base_url = reverse(route_name, kwargs=path_params or {}) - if query_params: - query_string = urlencode(query_params) - url_path = f"{base_url}?{query_string}" - else: - url_path = base_url - - headers = {"Content-Type": "application/json"} - - method_func = getattr(client, method.lower(), None) - if not method_func: - raise ValueError(f"Unsupported HTTP method: {method}") - - response = method_func(url_path, data=data, format="json", **headers) - return response diff --git a/backend/src/baserow/core/output_parsers.py b/backend/src/baserow/core/output_parsers.py deleted file mode 100644 index 8862dee0fc..0000000000 --- a/backend/src/baserow/core/output_parsers.py +++ /dev/null @@ -1,32 +0,0 @@ -import json -from difflib import get_close_matches -from typing import Any - - -def get_strict_enum_output_parser(enum: type) -> Any: - from langchain.output_parsers.enum import EnumOutputParser - - class StrictEnumOutputParser(EnumOutputParser): - def get_format_instructions(self) -> str: - json_array = json.dumps(self._valid_values) - return f"""Categorize the result following these requirements: - - - Select only one option from the JSON array below. - - Don't use quotes or commas or partial values, just the option name. - - Choose the option that most closely matches the row values. - -```json -{json_array} -```""" # noqa: S608 - not SQL, just a JSON template - - def parse(self, response: str) -> Any: - response = response.strip() - # Sometimes the LLM responds with a quotes value or with part of the value - # if it contains a comma. Finding the close matches helps with selecting the - # right value. - closest_matches = get_close_matches( - response, self._valid_values, n=1, cutoff=0.0 - ) - return super().parse(closest_matches[0]) - - return StrictEnumOutputParser(enum=enum) diff --git a/backend/src/baserow/test_utils/fixtures/generative_ai.py b/backend/src/baserow/test_utils/fixtures/generative_ai.py index aee3faadb5..23d3d933e5 100644 --- a/backend/src/baserow/test_utils/fixtures/generative_ai.py +++ b/backend/src/baserow/test_utils/fixtures/generative_ai.py @@ -1,15 +1,9 @@ -import random -from typing import Optional - from baserow.api.generative_ai.serializers import GenerativeAIModelsSerializer from baserow.core.generative_ai.exceptions import GenerativeAIPromptError from baserow.core.generative_ai.registries import ( GenerativeAIModelType, - GenerativeAIWithFilesModelType, generative_ai_model_type_registry, ) -from baserow.core.generative_ai.types import FileId -from baserow.core.models import Workspace class TestGenerativeAINoModelType(GenerativeAIModelType): @@ -38,17 +32,31 @@ def get_enabled_models(self, workspace=None): models = self.get_workspace_setting(workspace, "models") return models if models else ["test_1"] - def prompt(self, model, prompt, workspace=None, temperature=None): + def prompt( + self, + model, + prompt, + workspace=None, + temperature=None, + settings_override=None, + output_type=None, + content=None, + ): + if isinstance(output_type, list): + return output_type[0] + if output_type is not None: + raise GenerativeAIPromptError( + "Test fixture does not support structured output." + ) return f"Generated with temperature {temperature}: {prompt}" def get_settings_serializer(self): return GenerativeAIModelsSerializer -class TestGenerativeAIWithFilesModelType( - GenerativeAIWithFilesModelType, GenerativeAIModelType -): +class TestGenerativeAIWithFilesModelType(GenerativeAIModelType): type = "test_generative_ai_with_files" + supports_files = True def is_enabled(self, workspace=None): return True @@ -57,46 +65,38 @@ def get_enabled_models(self, workspace=None): models = self.get_workspace_setting(workspace, "models") return models if models else ["test_1"] - def prompt(self, model, prompt, workspace=None, temperature=None): + def prompt( + self, + model, + prompt, + workspace=None, + temperature=None, + settings_override=None, + output_type=None, + content=None, + ): + if isinstance(output_type, list): + return output_type[0] + if content: + return f"Generated with files and temperature {temperature}: {prompt}" return f"Generated with temperature {temperature}: {prompt}" def get_settings_serializer(self): return GenerativeAIModelsSerializer - def is_file_compatible(self, file_name: str) -> bool: - return True + def prepare_files(self, files, workspace=None, settings_override=None): + from pydantic_ai import BinaryContent - def get_max_file_size(self): - return 1 # 1 megabyte + for ai_file in files: + if ai_file.size > 1 * 1024 * 1024: # 1 MB limit + continue + data = ai_file.read_content() + ai_file.content = BinaryContent(data=data, media_type=ai_file.mime_type) + break # first file only + return [f for f in files if f.content is not None] - def upload_file( - self, file_name: str, file: bytes, workspace: Optional[Workspace] = None - ): - if getattr(self, "_files", None) is None: - self._files = {} - - gen_id = str(random.randint(0, 1000)) - self._files[gen_id] = { - "file_name": file_name, - "file": file, - } - return gen_id - - def delete_files( - self, file_ids: list[FileId], workspace: Optional[Workspace] = None - ): - for file_id in file_ids: - del self._files[file_id] - - def prompt_with_files( - self, - model: str, - prompt: str, - file_ids: list[FileId], - workspace: Optional[Workspace] = None, - temperature: Optional[float] = None, - ): - return f"Generated with files {str(file_ids)} and temperature {temperature}: {prompt}" + def delete_file(self, ai_file, workspace=None, settings_override=None): + pass class TestGenerativeAIModelTypePromptError(GenerativeAIModelType): @@ -108,7 +108,16 @@ def is_enabled(self, workspace=None): def get_enabled_models(self, workspace=None): return ["test_1"] - def prompt(self, model, prompt, workspace=None, temperature=None): + def prompt( + self, + model, + prompt, + workspace=None, + temperature=None, + settings_override=None, + output_type=None, + content=None, + ): raise GenerativeAIPromptError("Test error") def get_settings_serializer(self): diff --git a/backend/templates/ab_agency_theme.json b/backend/templates/ab_agency_theme.json new file mode 100644 index 0000000000..d9ae1efd0c --- /dev/null +++ b/backend/templates/ab_agency_theme.json @@ -0,0 +1,4954 @@ +{ + "baserow_template_version": 1, + "name": "Agency Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "agency", + "creative", + "design" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "ElMaZ", + "link_font_weight": "semi-bold", + "button_border_size": 1, + "link_hover_text_color": "ElMaZ", + "link_active_text_color": "ElMaZ", + "button_background_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#1a1a1a", + "button_active_background_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F1FAEE'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E63946'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2B2B2B'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#161616'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2EC4B6'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#f1f1f1'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#808080'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#FF9F1C'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E63946'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#e63946", + "secondary_color": "#f1faee", + "border_color": "#2b2b2b", + "main_success_color": "#2ec4b6", + "main_warning_color": "#ff9f1c", + "main_error_color": "#e63946", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#f1f1f1", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#161616", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#808080", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "ElMaZ", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 40, + "heading_1_font_weight": "bold", + "heading_1_text_color": "ElMaZ", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 28, + "heading_2_font_weight": "bold", + "heading_2_text_color": "ElMaZ", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 22, + "heading_3_font_weight": "bold", + "heading_3_text_color": "ElMaZ", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 18, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "ElMaZ", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 14, + "heading_5_font_weight": "semi-bold", + "heading_5_text_color": "ElMaZ", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 12, + "heading_6_font_weight": "semi-bold", + "heading_6_text_color": "transparent", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 11, + "button_font_weight": "bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 0, + "button_vertical_padding": 10, + "button_horizontal_padding": 20, + "button_hover_background_color": "#cf2f3c", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#0d0d0d", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "ElMaZ", + "label_font_size": 11, + "label_font_weight": "bold", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "ElMaZ", + "input_background_color": "#161616", + "input_border_color": "border", + "input_border_size": 1, + "input_border_radius": 0, + "input_vertical_padding": 10, + "input_horizontal_padding": 14, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 0, + "table_header_background_color": "#1a1a1a", + "table_header_text_color": "V6EVv", + "table_header_font_size": 11, + "table_header_font_weight": "bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "zoOtT", + "table_cell_alternate_background_color": "zoOtT", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 14, + "table_cell_horizontal_padding": 18, + "table_vertical_separator_color": "border", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "medium", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#ff4d5a", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Agency theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Agency database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'e639463d',\nif(field('Status') = 'Ready', '2ec4b63d', \nif(field('Status') = 'On hold', '8080803d', \nif(field('Status') = 'Blocked', 'ff9f1c3d',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_agency_theme.zip b/backend/templates/ab_agency_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_agency_theme.zip differ diff --git a/backend/templates/ab_baserow_theme.json b/backend/templates/ab_baserow_theme.json index 8e174fbd80..2688a2f6ac 100644 --- a/backend/templates/ab_baserow_theme.json +++ b/backend/templates/ab_baserow_theme.json @@ -4336,7 +4336,7 @@ "element_id": 3334, "event": "submit", "title": "'Thank you'", - "description": "'Thank youb for filling out the contact us form.'" + "description": "'Thank you for filling out the contact us form.'" } ], "visibility": "all", diff --git a/backend/templates/ab_coral_theme.json b/backend/templates/ab_coral_theme.json new file mode 100644 index 0000000000..774be08e14 --- /dev/null +++ b/backend/templates/ab_coral_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Coral Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "coral", + "tropical", + "vibrant" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#3d2c2c", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#fdf2f1", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1BC5BD'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#FF6B6B'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F5E0DE'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2D1F1F'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1BC5BD'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#8A7B7B'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F59E0B'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#ff6b6b", + "secondary_color": "#1bc5bd", + "border_color": "#f5e0de", + "main_success_color": "#1bc5bd", + "main_warning_color": "#f59e0b", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#2d1f1f", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#8a7b7b", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 15, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 36, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 26, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 22, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 18, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 15, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 13, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 14, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 8, + "button_vertical_padding": 11, + "button_horizontal_padding": 16, + "button_hover_background_color": "#e85c5c", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#fffaf9", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 13, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 15, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#e0cccb", + "input_border_size": 1, + "input_border_radius": 8, + "input_vertical_padding": 12, + "input_horizontal_padding": 16, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 8, + "table_header_background_color": "#fdf2f1", + "table_header_text_color": "V6EVv", + "table_header_font_size": 13, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 18, + "table_cell_horizontal_padding": 24, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 15, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#e85c5c", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Coral theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Coral database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'CFFAFE',\nif(field('Status') = 'Ready', 'DCFCE7', \nif(field('Status') = 'On hold', 'F1F5F9', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_coral_theme.zip b/backend/templates/ab_coral_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_coral_theme.zip differ diff --git a/backend/templates/ab_corporate_theme.json b/backend/templates/ab_corporate_theme.json new file mode 100644 index 0000000000..87186c2425 --- /dev/null +++ b/backend/templates/ab_corporate_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Corporate Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "corporate", + "professional", + "business" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#2a3f58", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#e9edf2", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#4A90D9'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1E3A5F'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D6DCE4'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1A1F2B'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#28A745'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#6C7A8D'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F0AD4E'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#DC3545'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#1e3a5f", + "secondary_color": "#4a90d9", + "border_color": "#d6dce4", + "main_success_color": "#28a745", + "main_warning_color": "#f0ad4e", + "main_error_color": "#dc3545", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#1a1f2b", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#6c7a8d", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 28, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 22, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 18, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 16, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 14, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 12, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 12, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 4, + "button_vertical_padding": 9, + "button_horizontal_padding": 14, + "button_hover_background_color": "#162d4a", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f3f5f8", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 12, + "label_font_weight": "semi-bold", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#c1c9d3", + "input_border_size": 1, + "input_border_radius": 4, + "input_vertical_padding": 10, + "input_horizontal_padding": 14, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 4, + "table_header_background_color": "#e9edf2", + "table_header_text_color": "V6EVv", + "table_header_font_size": 11, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 14, + "table_cell_horizontal_padding": 20, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#162d4a", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Corporate theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Corporate database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'DBEAFE',\nif(field('Status') = 'Ready', 'D1FAE5', \nif(field('Status') = 'On hold', 'F1F5F9', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_corporate_theme.zip b/backend/templates/ab_corporate_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_corporate_theme.zip differ diff --git a/backend/templates/ab_eclipse_theme.json b/backend/templates/ab_eclipse_theme.json index df727bed03..c6be16d148 100644 --- a/backend/templates/ab_eclipse_theme.json +++ b/backend/templates/ab_eclipse_theme.json @@ -4337,7 +4337,7 @@ "element_id": 3433, "event": "submit", "title": "'Thank you'", - "description": "'Thank youb for filling out the contact us form.'" + "description": "'Thank you for filling out the contact us form.'" } ], "visibility": "all", diff --git a/backend/templates/ab_education_theme.json b/backend/templates/ab_education_theme.json new file mode 100644 index 0000000000..8321a58933 --- /dev/null +++ b/backend/templates/ab_education_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Education Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "education", + "school", + "learning" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#2a3f58", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#ebeef5", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F97316'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2563EB'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#DCE3ED'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1E2A3A'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#16A34A'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#6B7E94'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F97316'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#2563eb", + "secondary_color": "#f97316", + "border_color": "#dce3ed", + "main_success_color": "#16a34a", + "main_warning_color": "#f97316", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#1e2a3a", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#6b7e94", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 15, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 32, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 26, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 22, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 18, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 16, + "heading_5_font_weight": "semi-bold", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 14, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 14, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 8, + "button_vertical_padding": 11, + "button_horizontal_padding": 18, + "button_hover_background_color": "#1d4ed8", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f5f7fb", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 14, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 15, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#c4ceda", + "input_border_size": 1, + "input_border_radius": 6, + "input_vertical_padding": 12, + "input_horizontal_padding": 16, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 8, + "table_header_background_color": "#ebeef5", + "table_header_text_color": "V6EVv", + "table_header_font_size": 13, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 18, + "table_cell_horizontal_padding": 24, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 15, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#1d4ed8", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Education theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Education database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'DBEAFE',\nif(field('Status') = 'Ready', 'DCFCE7', \nif(field('Status') = 'On hold', 'F1F5F9', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_education_theme.zip b/backend/templates/ab_education_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_education_theme.zip differ diff --git a/backend/templates/ab_finance_theme.json b/backend/templates/ab_finance_theme.json new file mode 100644 index 0000000000..9d53b75b13 --- /dev/null +++ b/backend/templates/ab_finance_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Finance Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "finance", + "banking", + "money" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#1e3d28", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#e8eeea", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#B8860B'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#0D6B3F'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D4DDD7'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#162018'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#0D6B3F'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#5F7367'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D4A017'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C41E3A'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#0d6b3f", + "secondary_color": "#b8860b", + "border_color": "#d4ddd7", + "main_success_color": "#0d6b3f", + "main_warning_color": "#d4a017", + "main_error_color": "#c41e3a", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#162018", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#5f7367", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 13, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 26, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 22, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 18, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 16, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 14, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 12, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 12, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 4, + "button_vertical_padding": 8, + "button_horizontal_padding": 14, + "button_hover_background_color": "#0a5632", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f4f7f5", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 12, + "label_font_weight": "semi-bold", + "input_font_family": "inter", + "input_font_size": 13, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#bcc8c0", + "input_border_size": 1, + "input_border_radius": 4, + "input_vertical_padding": 10, + "input_horizontal_padding": 14, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 4, + "table_header_background_color": "#e8eeea", + "table_header_text_color": "V6EVv", + "table_header_font_size": 11, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 14, + "table_cell_horizontal_padding": 20, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 13, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#0a5632", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Finance theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Finance database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'D1FAE5',\nif(field('Status') = 'Ready', 'FEF9C3', \nif(field('Status') = 'On hold', 'F1F5F9', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_finance_theme.zip b/backend/templates/ab_finance_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_finance_theme.zip differ diff --git a/backend/templates/ab_forest_theme.json b/backend/templates/ab_forest_theme.json new file mode 100644 index 0000000000..a0fa6a09d1 --- /dev/null +++ b/backend/templates/ab_forest_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Forest Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "forest", + "nature", + "green" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#2a4a33", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#edf1eb", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C8A85C'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2D7A4F'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#DDE5DA'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1A2E1F'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2D7A4F'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#6B7D6F'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C8A85C'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C0392B'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#2d7a4f", + "secondary_color": "#c8a85c", + "border_color": "#dde5da", + "main_success_color": "#2d7a4f", + "main_warning_color": "#c8a85c", + "main_error_color": "#c0392b", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#1a2e1f", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#6b7d6f", + "value": "V6EVv" + } + ], + "body_font_family": "arial", + "body_font_size": 15, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 30, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 24, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 20, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "arial", + "heading_4_font_size": 18, + "heading_4_font_weight": "medium", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "arial", + "heading_5_font_size": 16, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "arial", + "heading_6_font_size": 14, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "arial", + "button_font_size": 13, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 6, + "button_vertical_padding": 10, + "button_horizontal_padding": 16, + "button_hover_background_color": "#246841", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f5f7f3", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "arial", + "label_text_color": "zoOtT", + "label_font_size": 13, + "label_font_weight": "semi-bold", + "input_font_family": "arial", + "input_font_size": 15, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#c5d1c3", + "input_border_size": 1, + "input_border_radius": 6, + "input_vertical_padding": 10, + "input_horizontal_padding": 14, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 6, + "table_header_background_color": "#edf1eb", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "bold", + "table_header_font_family": "arial", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 14, + "table_cell_horizontal_padding": 20, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "arial", + "link_font_size": 15, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#246841", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Forest theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Forest database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'DCFCE7',\nif(field('Status') = 'Ready', 'FEF9C3', \nif(field('Status') = 'On hold', 'F1F5F9', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_forest_theme.zip b/backend/templates/ab_forest_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_forest_theme.zip differ diff --git a/backend/templates/ab_healthcare_theme.json b/backend/templates/ab_healthcare_theme.json new file mode 100644 index 0000000000..1bcd3b44cf --- /dev/null +++ b/backend/templates/ab_healthcare_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Healthcare Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "healthcare", + "medical", + "health" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#164e5e", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#e4f0f4", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#059669'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#0891B2'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D1E5EB'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#0C2A33'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#059669'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#5F8A95'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F59E0B'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#0891b2", + "secondary_color": "#059669", + "border_color": "#d1e5eb", + "main_success_color": "#059669", + "main_warning_color": "#f59e0b", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#0c2a33", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#5f8a95", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 30, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 24, + "heading_2_font_weight": "semi-bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 20, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 17, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 15, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 13, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 13, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 8, + "button_vertical_padding": 10, + "button_horizontal_padding": 16, + "button_hover_background_color": "#0e7490", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f2f9fb", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 13, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#b8d4dc", + "input_border_size": 1, + "input_border_radius": 8, + "input_vertical_padding": 12, + "input_horizontal_padding": 16, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 8, + "table_header_background_color": "#e4f0f4", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 16, + "table_cell_horizontal_padding": 22, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#0e7490", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Healthcare theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Healthcare database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'CFFAFE',\nif(field('Status') = 'Ready', 'D1FAE5', \nif(field('Status') = 'On hold', 'F0F9FF', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_healthcare_theme.zip b/backend/templates/ab_healthcare_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_healthcare_theme.zip differ diff --git a/backend/templates/ab_ivory_theme.json b/backend/templates/ab_ivory_theme.json index 9ba06b6c5b..9c9af5a693 100644 --- a/backend/templates/ab_ivory_theme.json +++ b/backend/templates/ab_ivory_theme.json @@ -4336,7 +4336,7 @@ "element_id": 3532, "event": "submit", "title": "'Thank you'", - "description": "'Thank youb for filling out the contact us form.'" + "description": "'Thank you for filling out the contact us form.'" } ], "visibility": "all", diff --git a/backend/templates/ab_lavender_theme.json b/backend/templates/ab_lavender_theme.json new file mode 100644 index 0000000000..35ebccd540 --- /dev/null +++ b/backend/templates/ab_lavender_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Lavender Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "lavender", + "purple", + "soft" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#2e2244", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#f0eaf7", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D4A5E5'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#7C5CBF'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E4DDF0'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1F1533'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#22C55E'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#8B82A0'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F59E0B'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#7c5cbf", + "secondary_color": "#d4a5e5", + "border_color": "#e4ddf0", + "main_success_color": "#22c55e", + "main_warning_color": "#f59e0b", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#1f1533", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#8b82a0", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 32, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 24, + "heading_2_font_weight": "semi-bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 20, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 17, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 15, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 13, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 13, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 100, + "button_vertical_padding": 10, + "button_horizontal_padding": 20, + "button_hover_background_color": "#6a4dab", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f8f5fc", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 13, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#d1c7e2", + "input_border_size": 1, + "input_border_radius": 10, + "input_vertical_padding": 11, + "input_horizontal_padding": 16, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 12, + "table_header_background_color": "#f0eaf7", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "medium", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 16, + "table_cell_horizontal_padding": 22, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#6a4dab", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Lavender theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Lavender database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'EDE9FE',\nif(field('Status') = 'Ready', 'DCFCE7', \nif(field('Status') = 'On hold', 'F1F5F9', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_lavender_theme.zip b/backend/templates/ab_lavender_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_lavender_theme.zip differ diff --git a/backend/templates/ab_legal_theme.json b/backend/templates/ab_legal_theme.json new file mode 100644 index 0000000000..ed76dce1c2 --- /dev/null +++ b/backend/templates/ab_legal_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Legal Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "legal", + "law", + "attorney" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#1e2d42", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#eaebee", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#8B4513'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1E3050'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D2D5DB'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#161B24'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2E7D32'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#6B7280'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C28B30'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#B71C1C'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#1e3050", + "secondary_color": "#8b4513", + "border_color": "#d2d5db", + "main_success_color": "#2e7d32", + "main_warning_color": "#c28b30", + "main_error_color": "#b71c1c", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#161b24", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#6b7280", + "value": "V6EVv" + } + ], + "body_font_family": "arial", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "times_new_roman", + "heading_1_font_size": 30, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "times_new_roman", + "heading_2_font_size": 24, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "times_new_roman", + "heading_3_font_size": 20, + "heading_3_font_weight": "regular", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "arial", + "heading_4_font_size": 17, + "heading_4_font_weight": "regular", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "arial", + "heading_5_font_size": 15, + "heading_5_font_weight": "regular", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "arial", + "heading_6_font_size": 13, + "heading_6_font_weight": "regular", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "arial", + "button_font_size": 12, + "button_font_weight": "bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 2, + "button_vertical_padding": 10, + "button_horizontal_padding": 18, + "button_hover_background_color": "#152540", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f5f5f6", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "arial", + "label_text_color": "zoOtT", + "label_font_size": 13, + "label_font_weight": "bold", + "input_font_family": "arial", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#c2c5cc", + "input_border_size": 1, + "input_border_radius": 4, + "input_vertical_padding": 12, + "input_horizontal_padding": 16, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 4, + "table_header_background_color": "#eaebee", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "bold", + "table_header_font_family": "arial", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 18, + "table_cell_horizontal_padding": 26, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "arial", + "link_font_size": 14, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#152540", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Legal theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Legal database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'DBEAFE',\nif(field('Status') = 'Ready', 'D1FAE5', \nif(field('Status') = 'On hold', 'F3F4F6', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_legal_theme.zip b/backend/templates/ab_legal_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_legal_theme.zip differ diff --git a/backend/templates/ab_luxury_theme.json b/backend/templates/ab_luxury_theme.json new file mode 100644 index 0000000000..1e1acf9ad1 --- /dev/null +++ b/backend/templates/ab_luxury_theme.json @@ -0,0 +1,4954 @@ +{ + "baserow_template_version": 1, + "name": "Luxury Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "luxury", + "elegant", + "premium" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "ElMaZ", + "link_font_weight": "semi-bold", + "button_border_size": 1, + "link_hover_text_color": "ElMaZ", + "link_active_text_color": "ElMaZ", + "button_background_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#1f1d1a", + "button_active_background_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C0A080'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D4AF37'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2D2A26'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1C1A17'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#5FA85D'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#f0ebe3'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#8A8378'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D4AF37'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C44536'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#d4af37", + "secondary_color": "#c0a080", + "border_color": "#2d2a26", + "main_success_color": "#5fa85d", + "main_warning_color": "#d4af37", + "main_error_color": "#c44536", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#f0ebe3", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#1c1a17", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#8a8378", + "value": "V6EVv" + } + ], + "body_font_family": "arial", + "body_font_size": 15, + "body_font_weight": "regular", + "body_text_color": "ElMaZ", + "body_text_alignment": "left", + "heading_1_font_family": "times_new_roman", + "heading_1_font_size": 36, + "heading_1_font_weight": "bold", + "heading_1_text_color": "ElMaZ", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "times_new_roman", + "heading_2_font_size": 28, + "heading_2_font_weight": "bold", + "heading_2_text_color": "ElMaZ", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "times_new_roman", + "heading_3_font_size": 22, + "heading_3_font_weight": "regular", + "heading_3_text_color": "ElMaZ", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "arial", + "heading_4_font_size": 18, + "heading_4_font_weight": "regular", + "heading_4_text_color": "ElMaZ", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "arial", + "heading_5_font_size": 15, + "heading_5_font_weight": "regular", + "heading_5_text_color": "ElMaZ", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "arial", + "heading_6_font_size": 13, + "heading_6_font_weight": "regular", + "heading_6_text_color": "transparent", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "arial", + "button_font_size": 12, + "button_font_weight": "bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "zoOtT", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 2, + "button_vertical_padding": 11, + "button_horizontal_padding": 22, + "button_hover_background_color": "#c09e2e", + "button_hover_text_color": "zoOtT", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "zoOtT", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#100e0c", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "arial", + "label_text_color": "ElMaZ", + "label_font_size": 13, + "label_font_weight": "bold", + "input_font_family": "arial", + "input_font_size": 15, + "input_font_weight": "regular", + "input_text_color": "ElMaZ", + "input_background_color": "#1c1a17", + "input_border_color": "border", + "input_border_size": 1, + "input_border_radius": 4, + "input_vertical_padding": 14, + "input_horizontal_padding": 18, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 4, + "table_header_background_color": "#1f1d1a", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "bold", + "table_header_font_family": "arial", + "table_header_text_alignment": "left", + "table_cell_background_color": "zoOtT", + "table_cell_alternate_background_color": "zoOtT", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 20, + "table_cell_horizontal_padding": 28, + "table_vertical_separator_color": "border", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "arial", + "link_font_size": 15, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#e0c350", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Luxury theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Luxury database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'd4af373d',\nif(field('Status') = 'Ready', '5fa85d3d', \nif(field('Status') = 'On hold', '8a83783d', \nif(field('Status') = 'Blocked', 'c445363d',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_luxury_theme.zip b/backend/templates/ab_luxury_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_luxury_theme.zip differ diff --git a/backend/templates/ab_midnight_theme.json b/backend/templates/ab_midnight_theme.json new file mode 100644 index 0000000000..e09ff89944 --- /dev/null +++ b/backend/templates/ab_midnight_theme.json @@ -0,0 +1,4955 @@ +{ + "baserow_template_version": 1, + "name": "Midnight Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "midnight", + "dark", + "gold", + "luxury" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "ElMaZ", + "link_font_weight": "semi-bold", + "button_border_size": 1, + "link_hover_text_color": "ElMaZ", + "link_active_text_color": "ElMaZ", + "button_background_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#1a1d27", + "button_active_background_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#5B8DEF'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C9A84C'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2A2D36'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1A1C24'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#3BB273'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#e8e4dc'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#7A7D85'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C9A84C'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E15554'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#c9a84c", + "secondary_color": "#5b8def", + "border_color": "#2a2d36", + "main_success_color": "#3bb273", + "main_warning_color": "#c9a84c", + "main_error_color": "#e15554", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#e8e4dc", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#1a1c24", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#7a7d85", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "ElMaZ", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 30, + "heading_1_font_weight": "semi-bold", + "heading_1_text_color": "ElMaZ", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 24, + "heading_2_font_weight": "semi-bold", + "heading_2_text_color": "ElMaZ", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 20, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "ElMaZ", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 17, + "heading_4_font_weight": "medium", + "heading_4_text_color": "ElMaZ", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 14, + "heading_5_font_weight": "medium", + "heading_5_text_color": "ElMaZ", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 12, + "heading_6_font_weight": "medium", + "heading_6_text_color": "transparent", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 12, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "zoOtT", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 6, + "button_vertical_padding": 10, + "button_horizontal_padding": 16, + "button_hover_background_color": "#b89840", + "button_hover_text_color": "zoOtT", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "zoOtT", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#0f1117", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "ElMaZ", + "label_font_size": 12, + "label_font_weight": "semi-bold", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "ElMaZ", + "input_background_color": "#1a1c24", + "input_border_color": "border", + "input_border_size": 1, + "input_border_radius": 6, + "input_vertical_padding": 12, + "input_horizontal_padding": 16, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 6, + "table_header_background_color": "#1a1d27", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "zoOtT", + "table_cell_alternate_background_color": "zoOtT", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 16, + "table_cell_horizontal_padding": 22, + "table_vertical_separator_color": "border", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "medium", + "link_text_alignment": "left", + "link_text_color": "secondary", + "link_hover_text_color": "#7da5f3", + "link_active_text_color": "secondary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Midnight theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Midnight database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'c9a84c3d',\nif(field('Status') = 'Ready', '3bb2733d', \nif(field('Status') = 'On hold', '7a7d853d', \nif(field('Status') = 'Blocked', 'e155543d',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_midnight_theme.zip b/backend/templates/ab_midnight_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_midnight_theme.zip differ diff --git a/backend/templates/ab_mint_theme.json b/backend/templates/ab_mint_theme.json new file mode 100644 index 0000000000..76d9ac44bd --- /dev/null +++ b/backend/templates/ab_mint_theme.json @@ -0,0 +1,4932 @@ +{ + "baserow_template_version": 1, + "name": "Mint Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "mint", + "fresh", + "teal", + "green" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#1a3630", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#e6f7f3", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#6366F1'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#14B8A6'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D1ECE6'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#0F1F1C'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#14B8A6'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#6B8580'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F59E0B'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#14b8a6", + "secondary_color": "#6366f1", + "border_color": "#d1ece6", + "main_success_color": "#14b8a6", + "main_warning_color": "#f59e0b", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#0f1f1c", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#6b8580", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 32, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 24, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 20, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 17, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 15, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 13, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 13, + "button_font_weight": "medium", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 8, + "button_vertical_padding": 10, + "button_horizontal_padding": 14, + "button_hover_background_color": "#0d9488", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f0fdf9", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 13, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#b8ddd5", + "input_border_size": 1, + "input_border_radius": 8, + "input_vertical_padding": 10, + "input_horizontal_padding": 14, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 8, + "table_header_background_color": "#e6f7f3", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 14, + "table_cell_horizontal_padding": 20, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#0d9488", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Mint theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Mint database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'CCFBF1',\nif(field('Status') = 'Ready', 'DCFCE7', \nif(field('Status') = 'On hold', 'F1F5F9', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_mint_theme.zip b/backend/templates/ab_mint_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_mint_theme.zip differ diff --git a/backend/templates/ab_neon_theme.json b/backend/templates/ab_neon_theme.json new file mode 100644 index 0000000000..b0f2515880 --- /dev/null +++ b/backend/templates/ab_neon_theme.json @@ -0,0 +1,4954 @@ +{ + "baserow_template_version": 1, + "name": "Neon Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "neon", + "dark", + "cyberpunk" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "ElMaZ", + "link_font_weight": "semi-bold", + "button_border_size": 1, + "link_hover_text_color": "ElMaZ", + "link_active_text_color": "ElMaZ", + "button_background_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#151b2b", + "button_active_background_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#FF3D71'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "zoOtT", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#00D4FF'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1E293B'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#111827'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "input": { + "input_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#22C55E'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium", + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#e8ecf1'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#64748B'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EAB308'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "zoOtT" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#00d4ff", + "secondary_color": "#ff3d71", + "border_color": "#1e293b", + "main_success_color": "#22c55e", + "main_warning_color": "#eab308", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#e8ecf1", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#111827", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#64748b", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "ElMaZ", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 32, + "heading_1_font_weight": "bold", + "heading_1_text_color": "ElMaZ", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 24, + "heading_2_font_weight": "bold", + "heading_2_text_color": "ElMaZ", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 20, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "ElMaZ", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 18, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "ElMaZ", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 15, + "heading_5_font_weight": "medium", + "heading_5_text_color": "ElMaZ", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 13, + "heading_6_font_weight": "medium", + "heading_6_text_color": "transparent", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 12, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "zoOtT", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 8, + "button_vertical_padding": 10, + "button_horizontal_padding": 14, + "button_hover_background_color": "#00b8de", + "button_hover_text_color": "zoOtT", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "zoOtT", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#0a0e17", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "ElMaZ", + "label_font_size": 12, + "label_font_weight": "semi-bold", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "ElMaZ", + "input_background_color": "#111827", + "input_border_color": "border", + "input_border_size": 1, + "input_border_radius": 8, + "input_vertical_padding": 10, + "input_horizontal_padding": 14, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 6, + "table_header_background_color": "#151b2b", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "zoOtT", + "table_cell_alternate_background_color": "zoOtT", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 16, + "table_cell_horizontal_padding": 20, + "table_vertical_separator_color": "border", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "medium", + "link_text_alignment": "left", + "link_text_color": "secondary", + "link_hover_text_color": "#33dfff", + "link_active_text_color": "secondary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Neon theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Neon database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', '00d4ff3d',\nif(field('Status') = 'Ready', '22c55e3d', \nif(field('Status') = 'On hold', '64748b3d', \nif(field('Status') = 'Blocked', 'ef44443d',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_neon_theme.zip b/backend/templates/ab_neon_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_neon_theme.zip differ diff --git a/backend/templates/ab_ocean_theme.json b/backend/templates/ab_ocean_theme.json new file mode 100644 index 0000000000..65b63afe68 --- /dev/null +++ b/backend/templates/ab_ocean_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Ocean Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "ocean", + "maritime", + "blue" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#1a3a50", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#edf3f8", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1CC4AD'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1A6FB5'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#DCE6ED'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#0F2B3D'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#12D452'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#7B8D9A'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#FFD269'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#FF5A44'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#1a6fb5", + "secondary_color": "#1cc4ad", + "border_color": "#dce6ed", + "main_success_color": "#12d452", + "main_warning_color": "#ffd269", + "main_error_color": "#ff5a44", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#0f2b3d", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#7b8d9a", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 34, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 26, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 22, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 18, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 15, + "heading_5_font_weight": "semi-bold", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 13, + "heading_6_font_weight": "semi-bold", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 13, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 8, + "button_vertical_padding": 10, + "button_horizontal_padding": 14, + "button_hover_background_color": "#165e9a", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f4f8fb", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 13, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#c8d6e0", + "input_border_size": 1, + "input_border_radius": 6, + "input_vertical_padding": 12, + "input_horizontal_padding": 16, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 8, + "table_header_background_color": "#edf3f8", + "table_header_text_color": "V6EVv", + "table_header_font_size": 13, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 16, + "table_cell_horizontal_padding": 20, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#165e9a", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Ocean theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Ocean database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'E0F2FE',\nif(field('Status') = 'Ready', 'DCFCE7', \nif(field('Status') = 'On hold', 'F1F5F9', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_ocean_theme.zip b/backend/templates/ab_ocean_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_ocean_theme.zip differ diff --git a/backend/templates/ab_realestate_theme.json b/backend/templates/ab_realestate_theme.json new file mode 100644 index 0000000000..70de290cc0 --- /dev/null +++ b/backend/templates/ab_realestate_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Real Estate Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "realestate", + "property", + "housing" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#3d3228", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#f2ede7", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2A6B5E'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#8B6F47'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E0D8CF'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2A2118'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2A6B5E'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#8A7E72'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D4A24C'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C0392B'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#8b6f47", + "secondary_color": "#2a6b5e", + "border_color": "#e0d8cf", + "main_success_color": "#2a6b5e", + "main_warning_color": "#d4a24c", + "main_error_color": "#c0392b", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#2a2118", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#8a7e72", + "value": "V6EVv" + } + ], + "body_font_family": "arial", + "body_font_size": 15, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "times_new_roman", + "heading_1_font_size": 34, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "times_new_roman", + "heading_2_font_size": 26, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "times_new_roman", + "heading_3_font_size": 22, + "heading_3_font_weight": "regular", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "arial", + "heading_4_font_size": 18, + "heading_4_font_weight": "regular", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "arial", + "heading_5_font_size": 15, + "heading_5_font_weight": "regular", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "arial", + "heading_6_font_size": 13, + "heading_6_font_weight": "regular", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "arial", + "button_font_size": 13, + "button_font_weight": "bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 4, + "button_vertical_padding": 11, + "button_horizontal_padding": 22, + "button_hover_background_color": "#7a5f3c", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#faf8f5", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "arial", + "label_text_color": "zoOtT", + "label_font_size": 14, + "label_font_weight": "bold", + "input_font_family": "arial", + "input_font_size": 15, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#cfc5b8", + "input_border_size": 1, + "input_border_radius": 4, + "input_vertical_padding": 14, + "input_horizontal_padding": 18, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 6, + "table_header_background_color": "#f2ede7", + "table_header_text_color": "V6EVv", + "table_header_font_size": 13, + "table_header_font_weight": "bold", + "table_header_font_family": "arial", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 20, + "table_cell_horizontal_padding": 28, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "arial", + "link_font_size": 15, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#7a5f3c", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Real Estate theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Real Estate database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'FEF3C7',\nif(field('Status') = 'Ready', 'D1FAE5', \nif(field('Status') = 'On hold', 'F5F0EB', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_realestate_theme.zip b/backend/templates/ab_realestate_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_realestate_theme.zip differ diff --git a/backend/templates/ab_slate_theme.json b/backend/templates/ab_slate_theme.json new file mode 100644 index 0000000000..0c911a534d --- /dev/null +++ b/backend/templates/ab_slate_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Slate Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "slate", + "minimalist", + "grayscale" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#1f2937", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#f3f4f6", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#6B7280'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#3D3D3D'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E5E7EB'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#111827'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#22C55E'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#9CA3AF'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F59E0B'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#3d3d3d", + "secondary_color": "#6b7280", + "border_color": "#e5e7eb", + "main_success_color": "#22c55e", + "main_warning_color": "#f59e0b", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#111827", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#9ca3af", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 13, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 28, + "heading_1_font_weight": "semi-bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 22, + "heading_2_font_weight": "semi-bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 18, + "heading_3_font_weight": "medium", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 16, + "heading_4_font_weight": "medium", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 14, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 12, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 12, + "button_font_weight": "medium", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 1, + "button_border_radius": 4, + "button_vertical_padding": 8, + "button_horizontal_padding": 12, + "button_hover_background_color": "#2d2d2d", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#f9fafb", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 12, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 13, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#d1d5db", + "input_border_size": 1, + "input_border_radius": 4, + "input_vertical_padding": 8, + "input_horizontal_padding": 12, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 4, + "table_header_background_color": "#f3f4f6", + "table_header_text_color": "V6EVv", + "table_header_font_size": 11, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 12, + "table_cell_horizontal_padding": 16, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 13, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#2d2d2d", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Slate theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Slate database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'DBEAFE',\nif(field('Status') = 'Ready', 'DCFCE7', \nif(field('Status') = 'On hold', 'F3F4F6', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_slate_theme.zip b/backend/templates/ab_slate_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_slate_theme.zip differ diff --git a/backend/templates/ab_startup_theme.json b/backend/templates/ab_startup_theme.json new file mode 100644 index 0000000000..1f64a8fc32 --- /dev/null +++ b/backend/templates/ab_startup_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Startup Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "startup", + "bold", + "modern" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#2e1a45", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#f0ecf8", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EC4899'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#7C3AED'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E2DDF0'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#1A1025'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#10B981'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#7C7394'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F59E0B'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#7c3aed", + "secondary_color": "#ec4899", + "border_color": "#e2ddf0", + "main_success_color": "#10b981", + "main_warning_color": "#f59e0b", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#1a1025", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#7c7394", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 15, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 38, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 28, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 22, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 18, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 15, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 13, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 14, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 100, + "button_vertical_padding": 12, + "button_horizontal_padding": 24, + "button_hover_background_color": "#6d28d9", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#faf8ff", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 13, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 15, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#d0c8e4", + "input_border_size": 1, + "input_border_radius": 10, + "input_vertical_padding": 12, + "input_horizontal_padding": 18, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 12, + "table_header_background_color": "#f0ecf8", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 16, + "table_cell_horizontal_padding": 22, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 15, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#6d28d9", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Startup theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Startup database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'EDE9FE',\nif(field('Status') = 'Ready', 'D1FAE5', \nif(field('Status') = 'On hold', 'F5F3FF', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_startup_theme.zip b/backend/templates/ab_startup_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_startup_theme.zip differ diff --git a/backend/templates/ab_sunset_theme.json b/backend/templates/ab_sunset_theme.json new file mode 100644 index 0000000000..a873facac0 --- /dev/null +++ b/backend/templates/ab_sunset_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Sunset Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "sunset", + "warm", + "orange" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#3d261e", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#faf2ee", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#8B5CF6'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E85D3A'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F0E2DB'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2D1810'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#22C55E'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#8A7770'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F59E0B'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#e85d3a", + "secondary_color": "#8b5cf6", + "border_color": "#f0e2db", + "main_success_color": "#22c55e", + "main_warning_color": "#f59e0b", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#2d1810", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#8a7770", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 36, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 26, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 22, + "heading_3_font_weight": "semi-bold", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 18, + "heading_4_font_weight": "semi-bold", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 15, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 13, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 13, + "button_font_weight": "semi-bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 10, + "button_vertical_padding": 11, + "button_horizontal_padding": 18, + "button_hover_background_color": "#d14e2e", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#fdf8f5", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 12, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#ddd0c9", + "input_border_size": 1, + "input_border_radius": 8, + "input_vertical_padding": 12, + "input_horizontal_padding": 16, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 10, + "table_header_background_color": "#faf2ee", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "semi-bold", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 16, + "table_cell_horizontal_padding": 22, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#d14e2e", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Sunset theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Sunset database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'FEF3C7',\nif(field('Status') = 'Ready', 'DCFCE7', \nif(field('Status') = 'On hold', 'F1F5F9', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_sunset_theme.zip b/backend/templates/ab_sunset_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_sunset_theme.zip differ diff --git a/backend/templates/ab_tech_theme.json b/backend/templates/ab_tech_theme.json new file mode 100644 index 0000000000..d5ab5bd61c --- /dev/null +++ b/backend/templates/ab_tech_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Tech Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "tech", + "saas", + "modern" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#27272a", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#f0f0f8", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#06B6D4'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#6366F1'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E0E0EF'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#18181B'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#10B981'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#71717A'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#F59E0B'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#EF4444'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#6366f1", + "secondary_color": "#06b6d4", + "border_color": "#e0e0ef", + "main_success_color": "#10b981", + "main_warning_color": "#f59e0b", + "main_error_color": "#ef4444", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#18181b", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#71717a", + "value": "V6EVv" + } + ], + "body_font_family": "inter", + "body_font_size": 14, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "inter", + "heading_1_font_size": 32, + "heading_1_font_weight": "semi-bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "inter", + "heading_2_font_size": 24, + "heading_2_font_weight": "semi-bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "inter", + "heading_3_font_size": 20, + "heading_3_font_weight": "medium", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "inter", + "heading_4_font_size": 17, + "heading_4_font_weight": "medium", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "inter", + "heading_5_font_size": 14, + "heading_5_font_weight": "medium", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "inter", + "heading_6_font_size": 12, + "heading_6_font_weight": "medium", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "inter", + "button_font_size": 13, + "button_font_weight": "medium", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 8, + "button_vertical_padding": 9, + "button_horizontal_padding": 16, + "button_hover_background_color": "#4f46e5", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#fafafe", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "inter", + "label_text_color": "zoOtT", + "label_font_size": 13, + "label_font_weight": "medium", + "input_font_family": "inter", + "input_font_size": 14, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#d4d4de", + "input_border_size": 1, + "input_border_radius": 8, + "input_vertical_padding": 10, + "input_horizontal_padding": 14, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 8, + "table_header_background_color": "#f0f0f8", + "table_header_text_color": "V6EVv", + "table_header_font_size": 12, + "table_header_font_weight": "medium", + "table_header_font_family": "inter", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 14, + "table_cell_horizontal_padding": 18, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "inter", + "link_font_size": 14, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#4f46e5", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Tech theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Tech database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'E0E7FF',\nif(field('Status') = 'Ready', 'D1FAE5', \nif(field('Status') = 'On hold', 'F4F4F5', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_tech_theme.zip b/backend/templates/ab_tech_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_tech_theme.zip differ diff --git a/backend/templates/ab_terracotta_theme.json b/backend/templates/ab_terracotta_theme.json new file mode 100644 index 0000000000..a2adac2edb --- /dev/null +++ b/backend/templates/ab_terracotta_theme.json @@ -0,0 +1,4931 @@ +{ + "baserow_template_version": 1, + "name": "Terracotta Theme", + "icon": "", + "keywords": [ + "application", + "builder", + "theme", + "terracotta", + "earth", + "warm" + ], + "categories": [ + "Application Themes" + ], + "open_application": 177, + "export": [ + { + "pages": [ + { + "id": 214, + "name": "__shared__", + "order": 1, + "path": "__shared__", + "path_params": [], + "query_params": [], + "shared": true, + "elements": [ + { + "id": 3292, + "order": "0.33333333333333331483", + "type": "menu", + "parent_element_id": 3290, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "menu": { + "link_font_size": 13, + "link_text_color": "zoOtT", + "link_font_weight": "semi-bold", + "button_text_color": "zoOtT", + "button_border_size": 1, + "link_hover_text_color": "#3d2a1e", + "link_active_text_color": "zoOtT", + "button_background_color": "ElMaZ", + "button_hover_text_color": "zoOtT", + "button_active_text_color": "zoOtT", + "link_hover_text_decoration": [ + false, + false, + false, + false + ], + "link_active_text_decoration": [ + false, + false, + false, + false + ], + "link_default_text_decoration": [ + false, + false, + false, + false + ], + "button_hover_background_color": "#f5efe9", + "button_active_background_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 8, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 8, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "orientation": "horizontal", + "alignment": "right", + "menu_items": [ + { + "id": 1, + "variant": "link", + "type": "link", + "menu_item_order": 0, + "uid": "8ba013be-494a-4a06-8917-a8767c401ad2", + "name": "Page 1", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 2, + "variant": "link", + "type": "link", + "menu_item_order": 1, + "uid": "bbfd8ca3-a0cd-489e-be09-cd1d46efb14a", + "name": "Sub page 1", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 3, + "variant": "link", + "type": "link", + "menu_item_order": 2, + "uid": "b38bf885-f808-45ee-9c50-36d92f7d1d39", + "name": "Page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 4, + "variant": "link", + "type": "link", + "menu_item_order": 3, + "uid": "df9febeb-2f8b-49f6-9469-d8b44f28f1b0", + "name": "Sub page 2", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 5, + "variant": "link", + "type": "link", + "menu_item_order": 4, + "uid": "ad8260e4-e1b9-4cfc-9eb3-c2cdf8f6f1f1", + "name": "Sub page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": 1, + "target": "self", + "children": [] + }, + { + "id": 6, + "variant": "link", + "type": "link", + "menu_item_order": 5, + "uid": "be62d7f3-f6be-44a9-9c75-5866bc51c30b", + "name": "Page 3", + "navigation_type": "page", + "navigate_to_page_id": 215, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + }, + { + "id": 7, + "variant": "link", + "type": "button", + "menu_item_order": 6, + "uid": "0cbdfe6e-344e-427f-86c7-450f48bb5f21", + "name": "Contact us", + "navigation_type": "page", + "navigate_to_page_id": null, + "navigate_to_url": "", + "page_parameters": [], + "query_parameters": [], + "parent_menu_item": null, + "target": "self", + "children": [] + } + ] + }, + { + "id": 3297, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Newsletter'", + "format": "plain" + }, + { + "id": 3298, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Signup for our newsletter by filling out your email address.'", + "format": "plain" + }, + { + "id": 3290, + "order": "1.00000000000000000000", + "type": "header", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3293, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3291, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "medium" + }, + { + "id": 3294, + "order": "1.00000000000000000000", + "type": "column", + "parent_element_id": 3293, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 20, + "alignment": "top" + }, + { + "id": 3295, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3294, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3296, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3295, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "", + "required": true, + "validation_type": "email", + "placeholder": "'Your email address...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3299, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Quick links'", + "format": "plain" + }, + { + "id": 3300, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 15, + "body_text_color": "#ffffff", + "body_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Community'", + "format": "plain" + }, + { + "id": 3291, + "order": "2.00000000000000000000", + "type": "footer", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 30, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 30, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "full", + "style_width_child": "normal", + "share_type": "all", + "pages": [] + }, + { + "id": 3301, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'About us'", + "variant": "link" + }, + { + "id": 3302, + "order": "2.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Documents'", + "variant": "link" + }, + { + "id": 3303, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Contact us'", + "variant": "link" + }, + { + "id": 3304, + "order": "3.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Support'", + "variant": "link" + }, + { + "id": 3305, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Career'", + "variant": "link" + }, + { + "id": 3306, + "order": "4.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'FAQ'", + "variant": "link" + }, + { + "id": 3307, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Become a partner'", + "variant": "link" + }, + { + "id": 3308, + "order": "5.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Privacy policy'", + "variant": "link" + }, + { + "id": 3309, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign in'", + "variant": "link" + }, + { + "id": 3310, + "order": "6.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Blog'", + "variant": "link" + }, + { + "id": 3311, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Sign up'", + "variant": "link" + }, + { + "id": 3312, + "order": "7.00000000000000000000", + "type": "link", + "parent_element_id": 3294, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "link": { + "link_font_size": 13, + "link_text_color": "#f2f2f2", + "link_font_weight": "medium", + "link_hover_text_color": "#f2f2f2", + "link_active_text_color": "#f2f2f2" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 12, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'Terms & conditions'", + "variant": "link" + } + ], + "data_sources": [], + "workflow_actions": [ + { + "id": 313, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3292, + "event": "0cbdfe6e-344e-427f-86c7-450f48bb5f21_click", + "title": "'Show contact form'", + "description": "'Show contact form'" + }, + { + "id": 314, + "type": "notification", + "order": 1, + "page_id": 214, + "element_id": 3295, + "event": "submit", + "title": "'Newsletter'", + "description": "'Signup for newsletter'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + }, + { + "id": 215, + "name": "Examples", + "order": 1, + "path": "/", + "path_params": [], + "query_params": [], + "shared": false, + "elements": [ + { + "id": 3347, + "order": "0.50000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Secondary'", + "format": "plain" + }, + { + "id": 3348, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Border'", + "format": "plain" + }, + { + "id": 3349, + "order": "0.66666666666666662966", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "ElMaZ", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 2'", + "format": "plain" + }, + { + "id": 3317, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Recent projects'", + "level": 2 + }, + { + "id": 3318, + "order": "1.00000000000000000000", + "type": "iframe", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "source_type": "url", + "url": "'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2437.5900465602517!2d4.825077027115522!3d52.341582849423204!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5e18eae78495d%3A0xc6ec111aab4c79fe!2sB.%20Amsterdam!5e0!3m2!1sen!2snl!4v1741957273376!5m2!1sen!2snl\" width=\"600\" height=\"450\" style=\"border:0;'", + "embed": "", + "height": 268 + }, + { + "id": 3331, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3332, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3333, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3313, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 1, + "style_padding_top": 24, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 1, + "style_padding_bottom": 24, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 1, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 1, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 6, + "style_border_radius": 6, + "style_background": "color", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3334, + "order": "1.00000000000000000000", + "type": "form_container", + "parent_element_id": 3314, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_alignment": "right" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "submit_button_label": "'Submit'", + "reset_initial_values_post_submission": false + }, + { + "id": 3335, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "primary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3336, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "secondary", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3337, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "border", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3338, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "3", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "success", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3339, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "4", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "warning", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3340, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3315, + "place_in_container": "5", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "error", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3341, + "order": "1.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "zoOtT", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3344, + "order": "1.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your name'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your name here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3350, + "order": "1.00000000000000000000", + "type": "heading", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Rebranding website'", + "level": 3 + }, + { + "id": 3351, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Primary'", + "format": "plain" + }, + { + "id": 3352, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3336, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2A6B5E'", + "format": "plain" + }, + { + "id": 3353, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Success'", + "format": "plain" + }, + { + "id": 3354, + "order": "1.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_text_color": "#ffffff", + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 3'", + "format": "plain" + }, + { + "id": 3355, + "order": "1.50000000000000000000", + "type": "heading", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Customer research'", + "level": 3 + }, + { + "id": 3356, + "order": "1.50000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Custom 1'", + "format": "plain" + }, + { + "id": 3313, + "order": "2.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 3, + "column_gap": 24, + "alignment": "top" + }, + { + "id": 3319, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3314, + "place_in_container": "1", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Visit us at: Streetname 100, The Netherlands'", + "format": "plain" + }, + { + "id": 3342, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "0", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "ElMaZ", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3343, + "order": "2.00000000000000000000", + "type": "simple_container", + "parent_element_id": 3316, + "place_in_container": "2", + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 20, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 50, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "color", + "style_background_color": "V6EVv", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal" + }, + { + "id": 3345, + "order": "2.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your email'", + "required": true, + "validation_type": "email", + "placeholder": "'Enter your email here...'", + "default_value": "", + "is_multiline": false, + "rows": 3, + "input_type": "text" + }, + { + "id": 3357, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3358, + "order": "2.00000000000000000000", + "type": "heading", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_3_font_size": 16 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 24, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'App builder launch'", + "level": 3 + }, + { + "id": 3359, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3335, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C4704B'", + "format": "plain" + }, + { + "id": 3360, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3337, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#E8DDD5'", + "format": "plain" + }, + { + "id": 3361, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Warning'", + "format": "plain" + }, + { + "id": 3362, + "order": "2.00000000000000000000", + "type": "text", + "parent_element_id": 3341, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "ElMaZ" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2C1A10'", + "format": "plain" + }, + { + "id": 3363, + "order": "2.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3320, + "order": "3.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'My tasks'", + "level": 2 + }, + { + "id": 3346, + "order": "3.00000000000000000000", + "type": "input_text", + "parent_element_id": 3334, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "label": "'Your question'", + "required": true, + "validation_type": "any", + "placeholder": "'Enter your question here...'", + "default_value": "", + "is_multiline": true, + "rows": 5, + "input_type": "text" + }, + { + "id": 3364, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-09'", + "format": "plain" + }, + { + "id": 3365, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Kick-off date'", + "format": "plain" + }, + { + "id": 3366, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3338, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#2A6B5E'", + "format": "plain" + }, + { + "id": 3367, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 13, + "body_font_weight": "medium" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 4, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Error'", + "format": "plain" + }, + { + "id": 3368, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3342, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#ffffff'", + "format": "plain" + }, + { + "id": 3369, + "order": "3.00000000000000000000", + "type": "text", + "parent_element_id": 3343, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12, + "body_text_color": "#ffffff" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#8D7E74'", + "format": "plain" + }, + { + "id": 3370, + "order": "3.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-03-15'", + "format": "plain" + }, + { + "id": 3321, + "order": "4.00000000000000000000", + "type": "table", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "data_source_id": 382, + "items_per_page": 20, + "button_load_more_label": "", + "schema_property": null, + "property_options": [], + "fields": [ + { + "uid": "01e71c25-dfd0-4772-94dd-1630376a29ae", + "name": "Name", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7204')" + } + }, + { + "uid": "a0c999b2-f45d-4d92-9c3e-352e5baabb1f", + "name": "Status", + "type": "tags", + "styles": { + "cell": {} + }, + "config": { + "values": "get('current_record.field_7205.value')", + "colors_is_formula": true, + "colors": "concat('#',get('current_record.field_7209'))" + } + }, + { + "uid": "e4546824-a48a-402a-a6ce-b811f248a347", + "name": "Client", + "type": "text", + "styles": {}, + "config": { + "value": "get('current_record.field_7206.*.value')" + } + } + ], + "orientation": { + "tablet": "horizontal", + "desktop": "horizontal", + "smartphone": "horizontal" + } + }, + { + "id": 3371, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3372, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-07'", + "format": "plain" + }, + { + "id": 3373, + "order": "4.00000000000000000000", + "type": "text", + "parent_element_id": 3339, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#D4A24C'", + "format": "plain" + }, + { + "id": 3374, + "order": "4.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3322, + "order": "5.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Contact us'", + "level": 2 + }, + { + "id": 3375, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-16'", + "format": "plain" + }, + { + "id": 3376, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Due date'", + "format": "plain" + }, + { + "id": 3377, + "order": "5.00000000000000000000", + "type": "text", + "parent_element_id": 3340, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 12 + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'#C0392B'", + "format": "plain" + }, + { + "id": 3378, + "order": "5.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-02-12'", + "format": "plain" + }, + { + "id": 3314, + "order": "6.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 2, + "column_gap": 40, + "alignment": "top" + }, + { + "id": 3379, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3380, + "order": "6.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'2024-04-12'", + "format": "plain" + }, + { + "id": 3323, + "order": "6.50000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "heading_2_font_weight": "semi-bold" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 20, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Colors'", + "level": 2 + }, + { + "id": 3381, + "order": "6.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3315, + "order": "7.00000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3382, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3383, + "order": "7.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "typography": { + "body_font_size": 11, + "body_text_color": "V6EVv" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 6, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Label'", + "format": "plain" + }, + { + "id": 3316, + "order": "7.50000000000000000000", + "type": "column", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "column_amount": 6, + "column_gap": 1, + "alignment": "top" + }, + { + "id": 3384, + "order": "7.50000000000000000000", + "type": "text", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3324, + "order": "8.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 1'", + "level": 1 + }, + { + "id": 3385, + "order": "8.00000000000000000000", + "type": "link", + "parent_element_id": 3331, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3386, + "order": "8.00000000000000000000", + "type": "text", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 16, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "value": "'Value'", + "format": "plain" + }, + { + "id": 3325, + "order": "9.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 2'", + "level": 2 + }, + { + "id": 3387, + "order": "9.00000000000000000000", + "type": "link", + "parent_element_id": 3332, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3326, + "order": "10.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 3'", + "level": 3 + }, + { + "id": 3388, + "order": "10.00000000000000000000", + "type": "link", + "parent_element_id": 3333, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": { + "button": { + "button_width": "full" + } + }, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 0, + "style_margin_top": 10, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 0, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 0, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 0, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "normal", + "style_width_child": "normal", + "navigation_type": "page", + "navigate_to_page_id": 215, + "page_parameters": [], + "query_parameters": [], + "navigate_to_url": "", + "target": "self", + "value": "'View tasks'", + "variant": "button" + }, + { + "id": 3327, + "order": "11.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 4'", + "level": 4 + }, + { + "id": 3328, + "order": "12.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 5'", + "level": 5 + }, + { + "id": 3329, + "order": "13.00000000000000000000", + "type": "heading", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 0, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Heading 6'", + "level": 6 + }, + { + "id": 3330, + "order": "14.00000000000000000000", + "type": "text", + "parent_element_id": null, + "place_in_container": null, + "visibility": "all", + "role_type": "allow_all", + "roles": [], + "styles": {}, + "style_border_top_color": "border", + "style_border_top_size": 0, + "style_padding_top": 10, + "style_margin_top": 0, + "style_border_bottom_color": "border", + "style_border_bottom_size": 0, + "style_padding_bottom": 10, + "style_margin_bottom": 40, + "style_border_left_color": "border", + "style_border_left_size": 0, + "style_padding_left": 20, + "style_margin_left": 0, + "style_border_right_color": "border", + "style_border_right_size": 0, + "style_padding_right": 20, + "style_margin_right": 0, + "style_background_radius": 0, + "style_border_radius": 0, + "style_background": "none", + "style_background_color": "#ffffffff", + "style_background_file_id": null, + "style_background_mode": "fill", + "style_width": "medium", + "style_width_child": "normal", + "value": "'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu mollis purus. Integer ac bibendum metus. Morbi nunc eros, suscipit sed tristique vel, rutrum a nibh. In urna leo, pulvinar ac nunc vitae, vulputate pretium magna. Vivamus leo mauris, iaculis vel velit at, dapibus convallis magna. Sed tincidunt leo dui, vel viverra ex gravida eget. Pellentesque posuere scelerisque velit, in rutrum lorem vestibulum eleifend. Phasellus at consectetur urna, id bibendum neque. Fusce et metus magna.'", + "format": "plain" + } + ], + "data_sources": [ + { + "id": 382, + "name": "Tasks", + "order": "1.00000000000000000000", + "service": { + "id": 489, + "integration_id": 35, + "type": "local_baserow_list_rows", + "table_id": 738, + "view_id": null, + "sortings": [], + "search_query": "", + "filter_type": "AND", + "filters": [] + } + } + ], + "workflow_actions": [ + { + "id": 315, + "type": "notification", + "order": 1, + "page_id": 215, + "element_id": 3334, + "event": "submit", + "title": "'Thank you'", + "description": "'Thank you for filling out the contact us form.'" + } + ], + "visibility": "all", + "role_type": "allow_all", + "roles": [] + } + ], + "integrations": [ + { + "id": 35, + "name": "Local Baserow", + "order": "1.00000000000000000000", + "type": "local_baserow", + "authorized_user": null + } + ], + "theme": { + "primary_color": "#c4704b", + "secondary_color": "#2a6b5e", + "border_color": "#e8ddd5", + "main_success_color": "#2a6b5e", + "main_warning_color": "#d4a24c", + "main_error_color": "#c0392b", + "custom_colors": [ + { + "name": "Custom 1", + "color": "#ffffff", + "value": "ElMaZ" + }, + { + "name": "Custom 2", + "color": "#2c1a10", + "value": "zoOtT" + }, + { + "name": "Custom 3", + "color": "#8d7e74", + "value": "V6EVv" + } + ], + "body_font_family": "arial", + "body_font_size": 15, + "body_font_weight": "regular", + "body_text_color": "zoOtT", + "body_text_alignment": "left", + "heading_1_font_family": "times_new_roman", + "heading_1_font_size": 34, + "heading_1_font_weight": "bold", + "heading_1_text_color": "zoOtT", + "heading_1_text_alignment": "left", + "heading_1_text_decoration": [ + false, + false, + false, + false + ], + "heading_2_font_family": "times_new_roman", + "heading_2_font_size": 26, + "heading_2_font_weight": "bold", + "heading_2_text_color": "zoOtT", + "heading_2_text_alignment": "left", + "heading_2_text_decoration": [ + false, + false, + false, + false + ], + "heading_3_font_family": "times_new_roman", + "heading_3_font_size": 22, + "heading_3_font_weight": "regular", + "heading_3_text_color": "zoOtT", + "heading_3_text_alignment": "left", + "heading_3_text_decoration": [ + false, + false, + false, + false + ], + "heading_4_font_family": "arial", + "heading_4_font_size": 18, + "heading_4_font_weight": "regular", + "heading_4_text_color": "zoOtT", + "heading_4_text_alignment": "left", + "heading_4_text_decoration": [ + false, + false, + false, + false + ], + "heading_5_font_family": "arial", + "heading_5_font_size": 15, + "heading_5_font_weight": "regular", + "heading_5_text_color": "zoOtT", + "heading_5_text_alignment": "left", + "heading_5_text_decoration": [ + false, + false, + false, + false + ], + "heading_6_font_family": "arial", + "heading_6_font_size": 13, + "heading_6_font_weight": "regular", + "heading_6_text_color": "zoOtT", + "heading_6_text_alignment": "left", + "heading_6_text_decoration": [ + false, + false, + false, + false + ], + "button_font_family": "arial", + "button_font_size": 13, + "button_font_weight": "bold", + "button_alignment": "left", + "button_text_alignment": "center", + "button_width": "auto", + "button_background_color": "primary", + "button_text_color": "ElMaZ", + "button_border_color": "border", + "button_border_size": 0, + "button_border_radius": 4, + "button_vertical_padding": 10, + "button_horizontal_padding": 20, + "button_hover_background_color": "#b0623f", + "button_hover_text_color": "ElMaZ", + "button_hover_border_color": "border", + "button_active_background_color": "primary", + "button_active_text_color": "ElMaZ", + "button_active_border_color": "border", + "image_alignment": "left", + "image_max_width": 100, + "image_max_height": null, + "image_border_radius": 0, + "image_constraint": "contain", + "page_background_color": "#faf6f2", + "page_background_file_id": null, + "page_background_mode": "tile", + "label_font_family": "arial", + "label_text_color": "zoOtT", + "label_font_size": 14, + "label_font_weight": "bold", + "input_font_family": "arial", + "input_font_size": 15, + "input_font_weight": "regular", + "input_text_color": "zoOtT", + "input_background_color": "#ffffff", + "input_border_color": "#d5c9bf", + "input_border_size": 1, + "input_border_radius": 4, + "input_vertical_padding": 12, + "input_horizontal_padding": 16, + "table_border_color": "border", + "table_border_size": 1, + "table_border_radius": 4, + "table_header_background_color": "#f5efe9", + "table_header_text_color": "V6EVv", + "table_header_font_size": 13, + "table_header_font_weight": "bold", + "table_header_font_family": "arial", + "table_header_text_alignment": "left", + "table_cell_background_color": "ElMaZ", + "table_cell_alternate_background_color": "ElMaZ", + "table_cell_alignment": "left", + "table_cell_vertical_padding": 18, + "table_cell_horizontal_padding": 24, + "table_vertical_separator_color": "#000000FF", + "table_vertical_separator_size": 0, + "table_horizontal_separator_color": "border", + "table_horizontal_separator_size": 1, + "link_font_family": "arial", + "link_font_size": 15, + "link_font_weight": "regular", + "link_text_alignment": "left", + "link_text_color": "primary", + "link_hover_text_color": "#b0623f", + "link_active_text_color": "primary", + "link_default_text_decoration": [ + true, + false, + false, + false + ], + "link_hover_text_decoration": [ + true, + false, + false, + false + ], + "link_active_text_decoration": [ + true, + false, + false, + false + ] + }, + "user_sources": [], + "favicon_file": null, + "login_page": null, + "id": 177, + "name": "Terracotta theme", + "order": 1, + "type": "builder" + }, + { + "id": 175, + "name": "Terracotta database", + "order": 2, + "type": "database", + "tables": [ + { + "id": 738, + "name": "Tasks", + "order": 1, + "fields": [ + { + "id": 7204, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7205, + "type": "single_select", + "name": "Status", + "description": null, + "order": 1, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "select_options": [ + { + "id": 3211, + "value": "In progress", + "color": "light-cyan", + "order": 0 + }, + { + "id": 3212, + "value": "Ready", + "color": "light-green", + "order": 1 + }, + { + "id": 3213, + "value": "On hold", + "color": "light-yellow", + "order": 2 + }, + { + "id": 3214, + "value": "Blocked", + "color": "light-brown", + "order": 3 + } + ] + }, + { + "id": 7206, + "type": "link_row", + "name": "Client", + "description": null, + "order": 2, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "link_row_table_id": 739, + "link_row_related_field_id": null, + "link_row_limit_selection_view_id": null, + "has_related_field": false + }, + { + "id": 7209, + "type": "formula", + "name": "Status color", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "date_show_tzinfo": null, + "date_format": null, + "duration_format": null, + "number_prefix": "", + "error": null, + "date_time_format": null, + "number_suffix": "", + "nullable": false, + "number_separator": "", + "number_decimal_places": null, + "date_force_timezone": null, + "date_include_time": null, + "array_formula_type": null, + "formula": "if(field('Status') = 'In progress', 'FEF3C7',\nif(field('Status') = 'Ready', 'DCFCE7', \nif(field('Status') = 'On hold', 'F5F0EB', \nif(field('Status') = 'Blocked', 'FEE2E2',\n''))))", + "formula_type": "text" + } + ], + "views": [ + { + "id": 3286, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27036, + "field_id": 7204, + "width": 294, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27037, + "field_id": 7205, + "width": 248, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27038, + "field_id": 7206, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27039, + "field_id": 7209, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944761+00:00", + "updated_on": "2025-03-14T12:50:42.758525+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 1 + ], + "field_7209": null + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:47:43.944821+00:00", + "updated_on": "2025-03-14T12:50:45.243685+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 2 + ], + "field_7209": null + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:20.544029+00:00", + "updated_on": "2025-03-14T12:50:47.917272+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3213, + "field_7206": [ + 3 + ], + "field_7209": null + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:21.131545+00:00", + "updated_on": "2025-03-14T12:50:50.161461+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3214, + "field_7206": [ + 4 + ], + "field_7209": null + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:21.638510+00:00", + "updated_on": "2025-03-14T12:50:52.369005+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Facilitate Case Study Discussions", + "field_7205": 3211, + "field_7206": [ + 5 + ], + "field_7209": null + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:31.532384+00:00", + "updated_on": "2025-03-14T12:50:54.683754+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7204": "Design Interactive Workshops", + "field_7205": 3212, + "field_7206": [ + 6 + ], + "field_7209": null + } + ], + "data_sync": null + }, + { + "id": 739, + "name": "Client", + "order": 2, + "fields": [ + { + "id": 7207, + "type": "text", + "name": "Name", + "description": null, + "order": 0, + "primary": true, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "text_default": "" + }, + { + "id": 7208, + "type": "long_text", + "name": "Notes", + "description": null, + "order": 3, + "primary": false, + "read_only": false, + "immutable_type": false, + "immutable_properties": false, + "long_text_enable_rich_text": false + } + ], + "views": [ + { + "id": 3287, + "type": "grid", + "name": "Grid", + "order": 1, + "ownership_type": "collaborative", + "owned_by": "bram@baserow.io", + "filter_type": "AND", + "filters_disabled": false, + "filters": [], + "filter_groups": [], + "sortings": [], + "group_bys": [], + "decorations": [], + "public": false, + "row_identifier_type": "id", + "row_height_size": "small", + "field_options": [ + { + "id": 27040, + "field_id": 7207, + "width": 200, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + }, + { + "id": 27041, + "field_id": 7208, + "width": 457, + "hidden": false, + "order": 32767, + "aggregation_type": "", + "aggregation_raw_type": "" + } + ] + } + ], + "rows": [ + { + "id": 1, + "order": "1.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629478+00:00", + "updated_on": "2025-03-14T12:49:27.285052+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Ferrari", + "field_7208": "Ferrari is a prestigious Italian luxury sports car manufacturer known for their iconic red vehicles with sleek designs and powerful engines. With a history dating back to 1939, Ferrari has become synonymous with speed, performance, and exclusivity. Their cars are revered for their precision engineering and unmatched driving experience." + }, + { + "id": 2, + "order": "2.00000000000000000000", + "created_on": "2025-03-14T12:48:36.629532+00:00", + "updated_on": "2025-03-14T12:49:28.295210+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Facebook", + "field_7208": "Facebook is a popular social networking platform that allows users to connect with friends and family, share updates, photos, and videos, and join groups or events. With over 2 billion active users, Facebook has become a hub for communication, networking, advertising, and staying connected with others around the world." + }, + { + "id": 3, + "order": "3.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278577+00:00", + "updated_on": "2025-03-14T12:49:29.314092+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "General Electric", + "field_7208": "General Electric, commonly known as GE, is a multinational conglomerate based in the United States. Founded in 1892, the company specializes in areas such as aviation, healthcare, power, and renewable energy. GE is known for its innovative technology and has a global presence in over 180 countries." + }, + { + "id": 4, + "order": "4.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278647+00:00", + "updated_on": "2025-03-14T12:49:30.250861+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Pizza Hut", + "field_7208": "Pizza Hut is a popular American restaurant chain known for its delicious pizza offerings. With over 18,000 locations worldwide, Pizza Hut is a favorite destination for families and pizza lovers alike. With a wide variety of toppings, crust options, and sides, Pizza Hut offers something for everyone to enjoy." + }, + { + "id": 5, + "order": "5.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278688+00:00", + "updated_on": "2025-03-14T12:49:31.172965+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "Nintendo", + "field_7208": "Nintendo is a Japanese multinational consumer electronics and video game company known for creating iconic games and consoles such as Mario, Zelda, and the Nintendo Switch. Founded in 1889, Nintendo continues to innovate and delight gamers around the world with its colorful and imaginative gaming experiences." + }, + { + "id": 6, + "order": "6.00000000000000000000", + "created_on": "2025-03-14T12:48:45.278726+00:00", + "updated_on": "2025-03-14T12:49:32.192236+00:00", + "created_by": "bram@baserow.io", + "last_modified_by": "bram@baserow.io", + "field_7207": "McDonalds", + "field_7208": "McDonald's is a well-known fast food chain that offers a wide range of menu options, including burgers, fries, chicken sandwiches, and breakfast items. With a focus on convenience and affordability, McDonald's has become a popular choice for quick meals and snacks for people of all ages around the world." + } + ], + "data_sync": null + } + ] + } + ] +} diff --git a/backend/templates/ab_terracotta_theme.zip b/backend/templates/ab_terracotta_theme.zip new file mode 100644 index 0000000000..15cb0ecb3e Binary files /dev/null and b/backend/templates/ab_terracotta_theme.zip differ diff --git a/backend/tests/baserow/contrib/database/mcp/test_mcp_rows_tools.py b/backend/tests/baserow/contrib/database/mcp/test_mcp_rows_tools.py index a5f2413330..8d46ee2f85 100644 --- a/backend/tests/baserow/contrib/database/mcp/test_mcp_rows_tools.py +++ b/backend/tests/baserow/contrib/database/mcp/test_mcp_rows_tools.py @@ -1,3 +1,5 @@ +"""Tests for static MCP row tools (list_table_rows, create_rows, update_rows, delete_rows).""" + import json from django.db import transaction @@ -11,43 +13,16 @@ from baserow.core.mcp import BaserowMCPServer, current_key -@pytest.mark.django_db -def test_list_rows_list_tools(data_fixture): - endpoint = data_fixture.create_mcp_endpoint() - database = data_fixture.create_database_application(workspace=endpoint.workspace) - table_1 = data_fixture.create_database_table(database=database) - table_2 = data_fixture.create_database_table(database=database) - table_3 = data_fixture.create_database_table() - - mcp = BaserowMCPServer() - - key_token = current_key.set(endpoint.key) - - try: - - async def inner(): - async with client_session(mcp._mcp_server) as client: - result = await client.list_tools() - tool_names = [tool.name for tool in result.tools] - assert f"list_table_rows" in tool_names - - with transaction.atomic(): - async_to_sync(inner)() - finally: - current_key.reset(key_token) - - @pytest.mark.django_db def test_call_tool_list_rows(data_fixture): endpoint = data_fixture.create_mcp_endpoint() database = data_fixture.create_database_application(workspace=endpoint.workspace) table = data_fixture.create_database_table(database=database) - field = data_fixture.create_text_field(name="Name", table=table, primary=True) + data_fixture.create_text_field(name="Name", table=table, primary=True) model = table.get_model(attribute_names=True) - row = model.objects.create(name="Row 1") + model.objects.create(name="Row 1") mcp = BaserowMCPServer() - key_token = current_key.set(endpoint.key) try: @@ -55,17 +30,12 @@ def test_call_tool_list_rows(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - f"list_table_rows", {"table_id": table.id} + "list_table_rows", {"table_id": table.id} ) - json_result = json.loads(result.content[0].text) - assert json_result == { - "count": 1, - "next": None, - "previous": None, - "results": [ - {"id": 1, "order": "1.00000000000000000000", "Name": "Row 1"} - ], - } + data = json.loads(result.content[0].text) + assert data["count"] == 1 + assert len(data["results"]) == 1 + assert data["results"][0]["Name"] == "Row 1" with transaction.atomic(): async_to_sync(inner)() @@ -74,9 +44,9 @@ async def inner(): @pytest.mark.django_db -def test_call_tool_list_rows_table_different_workspace(data_fixture): +def test_call_tool_list_rows_cross_workspace_returns_error(data_fixture): endpoint = data_fixture.create_mcp_endpoint() - table = data_fixture.create_database_table(user=endpoint.user) + other_table = data_fixture.create_database_table() mcp = BaserowMCPServer() key_token = current_key.set(endpoint.key) @@ -86,9 +56,9 @@ def test_call_tool_list_rows_table_different_workspace(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - f"list_table_rows", {"table_id": table.id} + "list_table_rows", {"table_id": other_table.id} ) - assert result.content[0].text == "Table not in endpoint workspace." + assert "does not exist" in result.content[0].text.lower() with transaction.atomic(): async_to_sync(inner)() @@ -97,17 +67,16 @@ async def inner(): @pytest.mark.django_db -def test_call_tool_list_rows_with_search_query(data_fixture): +def test_call_tool_list_rows_with_search(data_fixture): endpoint = data_fixture.create_mcp_endpoint() database = data_fixture.create_database_application(workspace=endpoint.workspace) table = data_fixture.create_database_table(database=database) - field = data_fixture.create_text_field(name="Name", table=table, primary=True) + data_fixture.create_text_field(name="Name", table=table, primary=True) model = table.get_model(attribute_names=True) model.objects.create(name="Car") model.objects.create(name="Boat") mcp = BaserowMCPServer() - key_token = current_key.set(endpoint.key) try: @@ -115,17 +84,11 @@ def test_call_tool_list_rows_with_search_query(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - f"list_table_rows", {"table_id": table.id, "search": "boat"} + "list_table_rows", {"table_id": table.id, "search": "boat"} ) - json_result = json.loads(result.content[0].text) - assert json_result == { - "count": 1, - "next": None, - "previous": None, - "results": [ - {"id": 2, "order": "1.00000000000000000000", "Name": "Boat"} - ], - } + data = json.loads(result.content[0].text) + assert data["count"] == 1 + assert data["results"][0]["Name"] == "Boat" with transaction.atomic(): async_to_sync(inner)() @@ -134,14 +97,14 @@ async def inner(): @pytest.mark.django_db -def test_call_tool_list_rows_with_page_and_size(data_fixture): +def test_call_tool_list_rows_pagination(data_fixture): endpoint = data_fixture.create_mcp_endpoint() database = data_fixture.create_database_application(workspace=endpoint.workspace) table = data_fixture.create_database_table(database=database) - field = data_fixture.create_text_field(name="Name", table=table, primary=True) + data_fixture.create_text_field(name="Name", table=table, primary=True) model = table.get_model(attribute_names=True) - model.objects.create(name="Car") - model.objects.create(name="Boat") + model.objects.create(name="Row A") + model.objects.create(name="Row B") mcp = BaserowMCPServer() key_token = current_key.set(endpoint.key) @@ -150,39 +113,18 @@ def test_call_tool_list_rows_with_page_and_size(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: - result = await client.call_tool( - f"list_table_rows", {"table_id": table.id, "page": 2, "size": 1} + page1 = await client.call_tool( + "list_table_rows", {"table_id": table.id, "page": 1, "size": 1} ) - json_result = json.loads(result.content[0].text) - assert json_result["count"] == 2 - assert json_result["results"] == [ - {"id": 2, "order": "1.00000000000000000000", "Name": "Boat"} - ] - - with transaction.atomic(): - async_to_sync(inner)() - finally: - current_key.reset(key_token) - - -@pytest.mark.django_db -def test_create_row_list_tools(data_fixture): - endpoint = data_fixture.create_mcp_endpoint() - database = data_fixture.create_database_application(workspace=endpoint.workspace) - table_1 = data_fixture.create_database_table(database=database) - table_2 = data_fixture.create_database_table() - - mcp = BaserowMCPServer() - key_token = current_key.set(endpoint.key) - - try: - - async def inner(): - async with client_session(mcp._mcp_server) as client: - result = await client.list_tools() - tool_names = [tool.name for tool in result.tools] - assert f"create_row_table_{table_1.id}" in tool_names - assert f"create_row_table_{table_2.id}" not in tool_names + page2 = await client.call_tool( + "list_table_rows", {"table_id": table.id, "page": 2, "size": 1} + ) + d1 = json.loads(page1.content[0].text) + d2 = json.loads(page2.content[0].text) + assert d1["count"] == 2 + assert len(d1["results"]) == 1 + assert len(d2["results"]) == 1 + assert d1["results"][0]["Name"] != d2["results"][0]["Name"] with transaction.atomic(): async_to_sync(inner)() @@ -191,7 +133,7 @@ async def inner(): @pytest.mark.django_db -def test_call_tool_create_row(data_fixture): +def test_call_tool_create_rows(data_fixture): endpoint = data_fixture.create_mcp_endpoint() database = data_fixture.create_database_application(workspace=endpoint.workspace) table = data_fixture.create_database_table(database=database) @@ -205,14 +147,17 @@ def test_call_tool_create_row(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - f"create_row_table_{table.id}", {"row": {"Name": "Test"}} + "create_rows", + { + "table_id": table.id, + "rows": [{"Name": "Alice"}, {"Name": "Bob"}], + }, ) - json_result = json.loads(result.content[0].text) - assert json_result == { - "id": 1, - "order": "1.00000000000000000000", - "Name": "Test", - } + data = json.loads(result.content[0].text) + assert len(data) == 2 + names = [r["Name"] for r in data] + assert "Alice" in names + assert "Bob" in names with transaction.atomic(): async_to_sync(inner)() @@ -221,10 +166,9 @@ async def inner(): @pytest.mark.django_db -def test_call_tool_create_row_table_different_workspace(data_fixture): +def test_call_tool_create_rows_cross_workspace_returns_error(data_fixture): endpoint = data_fixture.create_mcp_endpoint() - table = data_fixture.create_database_table(user=endpoint.user) - data_fixture.create_text_field(name="Name", table=table, primary=True) + other_table = data_fixture.create_database_table() mcp = BaserowMCPServer() key_token = current_key.set(endpoint.key) @@ -234,9 +178,10 @@ def test_call_tool_create_row_table_different_workspace(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - f"create_row_table_{table.id}", {"row": {"Name": "Test"}} + "create_rows", + {"table_id": other_table.id, "rows": [{"Name": "Test"}]}, ) - assert result.content[0].text == "Table not in endpoint workspace." + assert "does not exist" in result.content[0].text.lower() with transaction.atomic(): async_to_sync(inner)() @@ -245,38 +190,11 @@ async def inner(): @pytest.mark.django_db -def test_update_row_list_tools(data_fixture): - endpoint = data_fixture.create_mcp_endpoint() - database = data_fixture.create_database_application(workspace=endpoint.workspace) - table_1 = data_fixture.create_database_table(database=database) - table_2 = data_fixture.create_database_table() - - mcp = BaserowMCPServer() - key_token = current_key.set(endpoint.key) - - try: - - async def inner(): - async with client_session(mcp._mcp_server) as client: - result = await client.list_tools() - tool_names = [tool.name for tool in result.tools] - assert f"update_row_table_{table_1.id}" in tool_names - assert f"update_row_table_{table_2.id}" not in tool_names - - with transaction.atomic(): - async_to_sync(inner)() - finally: - current_key.reset(key_token) - - -@pytest.mark.django_db -def test_call_tool_update_row(data_fixture): +def test_call_tool_create_rows_unknown_field_returns_error(data_fixture): endpoint = data_fixture.create_mcp_endpoint() database = data_fixture.create_database_application(workspace=endpoint.workspace) table = data_fixture.create_database_table(database=database) data_fixture.create_text_field(name="Name", table=table, primary=True) - model = table.get_model(attribute_names=True) - model.objects.create(name="Car") mcp = BaserowMCPServer() key_token = current_key.set(endpoint.key) @@ -286,14 +204,10 @@ def test_call_tool_update_row(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - f"update_row_table_{table.id}", {"id": 1, "row": {"Name": "Test"}} + "create_rows", + {"table_id": table.id, "rows": [{"NoSuchField": "bad"}]}, ) - json_result = json.loads(result.content[0].text) - assert json_result == { - "id": 1, - "order": "1.00000000000000000000", - "Name": "Test", - } + assert "Unknown field name" in result.content[0].text with transaction.atomic(): async_to_sync(inner)() @@ -302,10 +216,13 @@ async def inner(): @pytest.mark.django_db -def test_call_tool_update_row_table_different_workspace(data_fixture): +def test_call_tool_update_rows(data_fixture): endpoint = data_fixture.create_mcp_endpoint() - table = data_fixture.create_database_table(user=endpoint.user) + database = data_fixture.create_database_application(workspace=endpoint.workspace) + table = data_fixture.create_database_table(database=database) data_fixture.create_text_field(name="Name", table=table, primary=True) + model = table.get_model(attribute_names=True) + row = model.objects.create(name="Original") mcp = BaserowMCPServer() key_token = current_key.set(endpoint.key) @@ -315,9 +232,16 @@ def test_call_tool_update_row_table_different_workspace(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - f"update_row_table_{table.id}", {"id": 1, "row": {"Name": "Test"}} + "update_rows", + { + "table_id": table.id, + "rows": [{"id": row.id, "Name": "Updated"}], + }, ) - assert result.content[0].text == "Table not in endpoint workspace." + data = json.loads(result.content[0].text) + assert len(data) == 1 + assert data[0]["Name"] == "Updated" + assert data[0]["id"] == row.id with transaction.atomic(): async_to_sync(inner)() @@ -326,37 +250,9 @@ async def inner(): @pytest.mark.django_db -def test_delete_row_list_tools(data_fixture): +def test_call_tool_update_rows_cross_workspace_returns_error(data_fixture): endpoint = data_fixture.create_mcp_endpoint() - database = data_fixture.create_database_application(workspace=endpoint.workspace) - table_1 = data_fixture.create_database_table(database=database) - table_2 = data_fixture.create_database_table() - - mcp = BaserowMCPServer() - key_token = current_key.set(endpoint.key) - - try: - - async def inner(): - async with client_session(mcp._mcp_server) as client: - result = await client.list_tools() - tool_names = [tool.name for tool in result.tools] - assert f"delete_table_row" in tool_names - - with transaction.atomic(): - async_to_sync(inner)() - finally: - current_key.reset(key_token) - - -@pytest.mark.django_db -def test_call_tool_delete_row(data_fixture): - endpoint = data_fixture.create_mcp_endpoint() - database = data_fixture.create_database_application(workspace=endpoint.workspace) - table = data_fixture.create_database_table(database=database) - data_fixture.create_text_field(name="Name", table=table, primary=True) - model = table.get_model(attribute_names=True) - model.objects.create(name="Car") + other_table = data_fixture.create_database_table() mcp = BaserowMCPServer() key_token = current_key.set(endpoint.key) @@ -366,13 +262,10 @@ def test_call_tool_delete_row(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - "delete_table_row", - { - "table_id": table.id, - "id": 1, - }, + "update_rows", + {"table_id": other_table.id, "rows": [{"id": 1, "Name": "Test"}]}, ) - assert result.content[0].text == "successfully deleted" + assert "does not exist" in result.content[0].text.lower() with transaction.atomic(): async_to_sync(inner)() @@ -381,12 +274,14 @@ async def inner(): @pytest.mark.django_db -def test_call_tool_delete_row_not_existing_row(data_fixture): +def test_call_tool_delete_rows(data_fixture): endpoint = data_fixture.create_mcp_endpoint() database = data_fixture.create_database_application(workspace=endpoint.workspace) table = data_fixture.create_database_table(database=database) data_fixture.create_text_field(name="Name", table=table, primary=True) model = table.get_model(attribute_names=True) + row1 = model.objects.create(name="Row 1") + row2 = model.objects.create(name="Row 2") mcp = BaserowMCPServer() key_token = current_key.set(endpoint.key) @@ -396,25 +291,23 @@ def test_call_tool_delete_row_not_existing_row(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - "delete_table_row", - { - "table_id": table.id, - "id": 1, - }, + "delete_rows", + {"table_id": table.id, "row_ids": [row1.id, row2.id]}, ) - assert "ERROR_ROW_DOES_NOT_EXIST" in result.content[0].text + assert result.content[0].text == "Rows successfully deleted." with transaction.atomic(): async_to_sync(inner)() + + assert model.objects.filter(trashed=False).count() == 0 finally: current_key.reset(key_token) @pytest.mark.django_db -def test_call_tool_delete_row_table_different_workspace(data_fixture): +def test_call_tool_delete_rows_cross_workspace_returns_error(data_fixture): endpoint = data_fixture.create_mcp_endpoint() - table = data_fixture.create_database_table(user=endpoint.user) - data_fixture.create_text_field(name="Name", table=table, primary=True) + other_table = data_fixture.create_database_table() mcp = BaserowMCPServer() key_token = current_key.set(endpoint.key) @@ -424,13 +317,10 @@ def test_call_tool_delete_row_table_different_workspace(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool( - "delete_table_row", - { - "table_id": table.id, - "id": 1, - }, + "delete_rows", + {"table_id": other_table.id, "row_ids": [1]}, ) - assert result.content[0].text == "Table not in endpoint workspace." + assert "does not exist" in result.content[0].text.lower() with transaction.atomic(): async_to_sync(inner)() diff --git a/backend/tests/baserow/contrib/database/mcp/test_mcp_services.py b/backend/tests/baserow/contrib/database/mcp/test_mcp_services.py new file mode 100644 index 0000000000..35fedf46d4 --- /dev/null +++ b/backend/tests/baserow/contrib/database/mcp/test_mcp_services.py @@ -0,0 +1,399 @@ +""" +Covers workspace scoping, permission filtering, and CRUD correctness for all +service functions used by MCP tools and the enterprise assistant. +""" + +import pytest + +from baserow.contrib.database.fields.models import Field +from baserow.contrib.database.mcp import services +from baserow.contrib.database.models import Database +from baserow.contrib.database.table.models import Table + +# --------------------------------------------------------------------------- +# filter_tables / get_table +# --------------------------------------------------------------------------- + + +@pytest.mark.django_db +def test_filter_tables_returns_workspace_tables(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + database = data_fixture.create_database_application(workspace=workspace) + table_1 = data_fixture.create_database_table(database=database) + table_2 = data_fixture.create_database_table(database=database) + # Different workspace — must be excluded + data_fixture.create_database_table() + + tables = list(services.filter_tables(user, workspace)) + ids = [t.id for t in tables] + assert table_1.id in ids + assert table_2.id in ids + assert len(ids) == 2 + + +@pytest.mark.django_db +def test_get_table_raises_when_not_in_workspace(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + other_table = data_fixture.create_database_table() # different workspace + + with pytest.raises(Table.DoesNotExist): + services.get_table(user, workspace, other_table.id) + + +@pytest.mark.django_db +def test_get_table_returns_correct_table(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + database = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=database) + + result = services.get_table(user, workspace, table.id) + assert result.id == table.id + + +# --------------------------------------------------------------------------- +# list_databases / get_database / create_database +# --------------------------------------------------------------------------- + + +@pytest.mark.django_db +def test_list_databases_returns_workspace_databases(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db_1 = data_fixture.create_database_application(workspace=workspace) + db_2 = data_fixture.create_database_application(workspace=workspace) + # Different workspace + data_fixture.create_database_application() + + databases = services.list_databases(user, workspace) + ids = [db.id for db in databases] + assert db_1.id in ids + assert db_2.id in ids + assert len(ids) == 2 + + +@pytest.mark.django_db +def test_get_database_raises_when_not_in_workspace(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + other_db = data_fixture.create_database_application() # different workspace + + with pytest.raises(Database.DoesNotExist): + services.get_database(user, workspace, other_db.id) + + +@pytest.mark.django_db +def test_create_database(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + + db = services.create_database(user, workspace, "My Database") + assert db.id is not None + assert db.name == "My Database" + assert isinstance(db, Database) + + +# --------------------------------------------------------------------------- +# list_tables / create_table / update_table / delete_table +# --------------------------------------------------------------------------- + + +@pytest.mark.django_db +def test_list_tables_all_in_workspace(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + t1 = data_fixture.create_database_table(database=db) + t2 = data_fixture.create_database_table(database=db) + data_fixture.create_database_table() # different workspace + + tables = services.list_tables(user, workspace) + ids = [t.id for t in tables] + assert t1.id in ids + assert t2.id in ids + assert len(ids) == 2 + + +@pytest.mark.django_db +def test_list_tables_filtered_by_database(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db1 = data_fixture.create_database_application(workspace=workspace) + db2 = data_fixture.create_database_application(workspace=workspace) + t1 = data_fixture.create_database_table(database=db1) + data_fixture.create_database_table(database=db2) + + tables = services.list_tables(user, workspace, database_id=db1.id) + assert [t.id for t in tables] == [t1.id] + + +@pytest.mark.django_db +def test_create_table_no_fields(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + + result = services.create_table(user, workspace, db.id, "Orders") + assert result["name"] == "Orders" + assert result["database_id"] == db.id + assert isinstance(result["id"], int) + assert result["fields"] == [] + + +@pytest.mark.django_db +def test_create_table_with_fields(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + + result = services.create_table( + user, + workspace, + db.id, + "Products", + fields=[ + {"name": "Price", "type": "number", "number_decimal_places": 2}, + ], + ) + assert result["name"] == "Products" + field_names = [f["name"] for f in result["fields"]] + assert "Price" in field_names + + +@pytest.mark.django_db +def test_create_table_wrong_database(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + other_db = data_fixture.create_database_application() # different workspace + + with pytest.raises(Database.DoesNotExist): + services.create_table(user, workspace, other_db.id, "Bad Table") + + +@pytest.mark.django_db +def test_update_table(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db, name="Old Name") + + result = services.update_table(user, workspace, table.id, "New Name") + assert result["name"] == "New Name" + + +@pytest.mark.django_db +def test_delete_table(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + + services.delete_table(user, workspace, table.id) + assert not Table.objects.filter(id=table.id, trashed=False).exists() + + +# --------------------------------------------------------------------------- +# get_table_schema +# --------------------------------------------------------------------------- + + +@pytest.mark.django_db +def test_get_table_schema_returns_fields(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + data_fixture.create_text_field(name="Title", table=table, primary=True) + data_fixture.create_number_field(name="Score", table=table) + + schemas = services.get_table_schema(user, workspace, [table.id]) + assert len(schemas) == 1 + schema = schemas[0] + assert schema["id"] == table.id + assert schema["name"] == table.name + field_names = [f["name"] for f in schema["fields"]] + assert "Title" in field_names + assert "Score" in field_names + + +@pytest.mark.django_db +def test_get_table_schema_excludes_inaccessible_tables(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + other_table = data_fixture.create_database_table() # different workspace + + schemas = services.get_table_schema(user, workspace, [other_table.id]) + assert schemas == [] + + +# --------------------------------------------------------------------------- +# create_fields / update_fields / delete_fields +# --------------------------------------------------------------------------- + + +@pytest.mark.django_db +def test_create_fields(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + + created = services.create_fields( + user, + workspace, + table.id, + [{"name": "Status", "type": "text"}], + ) + assert len(created) == 1 + assert created[0]["name"] == "Status" + assert created[0]["type"] == "text" + + +@pytest.mark.django_db +def test_update_fields(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + field = data_fixture.create_text_field(name="Old", table=table) + + updated = services.update_fields(user, workspace, [{"id": field.id, "name": "New"}]) + assert updated[0]["name"] == "New" + + +@pytest.mark.django_db +def test_delete_fields(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + field = data_fixture.create_text_field(name="ToDelete", table=table) + + services.delete_fields(user, workspace, [field.id]) + assert not Field.objects.filter(id=field.id, trashed=False).exists() + + +@pytest.mark.django_db +def test_delete_fields_outside_workspace_raises(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + other_field = data_fixture.create_text_field() # different workspace + + with pytest.raises(Field.DoesNotExist): + services.delete_fields(user, workspace, [other_field.id]) + + +# --------------------------------------------------------------------------- +# list_rows / create_rows / update_rows / delete_rows +# --------------------------------------------------------------------------- + + +@pytest.mark.django_db +def test_list_rows_returns_rows_with_user_field_names(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + data_fixture.create_text_field(name="Name", table=table, primary=True) + + model = table.get_model(attribute_names=True) + model.objects.create(name="Alice") + model.objects.create(name="Bob") + + result = services.list_rows(user, workspace, table.id) + assert result["count"] == 2 + names = [r["Name"] for r in result["results"]] + assert "Alice" in names + assert "Bob" in names + + +@pytest.mark.django_db +def test_list_rows_cross_workspace_raises(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + other_table = data_fixture.create_database_table() + + with pytest.raises(Table.DoesNotExist): + services.list_rows(user, workspace, other_table.id) + + +@pytest.mark.django_db +def test_list_rows_pagination(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + data_fixture.create_text_field(name="Name", table=table, primary=True) + + model = table.get_model(attribute_names=True) + for i in range(5): + model.objects.create(name=f"Row {i}") + + page1 = services.list_rows(user, workspace, table.id, page=1, size=3) + page2 = services.list_rows(user, workspace, table.id, page=2, size=3) + assert page1["count"] == 5 + assert len(page1["results"]) == 3 + assert len(page2["results"]) == 2 + + +@pytest.mark.django_db +def test_create_rows_with_user_field_names(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + data_fixture.create_text_field(name="Name", table=table, primary=True) + + created = services.create_rows( + user, workspace, table.id, [{"Name": "Alice"}, {"Name": "Bob"}] + ) + assert len(created) == 2 + assert created[0]["Name"] == "Alice" + assert created[1]["Name"] == "Bob" + + +@pytest.mark.django_db +def test_create_rows_unknown_field_raises(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + data_fixture.create_text_field(name="Name", table=table, primary=True) + + with pytest.raises(ValueError, match="Unknown field name 'NoSuchField'"): + services.create_rows(user, workspace, table.id, [{"NoSuchField": "bad"}]) + + +@pytest.mark.django_db +def test_update_rows(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + data_fixture.create_text_field(name="Name", table=table, primary=True) + + model = table.get_model(attribute_names=True) + row = model.objects.create(name="Original") + + updated = services.update_rows( + user, workspace, table.id, [{"id": row.id, "Name": "Updated"}] + ) + assert updated[0]["Name"] == "Updated" + + +@pytest.mark.django_db +def test_delete_rows(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + data_fixture.create_text_field(name="Name", table=table, primary=True) + + model = table.get_model(attribute_names=True) + row1 = model.objects.create(name="Row 1") + row2 = model.objects.create(name="Row 2") + + services.delete_rows(user, workspace, table.id, [row1.id, row2.id]) + assert model.objects.filter(trashed=False).count() == 0 diff --git a/backend/tests/baserow/contrib/database/mcp/test_mcp_table_tools.py b/backend/tests/baserow/contrib/database/mcp/test_mcp_table_tools.py index 34bfb56ca1..4d6fd25ddd 100644 --- a/backend/tests/baserow/contrib/database/mcp/test_mcp_table_tools.py +++ b/backend/tests/baserow/contrib/database/mcp/test_mcp_table_tools.py @@ -1,3 +1,5 @@ +"""Tests for static MCP table, database, and field tools.""" + import json from django.db import transaction @@ -10,6 +12,108 @@ from baserow.core.mcp import BaserowMCPServer, current_key +ENABLED_TOOL_NAMES = { + "list_databases", + "list_tables", + "get_table_schema", + "list_table_rows", + "create_rows", + "update_rows", + "delete_rows", +} + +DISABLED_TOOL_NAMES = { + "create_database", + "create_table", + "update_table", + "delete_table", + "create_fields", + "update_fields", + "delete_fields", +} + +ALL_TOOL_NAMES = ENABLED_TOOL_NAMES | DISABLED_TOOL_NAMES + + +@pytest.mark.django_db +def test_list_tools_returns_only_enabled_tools(data_fixture): + """tools/list must return only enabled tools, hiding disabled ones.""" + endpoint = data_fixture.create_mcp_endpoint() + database = data_fixture.create_database_application(workspace=endpoint.workspace) + for _ in range(5): + data_fixture.create_database_table(database=database) + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.list_tools() + names = {t.name for t in result.tools} + assert names == ENABLED_TOOL_NAMES + assert not names & DISABLED_TOOL_NAMES + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_list_databases(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + db1 = data_fixture.create_database_application(workspace=workspace) + db2 = data_fixture.create_database_application(workspace=workspace) + # Different workspace — must not appear. + data_fixture.create_database_application() + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool("list_databases", {}) + data = json.loads(result.content[0].text) + ids = [d["id"] for d in data] + assert db1.id in ids + assert db2.id in ids + assert len(ids) == 2 + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_create_database(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool("create_database", {"name": "My DB"}) + data = json.loads(result.content[0].text) + assert data["name"] == "My DB" + assert isinstance(data["id"], int) + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + @pytest.mark.django_db def test_call_tool_list_tables(data_fixture): @@ -23,12 +127,10 @@ def test_call_tool_list_tables(data_fixture): table_1 = data_fixture.create_database_table(database=database_1) table_2 = data_fixture.create_database_table(database=database_2) - - # Should not be in the result because the table is in a different workspace. - table_3 = data_fixture.create_database_table(database=database_3) + # Different workspace — must not appear. + data_fixture.create_database_table(database=database_3) mcp = BaserowMCPServer() - key_token = current_key.set(endpoint.key) try: @@ -36,8 +138,8 @@ def test_call_tool_list_tables(data_fixture): async def inner(): async with client_session(mcp._mcp_server) as client: result = await client.call_tool("list_tables", {}) - json_result = json.loads(result.content[0].text) - assert json_result == [ + data = json.loads(result.content[0].text) + assert data == [ { "id": table_1.id, "name": table_1.name, @@ -56,3 +158,277 @@ async def inner(): async_to_sync(inner)() finally: current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_list_tables_filtered_by_database(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + db1 = data_fixture.create_database_application(workspace=workspace) + db2 = data_fixture.create_database_application(workspace=workspace) + t1 = data_fixture.create_database_table(database=db1) + data_fixture.create_database_table(database=db2) + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool("list_tables", {"database_id": db1.id}) + data = json.loads(result.content[0].text) + assert len(data) == 1 + assert data[0]["id"] == t1.id + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_create_table(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + db = data_fixture.create_database_application(workspace=workspace) + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool( + "create_table", + { + "database_id": db.id, + "name": "Orders", + "fields": [{"name": "Customer", "type": "text"}], + }, + ) + data = json.loads(result.content[0].text) + assert data["name"] == "Orders" + assert data["database_id"] == db.id + assert isinstance(data["id"], int) + field_names = [f["name"] for f in data["fields"]] + assert "Customer" in field_names + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_update_table(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db, name="Old Name") + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool( + "update_table", {"table_id": table.id, "name": "New Name"} + ) + data = json.loads(result.content[0].text) + assert data["name"] == "New Name" + assert data["id"] == table.id + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_delete_table(data_fixture): + from baserow.contrib.database.table.models import Table + + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool("delete_table", {"table_id": table.id}) + assert result.content[0].text == "Table successfully deleted." + + with transaction.atomic(): + async_to_sync(inner)() + + assert not Table.objects.filter(id=table.id, trashed=False).exists() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_get_table_schema(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + data_fixture.create_text_field(name="Title", table=table, primary=True) + data_fixture.create_number_field(name="Score", table=table) + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool( + "get_table_schema", {"table_ids": [table.id]} + ) + schemas = json.loads(result.content[0].text) + assert len(schemas) == 1 + schema = schemas[0] + assert schema["id"] == table.id + assert schema["name"] == table.name + field_names = [f["name"] for f in schema["fields"]] + assert "Title" in field_names + assert "Score" in field_names + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_get_table_schema_excludes_other_workspace(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + other_table = data_fixture.create_database_table() # different workspace + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool( + "get_table_schema", {"table_ids": [other_table.id]} + ) + schemas = json.loads(result.content[0].text) + assert schemas == [] + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_create_fields(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool( + "create_fields", + { + "table_id": table.id, + "fields": [{"name": "Status", "type": "text"}], + }, + ) + data = json.loads(result.content[0].text) + assert len(data) == 1 + assert data[0]["name"] == "Status" + assert data[0]["type"] == "text" + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_update_fields(data_fixture): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + field = data_fixture.create_text_field(name="Old Name", table=table) + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool( + "update_fields", + {"fields": [{"id": field.id, "name": "New Name"}]}, + ) + data = json.loads(result.content[0].text) + assert len(data) == 1 + assert data[0]["name"] == "New Name" + + with transaction.atomic(): + async_to_sync(inner)() + finally: + current_key.reset(key_token) + + +@pytest.mark.django_db +def test_call_tool_delete_fields(data_fixture): + from baserow.contrib.database.fields.models import Field + + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) + db = data_fixture.create_database_application(workspace=workspace) + table = data_fixture.create_database_table(database=db) + field = data_fixture.create_text_field(name="ToDelete", table=table) + + mcp = BaserowMCPServer() + key_token = current_key.set(endpoint.key) + + try: + + async def inner(): + async with client_session(mcp._mcp_server) as client: + result = await client.call_tool( + "delete_fields", {"field_ids": [field.id]} + ) + assert result.content[0].text == "Fields successfully deleted." + + with transaction.atomic(): + async_to_sync(inner)() + + assert not Field.objects.filter(id=field.id, trashed=False).exists() + finally: + current_key.reset(key_token) diff --git a/backend/tests/baserow/contrib/database/mcp/test_mcp_table_utils.py b/backend/tests/baserow/contrib/database/mcp/test_mcp_table_utils.py deleted file mode 100644 index 08b1364010..0000000000 --- a/backend/tests/baserow/contrib/database/mcp/test_mcp_table_utils.py +++ /dev/null @@ -1,33 +0,0 @@ -import pytest - -from baserow.contrib.database.mcp.table.utils import get_all_tables -from baserow_enterprise.role.handler import RoleAssignmentHandler -from baserow_enterprise.role.models import Role - - -@pytest.mark.django_db -def test_get_all_tables(data_fixture): - user = data_fixture.create_user() - workspace_1 = data_fixture.create_workspace(user=user) - endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace_1) - - database_1 = data_fixture.create_database_application(workspace=workspace_1) - database_2 = data_fixture.create_database_application(workspace=workspace_1) - database_3 = data_fixture.create_database_application() - - table_1 = data_fixture.create_database_table(database=database_1) - table_2 = data_fixture.create_database_table(database=database_2) - - # Should not be in the result because the table is in a different workspace. - table_3 = data_fixture.create_database_table(database=database_3) - - tables = get_all_tables(endpoint) - assert [t.id for t in tables] == [table_1.id, table_2.id] - - user = data_fixture.create_user() - workspace = data_fixture.create_workspace(members=[user]) - endpoint = data_fixture.create_mcp_endpoint(user=user, workspace=workspace) - database = data_fixture.create_database_application(workspace=workspace) - table = data_fixture.create_database_table(database=database) - role_viewer = Role.objects.get(uid="VIEWER") - RoleAssignmentHandler().assign_role(user, workspace, role_viewer) diff --git a/backend/tests/baserow/contrib/integrations/ai/test_ai_agent_service_type.py b/backend/tests/baserow/contrib/integrations/ai/test_ai_agent_service_type.py index 7706d6f998..a05d59b609 100644 --- a/backend/tests/baserow/contrib/integrations/ai/test_ai_agent_service_type.py +++ b/backend/tests/baserow/contrib/integrations/ai/test_ai_agent_service_type.py @@ -25,7 +25,13 @@ def mock_ai_prompt(return_value="AI response", should_fail=False): """ def _prompt( - model, prompt, workspace=None, temperature=None, settings_override=None + model, + prompt, + workspace=None, + temperature=None, + settings_override=None, + output_type=None, + content=None, ): if should_fail: raise GenerativeAIPromptError("AI API error") @@ -271,6 +277,7 @@ def test_ai_agent_service_dispatch_choice_output(data_fixture, settings): service_type = service.get_type() dispatch_context = FakeDispatchContext() + # prompt() with output_choices returns the matched choice string with mock_ai_prompt(return_value="positive"): result = service_type.dispatch(service, dispatch_context) diff --git a/backend/tests/baserow/core/generative_ai/test_generative_ai_model_types.py b/backend/tests/baserow/core/generative_ai/test_generative_ai_model_types.py index 31c6662d7a..77f804d058 100644 --- a/backend/tests/baserow/core/generative_ai/test_generative_ai_model_types.py +++ b/backend/tests/baserow/core/generative_ai/test_generative_ai_model_types.py @@ -1,237 +1,36 @@ -import random -from dataclasses import dataclass -from unittest.mock import MagicMock, Mock - -import pytest -from openai import OpenAIError - -from baserow.core.generative_ai.exceptions import AIFileError, GenerativeAIPromptError from baserow.core.generative_ai.generative_ai_model_types import ( OpenAIGenerativeAIModelType, ) -base_module = "baserow.core.generative_ai.generative_ai_model_types" - - -class FilesAPIStub: - """ - Stubbed OpenAI files API that can - store and delete files. - """ - - @dataclass - class OpenAIFileStub: - id: str - - _files = {} - - def create(self, file, purpose): - file_name, file, _ = file - if OpenAIGenerativeAIModelType().is_file_compatible(file_name) is False: - raise OpenAIError() - - ai_file_id = str(random.randint(0, 1000)) - self._files[ai_file_id] = { - "file_name": file_name, - "file": file, - "purpose": purpose, - } - return self.OpenAIFileStub(id=ai_file_id) - - def delete(self, file_id): - try: - del self._files[file_id] - except KeyError as exc: - raise OpenAIError() from exc - - -@dataclass -class RunStub: - status: str - - -class AssistantsAPIStub: - """ - Stubbed OpenAI assistant API. - """ - - @dataclass - class OpenAIAssistantStub: - id: str - - def __init__(self): - self._assistants = {} - - def create(self, name, instructions, model, tools): - assistant = self.OpenAIAssistantStub(id=str(random.randint(0, 1000))) - self._assistants[assistant.id] = { - "name": name, - "instructions": instructions, - "model": model, - "tools": tools, - } - return assistant - def delete(self, assistant_id): - del self._assistants[assistant_id] - - -class BetaAPIStub: - """ - Stubbed OpenAI beta API. - """ - - def __init__(self): - self.assistants = AssistantsAPIStub() - self.threads = Mock() - - -class OpenAIStub: - """ - Stubbed OpenAI API client. - """ - - def __init__(self): - self.beta = BetaAPIStub() - self.files = FilesAPIStub() - - -def test_openai_type_is_file_compatible(): +def test_openai_supports_files(): ai_model_type = OpenAIGenerativeAIModelType() + assert ai_model_type.supports_files is True - assert ai_model_type.is_file_compatible("filename.txt") is True - assert ai_model_type.is_file_compatible("filename.png") is False - assert ai_model_type.is_file_compatible("filename") is False - - -def test_openai_type_upload_file(): - file_name = "filename.txt" - file = "filestring".encode() - openai_client = OpenAIStub() - - def get_client_stub(workspace=None): - return openai_client +def test_openai_embeddable_and_uploadable_extensions(): ai_model_type = OpenAIGenerativeAIModelType() - ai_model_type.get_client = get_client_stub - - file_id = ai_model_type.upload_file(file_name, file) - assert openai_client.files._files[file_id] == { - "file_name": file_name, - "file": file, - "purpose": "assistants", - } + # Documents → uploadable + assert ".txt" in ai_model_type._UPLOADABLE_EXTENSIONS + assert ".pdf" in ai_model_type._UPLOADABLE_EXTENSIONS + assert ".csv" in ai_model_type._UPLOADABLE_EXTENSIONS + # Images → embeddable + assert ".png" in ai_model_type._EMBEDDABLE_EXTENSIONS + assert ".jpg" in ai_model_type._EMBEDDABLE_EXTENSIONS -def test_openai_type_upload_file_error(): - file_name = "filename" # not compatible - file = "filestring".encode() - openai_client = OpenAIStub() - - def get_client_stub(workspace=None): - return openai_client - - ai_model_type = OpenAIGenerativeAIModelType() - ai_model_type.get_client = get_client_stub - - with pytest.raises(AIFileError): - ai_model_type.upload_file(file_name, file) - - -def test_openai_type_delete_files(): - file = "filestring".encode() - openai_client = OpenAIStub() - openai_client.files._files = { - "1": { - "file_name": "filename1.txt", - "file": file, - "purpose": "assistants", - }, - "2": { - "file_name": "filename2.txt", - "file": file, - "purpose": "assistants", - }, - "3": { - "file_name": "filename3.txt", - "file": file, - "purpose": "assistants", - }, - } - - def get_client_stub(workspace=None): - return openai_client - - ai_model_type = OpenAIGenerativeAIModelType() - ai_model_type.get_client = get_client_stub - ai_model_type.delete_files(file_ids=["1", "2"]) - - assert len(openai_client.files._files) == 1 - assert openai_client.files._files["3"]["file_name"] == "filename3.txt" - - -def test_openai_type_delete_files_error(): - openai_client = OpenAIStub() - - def get_client_stub(workspace=None): - return openai_client - - ai_model_type = OpenAIGenerativeAIModelType() - ai_model_type.get_client = get_client_stub - with pytest.raises(AIFileError): - ai_model_type.delete_files(file_ids=["doesnt_exist"]) - - -def test_openai_type_prompt_with_files(): - openai_client = OpenAIStub() - - def get_client_stub(workspace=None): - return openai_client - - ai_model_type = OpenAIGenerativeAIModelType() - ai_model_type.get_client = get_client_stub - - openai_client.beta.threads.runs.create_and_poll.return_value = RunStub( - status="completed" - ) - - messages = MagicMock() - messages.data[0].content[0].text.value = "test response\u30104:0\u2020source\u3011" - - openai_client.beta.threads.messages.list.return_value = messages - - response = ai_model_type.prompt_with_files("gpt-3.5", "test prompt", file_ids=[]) - assert response == "test response" # reference was removed from the ouput - assert len(openai_client.beta.assistants._assistants) == 0, ( - "Assistant has been deleted" + # Unsupported + assert ".mp4" not in ( + ai_model_type._EMBEDDABLE_EXTENSIONS | ai_model_type._UPLOADABLE_EXTENSIONS ) - openai_client.beta.threads.delete.assert_called_once() - assert len(openai_client.beta.assistants._assistants) == 0 - - -def test_openai_type_prompt_with_files_error(): - openai_client = OpenAIStub() - - def get_client_stub(workspace=None): - return openai_client - - ai_model_type = OpenAIGenerativeAIModelType() - ai_model_type.get_client = get_client_stub - - openai_client.beta.threads.runs.create_and_poll.return_value = RunStub( - status="failed" - ) - - with pytest.raises(GenerativeAIPromptError): - ai_model_type.prompt_with_files("gpt-3.5", "test prompt", file_ids=[]) -def test_openai_max_file_size(settings): +def test_openai_max_upload_size(settings): ai_model_type = OpenAIGenerativeAIModelType() settings.BASEROW_OPENAI_UPLOADED_FILE_SIZE_LIMIT_MB = 1000 - assert ai_model_type.get_max_file_size() == 512 + assert ai_model_type._get_max_upload_bytes() == 512 * 1024 * 1024 settings.BASEROW_OPENAI_UPLOADED_FILE_SIZE_LIMIT_MB = 100 - assert ai_model_type.get_max_file_size() == 100 + assert ai_model_type._get_max_upload_bytes() == 100 * 1024 * 1024 diff --git a/backend/tests/baserow/core/mcp/test_mcp_utils.py b/backend/tests/baserow/core/mcp/test_mcp_utils.py deleted file mode 100644 index 125668d71b..0000000000 --- a/backend/tests/baserow/core/mcp/test_mcp_utils.py +++ /dev/null @@ -1,546 +0,0 @@ -from baserow.api.utils import DiscriminatorCustomFieldsMappingSerializer -from baserow.contrib.database.api.tables.serializers import TableSerializer -from baserow.contrib.database.api.views.serializers import CreateViewSerializer -from baserow.contrib.database.views.registries import view_type_registry -from baserow.core.mcp.utils import serializer_to_openapi_inline - - -def test_serializer_to_openapi_inline(): - assert serializer_to_openapi_inline(TableSerializer) == { - "type": "object", - "properties": { - "id": {"type": "integer", "readOnly": True}, - "name": {"type": "string", "maxLength": 255}, - "order": { - "type": "integer", - "maximum": 2147483647, - "minimum": 0, - "description": "Lowest first.", - }, - "database_id": {"type": "integer", "readOnly": True}, - "data_sync": { - "type": "object", - # Confirm that the child serializers are not rendered as `$ref`, but - # rather fully inline. - "properties": { - "auto_add_new_properties": { - "description": "If enabled and new properties are detected on sync, then they're automatically added. Note that this means all properties will always be added.", - "type": "boolean", - }, - "two_way_sync": { - "description": "If enabled, then it's possible to make changes to the synced table. They will automatically be synced with the source data. Note that this is only possible if the data sync type has a two-way sync strategy.", - "type": "boolean", - }, - "id": {"type": "integer", "readOnly": True}, - "type": {"type": "string", "readOnly": True}, - "synced_properties": { - "type": "array", - "items": { - "type": "object", - "properties": { - "field_id": {"type": "integer", "readOnly": True}, - "key": { - "type": "string", - "description": "The matching `key` of the `DataSyncProperty`.", - "maxLength": 255, - }, - "unique_primary": { - "type": "boolean", - "description": "Indicates whether the data sync property is used for unique identification when syncing.", - }, - }, - "required": ["field_id", "key"], - }, - }, - "last_sync": { - "type": "string", - "format": "date-time", - "nullable": True, - "description": "Timestamp when the table was last synced.", - }, - "last_error": {"type": "string", "nullable": True}, - }, - "required": [ - "id", - "synced_properties", - "type", - ], - }, - }, - "required": ["data_sync", "database_id", "id", "name", "order"], - } - - -def test_polymorphic_serializer_to_openapi_inline(): - assert serializer_to_openapi_inline( - DiscriminatorCustomFieldsMappingSerializer( - view_type_registry, CreateViewSerializer - ) - ) == { - # Confirm that the function is compatible with OpenAPI extensions, and the - # `DiscriminatorCustomFieldsMappingSerializer` in particular. - "oneOf": [ - { - "type": "object", - "properties": { - "name": {"type": "string", "maxLength": 255}, - "type": { - "enum": [ - "grid", - "gallery", - "form", - "kanban", - "calendar", - "timeline", - ], - "type": "string", - "description": "* `grid` - grid\n* `gallery` - gallery\n* `form` - form\n* `kanban` - kanban\n* `calendar` - calendar\n* `timeline` - timeline", - "x-spec-enum-id": "fa62d8e05d0fc78a", - }, - "ownership_type": { - "enum": ["collaborative", "personal", "restricted"], - "type": "string", - "description": "* `collaborative` - collaborative\n* `personal` - personal\n* `restricted` - restricted", - "x-spec-enum-id": "c917b297d9d9ef1b", - "default": "collaborative", - }, - "filter_type": { - "enum": ["AND", "OR"], - "type": "string", - "x-spec-enum-id": "04b3a389dad7c22c", - "description": "Indicates whether all the rows should apply to all filters (AND) or to any filter (OR).\n\n* `AND` - And\n* `OR` - Or", - }, - "filters_disabled": { - "type": "boolean", - "description": "Allows users to see results unfiltered while still keeping the filters saved for the view.", - }, - "row_identifier_type": { - "enum": ["id", "count"], - "type": "string", - "description": "* `id` - Id\n* `count` - Count", - "x-spec-enum-id": "1d246b77066dcabb", - }, - "row_height_size": { - "enum": ["small", "medium", "large"], - "type": "string", - "description": "* `small` - Small\n* `medium` - Medium\n* `large` - Large", - "x-spec-enum-id": "fc68282295492d17", - }, - "public": { - "type": "boolean", - "description": "Indicates whether the view is publicly accessible to visitors.", - }, - "slug": { - "type": "string", - "readOnly": True, - "description": "The unique slug that can be used to construct a public URL.", - }, - }, - "required": ["name", "slug", "type"], - }, - { - "type": "object", - "properties": { - "name": {"type": "string", "maxLength": 255}, - "type": { - "enum": [ - "grid", - "gallery", - "form", - "kanban", - "calendar", - "timeline", - ], - "type": "string", - "description": "* `grid` - grid\n* `gallery` - gallery\n* `form` - form\n* `kanban` - kanban\n* `calendar` - calendar\n* `timeline` - timeline", - "x-spec-enum-id": "fa62d8e05d0fc78a", - }, - "ownership_type": { - "enum": ["collaborative", "personal", "restricted"], - "type": "string", - "description": "* `collaborative` - collaborative\n* `personal` - personal\n* `restricted` - restricted", - "x-spec-enum-id": "c917b297d9d9ef1b", - "default": "collaborative", - }, - "filter_type": { - "enum": ["AND", "OR"], - "type": "string", - "x-spec-enum-id": "04b3a389dad7c22c", - "description": "Indicates whether all the rows should apply to all filters (AND) or to any filter (OR).\n\n* `AND` - And\n* `OR` - Or", - }, - "filters_disabled": { - "type": "boolean", - "description": "Allows users to see results unfiltered while still keeping the filters saved for the view.", - }, - "card_cover_image_field": { - "type": "integer", - "nullable": True, - "description": "References a file field of which the first image must be shown as card cover image.", - }, - "public": { - "type": "boolean", - "description": "Indicates whether the view is publicly accessible to visitors.", - }, - "slug": { - "type": "string", - "readOnly": True, - "description": "The unique slug that can be used to construct a public URL.", - }, - }, - "required": ["name", "slug", "type"], - }, - { - "type": "object", - "properties": { - "name": {"type": "string", "maxLength": 255}, - "type": { - "enum": [ - "grid", - "gallery", - "form", - "kanban", - "calendar", - "timeline", - ], - "type": "string", - "description": "* `grid` - grid\n* `gallery` - gallery\n* `form` - form\n* `kanban` - kanban\n* `calendar` - calendar\n* `timeline` - timeline", - "x-spec-enum-id": "fa62d8e05d0fc78a", - }, - "ownership_type": { - "enum": ["collaborative", "personal", "restricted"], - "type": "string", - "description": "* `collaborative` - collaborative\n* `personal` - personal\n* `restricted` - restricted", - "x-spec-enum-id": "c917b297d9d9ef1b", - "default": "collaborative", - }, - "filter_type": { - "enum": ["AND", "OR"], - "type": "string", - "x-spec-enum-id": "04b3a389dad7c22c", - "description": "Indicates whether all the rows should apply to all filters (AND) or to any filter (OR).\n\n* `AND` - And\n* `OR` - Or", - }, - "filters_disabled": { - "type": "boolean", - "description": "Allows users to see results unfiltered while still keeping the filters saved for the view.", - }, - "title": { - "type": "string", - "description": "The title that is displayed at the beginning of the form.", - }, - "description": { - "type": "string", - "description": "The description that is displayed at the beginning of the form.", - }, - "mode": { - "enum": ["form", "survey"], - "type": "string", - "x-spec-enum-id": "51edacc237baaffe", - "description": "Configurable mode of the form.\n\n* `form` - form\n* `survey` - survey", - }, - "cover_image": { - "type": "object", - "properties": { - "size": { - "type": "integer", - "maximum": 9223372036854775807, - "minimum": 0, - "format": "int64", - }, - "mime_type": {"type": "string", "maxLength": 127}, - "is_image": {"type": "boolean"}, - "image_width": { - "type": "integer", - "maximum": 2147483647, - "minimum": 0, - "nullable": True, - }, - "image_height": { - "type": "integer", - "maximum": 2147483647, - "minimum": 0, - "nullable": True, - }, - "uploaded_at": { - "type": "string", - "format": "date-time", - "readOnly": True, - }, - "url": { - "type": "string", - "format": "uri", - "readOnly": True, - }, - "thumbnails": { - "type": "object", - "additionalProperties": {}, - "readOnly": True, - }, - "name": {"type": "string", "readOnly": True}, - "original_name": {"type": "string", "maxLength": 255}, - }, - "required": [ - "name", - "original_name", - "size", - "thumbnails", - "uploaded_at", - "url", - ], - "nullable": True, - "description": "The cover image that must be displayed at the top of the form.", - }, - "logo_image": { - "type": "object", - "properties": { - "size": { - "type": "integer", - "maximum": 9223372036854775807, - "minimum": 0, - "format": "int64", - }, - "mime_type": {"type": "string", "maxLength": 127}, - "is_image": {"type": "boolean"}, - "image_width": { - "type": "integer", - "maximum": 2147483647, - "minimum": 0, - "nullable": True, - }, - "image_height": { - "type": "integer", - "maximum": 2147483647, - "minimum": 0, - "nullable": True, - }, - "uploaded_at": { - "type": "string", - "format": "date-time", - "readOnly": True, - }, - "url": { - "type": "string", - "format": "uri", - "readOnly": True, - }, - "thumbnails": { - "type": "object", - "additionalProperties": {}, - "readOnly": True, - }, - "name": {"type": "string", "readOnly": True}, - "original_name": {"type": "string", "maxLength": 255}, - }, - "required": [ - "name", - "original_name", - "size", - "thumbnails", - "uploaded_at", - "url", - ], - "nullable": True, - "description": "The logo image that must be displayed at the top of the form.", - }, - "submit_text": { - "type": "string", - "description": "The text displayed on the submit button.", - }, - "submit_action": { - "enum": ["MESSAGE", "REDIRECT"], - "type": "string", - "x-spec-enum-id": "a7241a3e2e370277", - "description": "The action that must be performed after the visitor has filled out the form.\n\n* `MESSAGE` - Message\n* `REDIRECT` - Redirect", - }, - "submit_action_message": { - "type": "string", - "description": "If the `submit_action` is MESSAGE, then this message will be shown to the visitor after submitting the form.", - }, - "submit_action_redirect_url": { - "type": "string", - "format": "uri", - "description": "If the `submit_action` is REDIRECT,then the visitors will be redirected to the this URL after submitting the form.", - "maxLength": 2000, - }, - "receive_notification_on_submit": { - "type": "boolean", - "readOnly": True, - "description": "A boolean indicating if the current user should be notified when the form is submitted.", - }, - "public": { - "type": "boolean", - "description": "Indicates whether the view is publicly accessible to visitors.", - }, - "slug": { - "type": "string", - "readOnly": True, - "description": "The unique slug that can be used to construct a public URL.", - }, - }, - "required": ["name", "receive_notification_on_submit", "slug", "type"], - }, - { - "type": "object", - "properties": { - "name": {"type": "string", "maxLength": 255}, - "type": { - "enum": [ - "grid", - "gallery", - "form", - "kanban", - "calendar", - "timeline", - ], - "type": "string", - "description": "* `grid` - grid\n* `gallery` - gallery\n* `form` - form\n* `kanban` - kanban\n* `calendar` - calendar\n* `timeline` - timeline", - "x-spec-enum-id": "fa62d8e05d0fc78a", - }, - "ownership_type": { - "enum": ["collaborative", "personal", "restricted"], - "type": "string", - "description": "* `collaborative` - collaborative\n* `personal` - personal\n* `restricted` - restricted", - "x-spec-enum-id": "c917b297d9d9ef1b", - "default": "collaborative", - }, - "filter_type": { - "enum": ["AND", "OR"], - "type": "string", - "x-spec-enum-id": "04b3a389dad7c22c", - "description": "Indicates whether all the rows should apply to all filters (AND) or to any filter (OR).\n\n* `AND` - And\n* `OR` - Or", - }, - "filters_disabled": { - "type": "boolean", - "description": "Allows users to see results unfiltered while still keeping the filters saved for the view.", - }, - "single_select_field": {"type": "integer", "nullable": True}, - "card_cover_image_field": { - "type": "integer", - "nullable": True, - "description": "References a file field of which the first image must be shown as card cover image.", - }, - "public": { - "type": "boolean", - "description": "Indicates whether the view is publicly accessible to visitors.", - }, - "slug": { - "type": "string", - "readOnly": True, - "description": "The unique slug that can be used to construct a public URL.", - }, - }, - "required": ["name", "slug", "type"], - }, - { - "type": "object", - "properties": { - "name": {"type": "string", "maxLength": 255}, - "type": { - "enum": [ - "grid", - "gallery", - "form", - "kanban", - "calendar", - "timeline", - ], - "type": "string", - "description": "* `grid` - grid\n* `gallery` - gallery\n* `form` - form\n* `kanban` - kanban\n* `calendar` - calendar\n* `timeline` - timeline", - "x-spec-enum-id": "fa62d8e05d0fc78a", - }, - "ownership_type": { - "enum": ["collaborative", "personal", "restricted"], - "type": "string", - "description": "* `collaborative` - collaborative\n* `personal` - personal\n* `restricted` - restricted", - "x-spec-enum-id": "c917b297d9d9ef1b", - "default": "collaborative", - }, - "filter_type": { - "enum": ["AND", "OR"], - "type": "string", - "x-spec-enum-id": "04b3a389dad7c22c", - "description": "Indicates whether all the rows should apply to all filters (AND) or to any filter (OR).\n\n* `AND` - And\n* `OR` - Or", - }, - "filters_disabled": { - "type": "boolean", - "description": "Allows users to see results unfiltered while still keeping the filters saved for the view.", - }, - "date_field": {"type": "integer", "nullable": True}, - "ical_feed_url": { - "type": "string", - "readOnly": True, - "description": "Read-only field with ICal feed endpoint. Note: this url will not be active if ical_public value is set to False.", - }, - "ical_public": { - "type": "boolean", - "nullable": True, - "description": "A flag to show if ical feed is exposed. Set this field to True when modifying this resource to enable ICal feed url.", - }, - "public": { - "type": "boolean", - "description": "Indicates whether the view is publicly accessible to visitors.", - }, - "slug": { - "type": "string", - "readOnly": True, - "description": "The unique slug that can be used to construct a public URL.", - }, - }, - "required": ["ical_feed_url", "name", "slug", "type"], - }, - { - "type": "object", - "properties": { - "name": {"type": "string", "maxLength": 255}, - "type": { - "enum": [ - "grid", - "gallery", - "form", - "kanban", - "calendar", - "timeline", - ], - "type": "string", - "description": "* `grid` - grid\n* `gallery` - gallery\n* `form` - form\n* `kanban` - kanban\n* `calendar` - calendar\n* `timeline` - timeline", - "x-spec-enum-id": "fa62d8e05d0fc78a", - }, - "ownership_type": { - "enum": ["collaborative", "personal", "restricted"], - "type": "string", - "description": "* `collaborative` - collaborative\n* `personal` - personal\n* `restricted` - restricted", - "x-spec-enum-id": "c917b297d9d9ef1b", - "default": "collaborative", - }, - "filter_type": { - "enum": ["AND", "OR"], - "type": "string", - "x-spec-enum-id": "04b3a389dad7c22c", - "description": "Indicates whether all the rows should apply to all filters (AND) or to any filter (OR).\n\n* `AND` - And\n* `OR` - Or", - }, - "filters_disabled": { - "type": "boolean", - "description": "Allows users to see results unfiltered while still keeping the filters saved for the view.", - }, - "start_date_field": {"type": "integer", "nullable": True}, - "end_date_field": {"type": "integer", "nullable": True}, - "timescale": { - "enum": ["day", "week", "month", "year"], - "type": "string", - "x-spec-enum-id": "cf8e742c49e533bc", - "description": "The timescale that the timeline should be displayed in.\n\n* `day` - Day\n* `week` - Week\n* `month` - Month\n* `year` - Year", - }, - "public": { - "type": "boolean", - "description": "Indicates whether the view is publicly accessible to visitors.", - }, - "slug": { - "type": "string", - "readOnly": True, - "description": "The unique slug that can be used to construct a public URL.", - }, - }, - "required": ["name", "slug", "type"], - }, - ], - "discriminator": {"propertyName": "type", "mapping": {}}, - } diff --git a/backend/uv.lock b/backend/uv.lock index 1c33e12710..ce69897fac 100644 --- a/backend/uv.lock +++ b/backend/uv.lock @@ -191,7 +191,6 @@ wheels = [ name = "baserow" source = { editable = "." } dependencies = [ - { name = "anthropic", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "antlr4-python3-runtime", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "asgiref", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "boto3", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -221,13 +220,9 @@ dependencies = [ { name = "icalendar", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "itsdangerous", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "jira2markdown", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "langchain", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "langchain-openai", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "loguru", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "mcp", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "mistralai", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "netifaces", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "openai", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "openpyxl", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "opentelemetry-api", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "opentelemetry-exporter-otlp-proto-http", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -255,7 +250,7 @@ dependencies = [ { name = "prosemirror", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "psutil", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "psycopg2-binary", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pydantic-ai-slim", extra = ["anthropic", "bedrock", "google", "groq", "openai"], marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "pydantic-ai-slim", extra = ["anthropic", "bedrock", "google", "groq", "mistral", "openai"], marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "pyotp", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "pysaml2", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "qrcode", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -323,7 +318,6 @@ dev = [ [package.metadata] requires-dist = [ - { name = "anthropic", specifier = "==0.84.0" }, { name = "antlr4-python3-runtime", specifier = "==4.9.3" }, { name = "asgiref", specifier = "==3.11.0" }, { name = "boto3", specifier = "==1.42.57" }, @@ -355,13 +349,9 @@ requires-dist = [ { name = "icalendar", specifier = "==6.3.2" }, { name = "itsdangerous", specifier = "==2.2.0" }, { name = "jira2markdown", specifier = "==0.5" }, - { name = "langchain", specifier = "==0.3.28" }, - { name = "langchain-openai", specifier = "==0.3.35" }, { name = "loguru", specifier = "==0.7.3" }, { name = "mcp", specifier = "==1.26.0" }, - { name = "mistralai", specifier = "==2.0.0" }, { name = "netifaces", specifier = "==0.11.0" }, - { name = "openai", specifier = "==2.14.0" }, { name = "openpyxl", specifier = "==3.1.5" }, { name = "opentelemetry-api", specifier = "==1.39.1" }, { name = "opentelemetry-exporter-otlp-proto-http", specifier = "==1.39.1" }, @@ -390,7 +380,7 @@ requires-dist = [ { name = "prosemirror", specifier = "==0.5.2" }, { name = "psutil", specifier = "==7.2.2" }, { name = "psycopg2-binary", specifier = "==2.9.11" }, - { name = "pydantic-ai-slim", extras = ["anthropic", "bedrock", "google", "groq", "openai"], specifier = "==1.66.0" }, + { name = "pydantic-ai-slim", extras = ["anthropic", "bedrock", "google", "groq", "mistral", "openai"], specifier = "==1.66.0" }, { name = "pyotp", specifier = "==2.9.0" }, { name = "pysaml2", specifier = "==7.5.4" }, { name = "qrcode", specifier = "==8.2" }, @@ -1411,26 +1401,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/91/4c/e0ce1ef95d4000ebc1c11801f9b944fa5910ecc15b5e351865763d8657f8/graphviz-0.21-py3-none-any.whl", hash = "sha256:54f33de9f4f911d7e84e4191749cac8cc5653f815b06738c54db9a15ab8b1e42", size = 47300, upload-time = "2025-06-15T09:35:04.433Z" }, ] -[[package]] -name = "greenlet" -version = "3.3.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c7/e5/40dbda2736893e3e53d25838e0f19a2b417dfc122b9989c91918db30b5d3/greenlet-3.3.0.tar.gz", hash = "sha256:a82bb225a4e9e4d653dd2fb7b8b2d36e4fb25bc0165422a11e48b88e9e6f78fb", size = 190651, upload-time = "2025-12-04T14:49:44.05Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d7/7c/f0a6d0ede2c7bf092d00bc83ad5bafb7e6ec9b4aab2fbdfa6f134dc73327/greenlet-3.3.0-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:60c2ef0f578afb3c8d92ea07ad327f9a062547137afe91f38408f08aacab667f", size = 275671, upload-time = "2025-12-04T14:23:05.267Z" }, - { url = "https://files.pythonhosted.org/packages/44/06/dac639ae1a50f5969d82d2e3dd9767d30d6dbdbab0e1a54010c8fe90263c/greenlet-3.3.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0a5d554d0712ba1de0a6c94c640f7aeba3f85b3a6e1f2899c11c2c0428da9365", size = 646360, upload-time = "2025-12-04T14:50:10.026Z" }, - { url = "https://files.pythonhosted.org/packages/e0/94/0fb76fe6c5369fba9bf98529ada6f4c3a1adf19e406a47332245ef0eb357/greenlet-3.3.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3a898b1e9c5f7307ebbde4102908e6cbfcb9ea16284a3abe15cab996bee8b9b3", size = 658160, upload-time = "2025-12-04T14:57:45.41Z" }, - { url = "https://files.pythonhosted.org/packages/b8/14/bab308fc2c1b5228c3224ec2bf928ce2e4d21d8046c161e44a2012b5203e/greenlet-3.3.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5773edda4dc00e173820722711d043799d3adb4f01731f40619e07ea2750b955", size = 660166, upload-time = "2025-12-04T14:26:05.099Z" }, - { url = "https://files.pythonhosted.org/packages/4b/d2/91465d39164eaa0085177f61983d80ffe746c5a1860f009811d498e7259c/greenlet-3.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ac0549373982b36d5fd5d30beb8a7a33ee541ff98d2b502714a09f1169f31b55", size = 1615193, upload-time = "2025-12-04T15:04:27.041Z" }, - { url = "https://files.pythonhosted.org/packages/42/1b/83d110a37044b92423084d52d5d5a3b3a73cafb51b547e6d7366ff62eff1/greenlet-3.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d198d2d977460358c3b3a4dc844f875d1adb33817f0613f663a656f463764ccc", size = 1683653, upload-time = "2025-12-04T14:27:32.366Z" }, - { url = "https://files.pythonhosted.org/packages/a0/66/bd6317bc5932accf351fc19f177ffba53712a202f9df10587da8df257c7e/greenlet-3.3.0-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:d6ed6f85fae6cdfdb9ce04c9bf7a08d666cfcfb914e7d006f44f840b46741931", size = 282638, upload-time = "2025-12-04T14:25:20.941Z" }, - { url = "https://files.pythonhosted.org/packages/30/cf/cc81cb030b40e738d6e69502ccbd0dd1bced0588e958f9e757945de24404/greenlet-3.3.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d9125050fcf24554e69c4cacb086b87b3b55dc395a8b3ebe6487b045b2614388", size = 651145, upload-time = "2025-12-04T14:50:11.039Z" }, - { url = "https://files.pythonhosted.org/packages/9c/ea/1020037b5ecfe95ca7df8d8549959baceb8186031da83d5ecceff8b08cd2/greenlet-3.3.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:87e63ccfa13c0a0f6234ed0add552af24cc67dd886731f2261e46e241608bee3", size = 654236, upload-time = "2025-12-04T14:57:47.007Z" }, - { url = "https://files.pythonhosted.org/packages/57/b9/f8025d71a6085c441a7eaff0fd928bbb275a6633773667023d19179fe815/greenlet-3.3.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3c6e9b9c1527a78520357de498b0e709fb9e2f49c3a513afd5a249007261911b", size = 653783, upload-time = "2025-12-04T14:26:06.225Z" }, - { url = "https://files.pythonhosted.org/packages/f6/c7/876a8c7a7485d5d6b5c6821201d542ef28be645aa024cfe1145b35c120c1/greenlet-3.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:286d093f95ec98fdd92fcb955003b8a3d054b4e2cab3e2707a5039e7b50520fd", size = 1614857, upload-time = "2025-12-04T15:04:28.484Z" }, - { url = "https://files.pythonhosted.org/packages/4f/dc/041be1dff9f23dac5f48a43323cd0789cb798342011c19a248d9c9335536/greenlet-3.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6c10513330af5b8ae16f023e8ddbfb486ab355d04467c4679c5cfe4659975dd9", size = 1676034, upload-time = "2025-12-04T14:27:33.531Z" }, -] - [[package]] name = "griffelib" version = "2.0.0" @@ -1758,27 +1728,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256, upload-time = "2022-06-17T18:00:10.251Z" }, ] -[[package]] -name = "jsonpatch" -version = "1.33" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "jsonpointer", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/42/78/18813351fe5d63acad16aec57f94ec2b70a09e53ca98145589e185423873/jsonpatch-1.33.tar.gz", hash = "sha256:9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c", size = 21699, upload-time = "2023-06-26T12:07:29.144Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/73/07/02e16ed01e04a374e644b575638ec7987ae846d25ad97bcc9945a3ee4b0e/jsonpatch-1.33-py2.py3-none-any.whl", hash = "sha256:0ae28c0cd062bbd8b8ecc26d7d164fbbea9652a1a3693f3b956c1eae5145dade", size = 12898, upload-time = "2023-06-16T21:01:28.466Z" }, -] - -[[package]] -name = "jsonpointer" -version = "3.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6a/0a/eebeb1fa92507ea94016a2a790b93c2ae41a7e18778f85471dc54475ed25/jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef", size = 9114, upload-time = "2024-06-10T19:24:42.462Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/71/92/5e77f98553e9e75130c78900d000368476aed74276eb8ae8796f65f00918/jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942", size = 7595, upload-time = "2024-06-10T19:24:40.698Z" }, -] - [[package]] name = "jsonschema" version = "4.26.0" @@ -1841,88 +1790,6 @@ redis = [ { name = "redis", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -[[package]] -name = "langchain" -version = "0.3.28" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "langchain-core", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "langchain-text-splitters", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "langsmith", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pydantic", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "sqlalchemy", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/87/bb/a65e29c8e4aaf0348c2617962e427c8e760d82a67adbd197019e49c7769d/langchain-0.3.28.tar.gz", hash = "sha256:30a32f44cc6690bcc6a6fb7c14d61a15406d5eda1a0e7eab60b3660944888741", size = 10242473, upload-time = "2026-03-06T22:45:17.911Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/5b/f5/ecd71e5b78e67944b2600a155ef63000bc00148e6794e8e7809b2453887a/langchain-0.3.28-py3-none-any.whl", hash = "sha256:1ba1244477b67b812b775f346209fa596e78bf055a34e45ce22acb7a45842a32", size = 1024717, upload-time = "2026-03-06T22:45:15.545Z" }, -] - -[[package]] -name = "langchain-core" -version = "0.3.83" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "jsonpatch", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "langsmith", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "packaging", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pydantic", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "tenacity", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "uuid-utils", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/21/a4/24f2d787bfcf56e5990924cacefe6f6e7971a3629f97c8162fc7a2a3d851/langchain_core-0.3.83.tar.gz", hash = "sha256:a0a4c7b6ea1c446d3b432116f405dc2afa1fe7891c44140d3d5acca221909415", size = 597965, upload-time = "2026-01-13T01:19:23.854Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/5a/db/d71b80d3bd6193812485acea4001cdf86cf95a44bbf942f7a240120ff762/langchain_core-0.3.83-py3-none-any.whl", hash = "sha256:8c92506f8b53fc1958b1c07447f58c5783eb8833dd3cb6dc75607c80891ab1ae", size = 458890, upload-time = "2026-01-13T01:19:21.748Z" }, -] - -[[package]] -name = "langchain-openai" -version = "0.3.35" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "langchain-core", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "openai", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "tiktoken", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/fb/96/06d0d25a37e05a0ff2d918f0a4b0bf0732aed6a43b472b0b68426ce04ef8/langchain_openai-0.3.35.tar.gz", hash = "sha256:fa985fd041c3809da256a040c98e8a43e91c6d165b96dcfeb770d8bd457bf76f", size = 786635, upload-time = "2025-10-06T15:09:28.463Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d8/d5/c90c5478215c20ee71d8feaf676f7ffd78d0568f8c98bd83f81ce7562ed7/langchain_openai-0.3.35-py3-none-any.whl", hash = "sha256:76d5707e6e81fd461d33964ad618bd326cb661a1975cef7c1cb0703576bdada5", size = 75952, upload-time = "2025-10-06T15:09:27.137Z" }, -] - -[[package]] -name = "langchain-text-splitters" -version = "0.3.11" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "langchain-core", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/11/43/dcda8fd25f0b19cb2835f2f6bb67f26ad58634f04ac2d8eae00526b0fa55/langchain_text_splitters-0.3.11.tar.gz", hash = "sha256:7a50a04ada9a133bbabb80731df7f6ddac51bc9f1b9cab7fa09304d71d38a6cc", size = 46458, upload-time = "2025-08-31T23:02:58.316Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/58/0d/41a51b40d24ff0384ec4f7ab8dd3dcea8353c05c973836b5e289f1465d4f/langchain_text_splitters-0.3.11-py3-none-any.whl", hash = "sha256:cf079131166a487f1372c8ab5d0bfaa6c0a4291733d9c43a34a16ac9bcd6a393", size = 33845, upload-time = "2025-08-31T23:02:57.195Z" }, -] - -[[package]] -name = "langsmith" -version = "0.6.4" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "httpx", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "orjson", marker = "(platform_python_implementation != 'PyPy' and sys_platform == 'darwin') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux')" }, - { name = "packaging", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pydantic", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests-toolbelt", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "uuid-utils", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "zstandard", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/e7/85/9c7933052a997da1b85bc5c774f3865e9b1da1c8d71541ea133178b13229/langsmith-0.6.4.tar.gz", hash = "sha256:36f7223a01c218079fbb17da5e536ebbaf5c1468c028abe070aa3ae59bc99ec8", size = 919964, upload-time = "2026-01-15T20:02:28.873Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/66/0f/09a6637a7ba777eb307b7c80852d9ee26438e2bdafbad6fcc849ff9d9192/langsmith-0.6.4-py3-none-any.whl", hash = "sha256:ac4835860160be371042c7adbba3cb267bcf8d96a5ea976c33a8a4acad6c5486", size = 283503, upload-time = "2026-01-15T20:02:26.662Z" }, -] - [[package]] name = "lazy-object-proxy" version = "1.12.0" @@ -2599,26 +2466,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/16/5c/d3f1733665f7cd582ef0842fb1d2ed0bc1fba10875160593342d22bba375/opentelemetry_util_http-0.60b1-py3-none-any.whl", hash = "sha256:66381ba28550c91bee14dcba8979ace443444af1ed609226634596b4b0faf199", size = 8947, upload-time = "2025-12-11T13:36:37.151Z" }, ] -[[package]] -name = "orjson" -version = "3.11.6" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/70/a3/4e09c61a5f0c521cba0bb433639610ae037437669f1a4cbc93799e731d78/orjson-3.11.6.tar.gz", hash = "sha256:0a54c72259f35299fd033042367df781c2f66d10252955ca1efb7db309b954cb", size = 6175856, upload-time = "2026-01-29T15:13:07.942Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/31/9f/46ca908abaeeec7560638ff20276ab327b980d73b3cc2f5b205b4a1c60b3/orjson-3.11.6-cp314-cp314-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6026db2692041d2a23fe2545606df591687787825ad5821971ef0974f2c47630", size = 249823, upload-time = "2026-01-29T15:12:43.332Z" }, - { url = "https://files.pythonhosted.org/packages/ff/78/ca478089818d18c9cd04f79c43f74ddd031b63c70fa2a946eb5e85414623/orjson-3.11.6-cp314-cp314-macosx_15_0_arm64.whl", hash = "sha256:132b0ab2e20c73afa85cf142e547511feb3d2f5b7943468984658f3952b467d4", size = 134328, upload-time = "2026-01-29T15:12:45.171Z" }, - { url = "https://files.pythonhosted.org/packages/39/5e/cbb9d830ed4e47f4375ad8eef8e4fff1bf1328437732c3809054fc4e80be/orjson-3.11.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b376fb05f20a96ec117d47987dd3b39265c635725bda40661b4c5b73b77b5fde", size = 137651, upload-time = "2026-01-29T15:12:46.602Z" }, - { url = "https://files.pythonhosted.org/packages/7c/3a/35df6558c5bc3a65ce0961aefee7f8364e59af78749fc796ea255bfa0cf5/orjson-3.11.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:954dae4e080574672a1dfcf2a840eddef0f27bd89b0e94903dd0824e9c1db060", size = 134596, upload-time = "2026-01-29T15:12:47.95Z" }, - { url = "https://files.pythonhosted.org/packages/cd/8e/3d32dd7b7f26a19cc4512d6ed0ae3429567c71feef720fe699ff43c5bc9e/orjson-3.11.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe515bb89d59e1e4b48637a964f480b35c0a2676de24e65e55310f6016cca7ce", size = 140923, upload-time = "2026-01-29T15:12:49.333Z" }, - { url = "https://files.pythonhosted.org/packages/6c/9c/1efbf5c99b3304f25d6f0d493a8d1492ee98693637c10ce65d57be839d7b/orjson-3.11.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:380f9709c275917af28feb086813923251e11ee10687257cd7f1ea188bcd4485", size = 144068, upload-time = "2026-01-29T15:12:50.927Z" }, - { url = "https://files.pythonhosted.org/packages/82/83/0d19eeb5be797de217303bbb55dde58dba26f996ed905d301d98fd2d4637/orjson-3.11.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8173e0d3f6081e7034c51cf984036d02f6bab2a2126de5a759d79f8e5a140e7", size = 142493, upload-time = "2026-01-29T15:12:52.432Z" }, - { url = "https://files.pythonhosted.org/packages/32/a7/573fec3df4dc8fc259b7770dc6c0656f91adce6e19330c78d23f87945d1e/orjson-3.11.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6dddf9ba706294906c56ef5150a958317b09aa3a8a48df1c52ccf22ec1907eac", size = 145616, upload-time = "2026-01-29T15:12:53.903Z" }, - { url = "https://files.pythonhosted.org/packages/c2/0e/23551b16f21690f7fd5122e3cf40fdca5d77052a434d0071990f97f5fe2f/orjson-3.11.6-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:cbae5c34588dc79938dffb0b6fbe8c531f4dc8a6ad7f39759a9eb5d2da405ef2", size = 146951, upload-time = "2026-01-29T15:12:55.698Z" }, - { url = "https://files.pythonhosted.org/packages/b8/63/5e6c8f39805c39123a18e412434ea364349ee0012548d08aa586e2bd6aa9/orjson-3.11.6-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:f75c318640acbddc419733b57f8a07515e587a939d8f54363654041fd1f4e465", size = 421024, upload-time = "2026-01-29T15:12:57.434Z" }, - { url = "https://files.pythonhosted.org/packages/1d/4d/724975cf0087f6550bd01fd62203418afc0ea33fd099aed318c5bcc52df8/orjson-3.11.6-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:e0ab8d13aa2a3e98b4a43487c9205b2c92c38c054b4237777484d503357c8437", size = 155774, upload-time = "2026-01-29T15:12:59.397Z" }, - { url = "https://files.pythonhosted.org/packages/a8/a3/f4c4e3f46b55db29e0a5f20493b924fc791092d9a03ff2068c9fe6c1002f/orjson-3.11.6-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f884c7fb1020d44612bd7ac0db0babba0e2f78b68d9a650c7959bf99c783773f", size = 147393, upload-time = "2026-01-29T15:13:00.769Z" }, -] - [[package]] name = "packaging" version = "25.0" @@ -2937,6 +2784,9 @@ google = [ groq = [ { name = "groq", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] +mistral = [ + { name = "mistralai", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, +] openai = [ { name = "openai", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "tiktoken", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -3474,18 +3324,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" }, ] -[[package]] -name = "requests-toolbelt" -version = "1.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f3/61/d7545dafb7ac2230c70d38d31cbfe4cc64f7144dc41f6e4e4b78ecd9f5bb/requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", size = 206888, upload-time = "2023-05-01T04:11:33.229Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", size = 54481, upload-time = "2023-05-01T04:11:28.427Z" }, -] - [[package]] name = "responses" version = "0.25.8" @@ -3694,25 +3532,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0", size = 29575, upload-time = "2021-05-16T22:03:41.177Z" }, ] -[[package]] -name = "sqlalchemy" -version = "2.0.45" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "greenlet", marker = "(platform_machine == 'AMD64' and sys_platform == 'darwin') or (platform_machine == 'WIN32' and sys_platform == 'darwin') or (platform_machine == 'aarch64' and sys_platform == 'darwin') or (platform_machine == 'amd64' and sys_platform == 'darwin') or (platform_machine == 'ppc64le' and sys_platform == 'darwin') or (platform_machine == 'win32' and sys_platform == 'darwin') or (platform_machine == 'x86_64' and sys_platform == 'darwin') or (platform_machine == 'AMD64' and sys_platform == 'linux') or (platform_machine == 'WIN32' and sys_platform == 'linux') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'amd64' and sys_platform == 'linux') or (platform_machine == 'ppc64le' and sys_platform == 'linux') or (platform_machine == 'win32' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" }, - { name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/be/f9/5e4491e5ccf42f5d9cfc663741d261b3e6e1683ae7812114e7636409fcc6/sqlalchemy-2.0.45.tar.gz", hash = "sha256:1632a4bda8d2d25703fdad6363058d882541bdaaee0e5e3ddfa0cd3229efce88", size = 9869912, upload-time = "2025-12-09T21:05:16.737Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/cc/64/4e1913772646b060b025d3fc52ce91a58967fe58957df32b455de5a12b4f/sqlalchemy-2.0.45-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7f46ec744e7f51275582e6a24326e10c49fbdd3fc99103e01376841213028774", size = 3272404, upload-time = "2025-12-09T22:11:09.662Z" }, - { url = "https://files.pythonhosted.org/packages/b3/27/caf606ee924282fe4747ee4fd454b335a72a6e018f97eab5ff7f28199e16/sqlalchemy-2.0.45-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:883c600c345123c033c2f6caca18def08f1f7f4c3ebeb591a63b6fceffc95cce", size = 3277057, upload-time = "2025-12-09T22:13:56.213Z" }, - { url = "https://files.pythonhosted.org/packages/85/d0/3d64218c9724e91f3d1574d12eb7ff8f19f937643815d8daf792046d88ab/sqlalchemy-2.0.45-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:2c0b74aa79e2deade948fe8593654c8ef4228c44ba862bb7c9585c8e0db90f33", size = 3222279, upload-time = "2025-12-09T22:11:11.1Z" }, - { url = "https://files.pythonhosted.org/packages/24/10/dd7688a81c5bc7690c2a3764d55a238c524cd1a5a19487928844cb247695/sqlalchemy-2.0.45-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:8a420169cef179d4c9064365f42d779f1e5895ad26ca0c8b4c0233920973db74", size = 3244508, upload-time = "2025-12-09T22:13:57.932Z" }, - { url = "https://files.pythonhosted.org/packages/42/39/f05f0ed54d451156bbed0e23eb0516bcad7cbb9f18b3bf219c786371b3f0/sqlalchemy-2.0.45-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cd337d3526ec5298f67d6a30bbbe4ed7e5e68862f0bf6dd21d289f8d37b7d60b", size = 3522029, upload-time = "2025-12-09T22:13:32.09Z" }, - { url = "https://files.pythonhosted.org/packages/54/0f/d15398b98b65c2bce288d5ee3f7d0a81f77ab89d9456994d5c7cc8b2a9db/sqlalchemy-2.0.45-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:9a62b446b7d86a3909abbcd1cd3cc550a832f99c2bc37c5b22e1925438b9367b", size = 3475142, upload-time = "2025-12-09T22:13:33.739Z" }, - { url = "https://files.pythonhosted.org/packages/bf/e1/3ccb13c643399d22289c6a9786c1a91e3dcbb68bce4beb44926ac2c557bf/sqlalchemy-2.0.45-py3-none-any.whl", hash = "sha256:5225a288e4c8cc2308dbdd874edad6e7d0fd38eac1e9e5f23503425c8eee20d0", size = 1936672, upload-time = "2025-12-09T21:54:52.608Z" }, -] - [[package]] name = "sqlparse" version = "0.5.5" @@ -3965,25 +3784,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, ] -[[package]] -name = "uuid-utils" -version = "0.13.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/fe/8a/17b11768dcb473d3a255c02ffdd94fbd1b345c906efea0a39124dcbaed52/uuid_utils-0.13.0.tar.gz", hash = "sha256:4c17df6427a9e23a4cd7fb9ee1efb53b8abb078660b9bdb2524ca8595022dfe1", size = 21921, upload-time = "2026-01-08T15:48:10.841Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/85/b8/d40848ca22781f206c60a1885fc737d2640392bd6b5792d455525accd89c/uuid_utils-0.13.0-cp39-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:83628283e977fb212e756bc055df8fdd2f9f589a2e539ba1abe755b8ce8df7a4", size = 602130, upload-time = "2026-01-08T15:47:34.877Z" }, - { url = "https://files.pythonhosted.org/packages/40/b9/00a944b8096632ea12638181f8e294abcde3e3b8b5e29b777f809896f6ae/uuid_utils-0.13.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:c47638ed6334ab19d80f73664f153b04bbb04ab8ce4298d10da6a292d4d21c47", size = 304213, upload-time = "2026-01-08T15:47:36.807Z" }, - { url = "https://files.pythonhosted.org/packages/da/d7/07b36c33aef683b81c9afff3ec178d5eb39d325447a68c3c68a62e4abb32/uuid_utils-0.13.0-cp39-abi3-manylinux_2_24_aarch64.whl", hash = "sha256:b276b538c57733ed406948584912da422a604313c71479654848b84b9e19c9b0", size = 340624, upload-time = "2026-01-08T15:47:38.821Z" }, - { url = "https://files.pythonhosted.org/packages/7d/55/fcff2fff02a27866cb1a6614c9df2b3ace721f0a0aab2b7b8f5a7d4e4221/uuid_utils-0.13.0-cp39-abi3-manylinux_2_24_armv7l.whl", hash = "sha256:bdaf2b77e34b199cf04cde28399495fd1ed951de214a4ece1f3919b2f945bb06", size = 346705, upload-time = "2026-01-08T15:47:40.397Z" }, - { url = "https://files.pythonhosted.org/packages/41/48/67438506c2bb8bee1b4b00d7c0b3ff866401b4790849bf591d654d4ea0bc/uuid_utils-0.13.0-cp39-abi3-manylinux_2_24_i686.whl", hash = "sha256:eb2f0baf81e82f9769a7684022dca8f3bf801ca1574a3e94df1876e9d6f9271e", size = 366023, upload-time = "2026-01-08T15:47:42.662Z" }, - { url = "https://files.pythonhosted.org/packages/8b/d7/2d91ce17f62fd764d593430de296b70843cc25229c772453f7261de9e6a8/uuid_utils-0.13.0-cp39-abi3-manylinux_2_24_ppc64le.whl", hash = "sha256:6be6c4d11275f5cc402a4fdba6c2b1ce45fd3d99bb78716cd1cc2cbf6802b2ce", size = 471149, upload-time = "2026-01-08T15:47:44.963Z" }, - { url = "https://files.pythonhosted.org/packages/2e/9a/aa0756186073ba84daf5704c150d41ede10eb3185d510e02532e2071550e/uuid_utils-0.13.0-cp39-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:77621cf6ceca7f42173a642a01c01c216f9eaec3b7b65d093d2d6a433ca0a83d", size = 342130, upload-time = "2026-01-08T15:47:46.331Z" }, - { url = "https://files.pythonhosted.org/packages/74/b4/3191789f4dc3bed59d79cec90559821756297a25d7dc34d1bf7781577a75/uuid_utils-0.13.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9a5a9eb06c2bb86dd876cd7b2fe927fc8543d14c90d971581db6ffda4a02526f", size = 524128, upload-time = "2026-01-08T15:47:47.628Z" }, - { url = "https://files.pythonhosted.org/packages/b2/30/29839210a8fff9fc219bfa7c8d8cd115324e92618cba0cda090d54d3d321/uuid_utils-0.13.0-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:775347c6110fb71360df17aac74132d8d47c1dbe71233ac98197fc872a791fd2", size = 615872, upload-time = "2026-01-08T15:47:50.61Z" }, - { url = "https://files.pythonhosted.org/packages/99/ed/15000c96a8bd8f5fd8efd622109bf52549ea0b366f8ce71c45580fa55878/uuid_utils-0.13.0-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:cf95f6370ad1a0910ee7b5ad5228fd19c4ae32fe3627389006adaf519408c41e", size = 581023, upload-time = "2026-01-08T15:47:52.776Z" }, - { url = "https://files.pythonhosted.org/packages/67/c8/3f809fa2dc2ca4bd331c792a3c7d3e45ae2b709d85847a12b8b27d1d5f19/uuid_utils-0.13.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5a88e23e0b2f4203fefe2ccbca5736ee06fcad10e61b5e7e39c8d7904bc13300", size = 546715, upload-time = "2026-01-08T15:47:54.415Z" }, -] - [[package]] name = "uvicorn" version = "0.40.0" @@ -4174,23 +3974,3 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/02/cc/b321c51d6936ede296a1b8860cf173bee2928357fe1fff7f97234899173f/zope_interface-8.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:aae807efc7bd26302eb2fea05cd6de7d59269ed6ae23a6de1ee47add6de99b8c", size = 264219, upload-time = "2026-01-09T08:05:41.624Z" }, { url = "https://files.pythonhosted.org/packages/ab/fb/5f5e7b40a2f4efd873fe173624795ca47eaa22e29051270c981361b45209/zope_interface-8.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:05a0e42d6d830f547e114de2e7cd15750dc6c0c78f8138e6c5035e51ddfff37c", size = 264390, upload-time = "2026-01-09T08:05:42.936Z" }, ] - -[[package]] -name = "zstandard" -version = "0.25.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/fd/aa/3e0508d5a5dd96529cdc5a97011299056e14c6505b678fd58938792794b1/zstandard-0.25.0.tar.gz", hash = "sha256:7713e1179d162cf5c7906da876ec2ccb9c3a9dcbdffef0cc7f70c3667a205f0b", size = 711513, upload-time = "2025-09-14T22:15:54.002Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3d/5c/f8923b595b55fe49e30612987ad8bf053aef555c14f05bb659dd5dbe3e8a/zstandard-0.25.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e29f0cf06974c899b2c188ef7f783607dbef36da4c242eb6c82dcd8b512855e3", size = 795887, upload-time = "2025-09-14T22:17:54.198Z" }, - { url = "https://files.pythonhosted.org/packages/8d/09/d0a2a14fc3439c5f874042dca72a79c70a532090b7ba0003be73fee37ae2/zstandard-0.25.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:05df5136bc5a011f33cd25bc9f506e7426c0c9b3f9954f056831ce68f3b6689f", size = 640658, upload-time = "2025-09-14T22:17:55.423Z" }, - { url = "https://files.pythonhosted.org/packages/5d/7c/8b6b71b1ddd517f68ffb55e10834388d4f793c49c6b83effaaa05785b0b4/zstandard-0.25.0-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl", hash = "sha256:f604efd28f239cc21b3adb53eb061e2a205dc164be408e553b41ba2ffe0ca15c", size = 5379849, upload-time = "2025-09-14T22:17:57.372Z" }, - { url = "https://files.pythonhosted.org/packages/a4/86/a48e56320d0a17189ab7a42645387334fba2200e904ee47fc5a26c1fd8ca/zstandard-0.25.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:223415140608d0f0da010499eaa8ccdb9af210a543fac54bce15babbcfc78439", size = 5058095, upload-time = "2025-09-14T22:17:59.498Z" }, - { url = "https://files.pythonhosted.org/packages/f8/ad/eb659984ee2c0a779f9d06dbfe45e2dc39d99ff40a319895df2d3d9a48e5/zstandard-0.25.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2e54296a283f3ab5a26fc9b8b5d4978ea0532f37b231644f367aa588930aa043", size = 5551751, upload-time = "2025-09-14T22:18:01.618Z" }, - { url = "https://files.pythonhosted.org/packages/61/b3/b637faea43677eb7bd42ab204dfb7053bd5c4582bfe6b1baefa80ac0c47b/zstandard-0.25.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ca54090275939dc8ec5dea2d2afb400e0f83444b2fc24e07df7fdef677110859", size = 6364818, upload-time = "2025-09-14T22:18:03.769Z" }, - { url = "https://files.pythonhosted.org/packages/31/dc/cc50210e11e465c975462439a492516a73300ab8caa8f5e0902544fd748b/zstandard-0.25.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e09bb6252b6476d8d56100e8147b803befa9a12cea144bbe629dd508800d1ad0", size = 5560402, upload-time = "2025-09-14T22:18:05.954Z" }, - { url = "https://files.pythonhosted.org/packages/c9/ae/56523ae9c142f0c08efd5e868a6da613ae76614eca1305259c3bf6a0ed43/zstandard-0.25.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a9ec8c642d1ec73287ae3e726792dd86c96f5681eb8df274a757bf62b750eae7", size = 4955108, upload-time = "2025-09-14T22:18:07.68Z" }, - { url = "https://files.pythonhosted.org/packages/98/cf/c899f2d6df0840d5e384cf4c4121458c72802e8bda19691f3b16619f51e9/zstandard-0.25.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:a4089a10e598eae6393756b036e0f419e8c1d60f44a831520f9af41c14216cf2", size = 5269248, upload-time = "2025-09-14T22:18:09.753Z" }, - { url = "https://files.pythonhosted.org/packages/1b/c0/59e912a531d91e1c192d3085fc0f6fb2852753c301a812d856d857ea03c6/zstandard-0.25.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:f67e8f1a324a900e75b5e28ffb152bcac9fbed1cc7b43f99cd90f395c4375344", size = 5430330, upload-time = "2025-09-14T22:18:11.966Z" }, - { url = "https://files.pythonhosted.org/packages/a0/1d/7e31db1240de2df22a58e2ea9a93fc6e38cc29353e660c0272b6735d6669/zstandard-0.25.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:9654dbc012d8b06fc3d19cc825af3f7bf8ae242226df5f83936cb39f5fdc846c", size = 5811123, upload-time = "2025-09-14T22:18:13.907Z" }, - { url = "https://files.pythonhosted.org/packages/f6/49/fac46df5ad353d50535e118d6983069df68ca5908d4d65b8c466150a4ff1/zstandard-0.25.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:4203ce3b31aec23012d3a4cf4a2ed64d12fea5269c49aed5e4c3611b938e4088", size = 5359591, upload-time = "2025-09-14T22:18:16.465Z" }, -] diff --git a/changelog/entries/unreleased/refactor/refactor_mcp_tools_share_ai_assistant_capabilities.json b/changelog/entries/unreleased/refactor/refactor_mcp_tools_share_ai_assistant_capabilities.json new file mode 100644 index 0000000000..7495979966 --- /dev/null +++ b/changelog/entries/unreleased/refactor/refactor_mcp_tools_share_ai_assistant_capabilities.json @@ -0,0 +1,9 @@ +{ + "type": "refactor", + "message": "refactor MCP tools; share AI Assistant capabilities", + "issue_origin": "github", + "issue_number": null, + "domain": "core", + "bullet_points": [], + "created_at": "2026-03-23" +} \ No newline at end of file diff --git a/changelog/entries/unreleased/refactor/replace_langchain_with_pydanticai_for_the_ai_field_and_the_a.json b/changelog/entries/unreleased/refactor/replace_langchain_with_pydanticai_for_the_ai_field_and_the_a.json new file mode 100644 index 0000000000..7d6f0a4d73 --- /dev/null +++ b/changelog/entries/unreleased/refactor/replace_langchain_with_pydanticai_for_the_ai_field_and_the_a.json @@ -0,0 +1,9 @@ +{ + "type": "refactor", + "message": "Replace LangChain with pydantic-ai for the AI field and the AI prompt node", + "issue_origin": "github", + "issue_number": null, + "domain": "database", + "bullet_points": [], + "created_at": "2026-03-20" +} \ No newline at end of file diff --git a/docs/development/ai-field-architecture.md b/docs/development/ai-field-architecture.md new file mode 100644 index 0000000000..7960b72a26 --- /dev/null +++ b/docs/development/ai-field-architecture.md @@ -0,0 +1,100 @@ +# AI Field Architecture + +## Overview + +The AI field lets users generate cell values by sending prompts to LLM +providers. The architecture splits into two layers: + +- **Core layer** (`baserow.core.generative_ai`) — provider abstraction, + prompt execution, file handling contract. Provider-agnostic. +- **Premium layer** (`baserow_premium.fields`) — AI field type, handler + (orchestration), output types, job scheduling. + +## Core: GenerativeAIModelType + +Each LLM provider (OpenAI, Anthropic, Mistral, Ollama, OpenRouter) is a +`GenerativeAIModelType` subclass registered in +`generative_ai_model_type_registry`. A model type is responsible for: + +- **Configuration** — reading API keys and enabled models from workspace + settings or instance-level env vars (`get_workspace_setting`, + `get_enabled_models`). +- **Prompting** — `prompt()` is the single entry point for all AI calls. + It accepts a text prompt, optional multi-modal content, an output type + (plain text, choice list, or Pydantic model for structured output), and + returns the result. Internally it builds a pydantic-ai Agent and runs it. +- **File handling** — providers that support file input + (`supports_files = True`) override `prepare_files()` and `delete_file()`. + See [File handling](#file-handling) below. + +OpenAI-compatible providers (OpenAI, Ollama, OpenRouter) share a common base +(`BaseOpenAIGenerativeAIModelType`) for credential handling and model +instantiation. + +### Adding a new provider + +Subclass `GenerativeAIModelType`, implement `get_ai_model()` (returns a +pydantic-ai Model), `get_enabled_models()`, `is_enabled()`, and +`get_settings_serializer()`. Register it in the plugin's `ready()` hook. +Override `_prepare_model_settings()` if the provider has quirks (e.g. +Anthropic caps temperature at 1.0). If the provider supports file input, +set `supports_files = True` and override `prepare_files()` and +`delete_file()`. + +No frontend changes are needed — the UI reads the available providers and +models from the workspace settings populated by the backend's +`get_enabled_models_per_type()` API and renders them dynamically. + +## Premium: AIFieldHandler + +`AIFieldHandler` is the single entry point for AI field operations: + +- `generate_formula_with_ai()` — generates a Baserow formula from a + natural-language description (used by the formula AI modal). +- `generate_value_with_ai(ai_field, row)` — generates a single cell value. + This is the core method that orchestrates the full flow: + 1. Validates the model configuration. + 2. Resolves the prompt formula against the row context. + 3. Collects files from the row's file field (if configured). + 4. Calls `model_type.prepare_files()` then `model_type.prompt()`. + 5. Cleans up uploaded files via `model_type.cleanup_files()`. + 6. Resolves the output (choice matching if applicable). + +### Output types + +The `AIFieldOutputType` registry defines how AI responses map to cell +values. Current types: + +- `TextAIFieldOutputType` — free-form text stored as long text. +- `ChoiceAIFieldOutputType` — the prompt is constrained to a set of select + options; the model's response is fuzzy-matched to the closest option. + +## File handling + +File support follows a prepare/cleanup lifecycle using the `AIFile` +dataclass: + +1. `AIFieldHandler._collect_ai_files()` builds `AIFile` instances from the + row's file field. Each `AIFile` has metadata (`name`, `size`, + `mime_type`) and a lazy `read_content()` method. +2. `model_type.prepare_files(ai_files, workspace)` decides which files to + accept. It reads content only for accepted files, sets `ai_file.content` + (the pydantic-ai content part), and optionally `ai_file.provider_file_id` + if the file was uploaded to the provider. Returns only processed files. +3. After the prompt call, `model_type.cleanup_files(prepared, workspace)` + deletes any provider-uploaded files. + +Currently only OpenAI supports files. It embeds images as binary content +and uploads documents to the OpenAI Files API. + +## Job scheduling + +Bulk generation (entire table, filtered view, or specific rows) runs as an +async job (`GenerateAIValuesJobType`). The job uses `AIValueGenerator` +which processes rows in a thread pool, calling +`AIFieldHandler.generate_value_with_ai()` per row. + +When auto-update is enabled, changes to fields referenced in the prompt +create `AIFieldScheduledUpdate` records and schedule a per-field singleton +Celery task. The task runs synchronously (holding a lock), then checks if +new updates arrived while it was running — if so, it reschedules itself. diff --git a/docs/development/mcp-server.md b/docs/development/mcp-server.md new file mode 100644 index 0000000000..18e97b21e4 --- /dev/null +++ b/docs/development/mcp-server.md @@ -0,0 +1,105 @@ +# MCP Server + +Baserow ships a built-in [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) server that exposes database operations as tools so that AI assistants can read and write Baserow tables directly. + +## Architecture + +``` +LLM / MCP client + │ SSE (text/event-stream) + ▼ +DjangoChannelsSseServerTransport ← ASGI only + │ +BaserowMCPServer ← backend/src/baserow/core/mcp/__init__.py + │ +MCPToolRegistry ← backend/src/baserow/core/mcp/registries.py + │ +services.py ← backend/src/baserow/contrib/database/mcp/services.py + │ +ActionTypes → Django ORM +``` + +- **MCPTool** (`registries.py`) — Base class for all tools. Subclasses define a `type`, a Pydantic `input_schema`, and implement `_sync_call()`. Tools with `enabled = False` are registered but hidden from MCP clients. +- **Services layer** (`services.py`) — Workspace-scoped database operations. Shared by both MCP tools and the enterprise AI assistant. +- **Action types** — All mutations go through Baserow's action-type layer, so operations are undoable and audit-logged. +- **Workspace isolation** — Every service function enforces workspace-scoped access. Tools cannot touch data outside the endpoint's workspace. + +## Endpoint model + +An `MCPEndpoint` links a 32-character secret key to a user and workspace. The key is embedded in the SSE URL: + +``` +GET /mcp/{key}/sse +``` + +Endpoints are created via **Settings > MCP** in the Baserow UI. + +## Running the server + +The MCP server requires **ASGI mode** (Django Channels). + +```bash +# Start dependencies +just dcd up -d db redis + +# Run in dev or ASGI mode +cd backend +# dev mode +just run-dev-server +# or ASGI mode +just run-asgi +``` + +## Tools + +Some tools are currently disabled (`enabled = False`) and hidden from MCP clients. They will be enabled once users can control tool availability through the UI. + +| Tool | Status | Description | +|---|---|---| +| `list_databases` | enabled | List all databases in the workspace | +| `list_tables` | enabled | List tables, optionally filtered by database | +| `get_table_schema` | enabled | Get field definitions for one or more tables | +| `list_table_rows` | enabled | List rows with optional search and pagination | +| `create_rows` | enabled | Create one or more rows using field names | +| `update_rows` | enabled | Update rows by ID using field names | +| `delete_rows` | enabled | Delete rows by ID | +| `create_database` | disabled | Create a new database | +| `create_table` | disabled | Create a table with optional initial fields | +| `update_table` | disabled | Rename a table | +| `delete_table` | disabled | Delete (trash) a table | +| `create_fields` | disabled | Add fields to an existing table | +| `update_fields` | disabled | Update existing fields | +| `delete_fields` | disabled | Delete (trash) fields | + +### Typical LLM workflow + +``` +list_databases + └─ list_tables(database_id) + └─ get_table_schema([table_id]) ← learn field names and types + ├─ create_rows(table_id, [{Name: "Alice"}]) + ├─ update_rows(table_id, [{id: 1, Name: "Bob"}]) + └─ delete_rows(table_id, [1, 2]) +``` + +## Adding a new tool + +1. Create a class extending `MCPTool` in the appropriate `mcp/*/tools.py` file. +2. Define a Pydantic model for the input and assign it to `input_schema`. +3. Implement `_sync_call(self, endpoint, args)`. +4. Register it in `backend/src/baserow/contrib/database/apps.py`. +5. Add tests in `backend/tests/baserow/contrib/database/mcp/`. + +Set `enabled = False` on the class if the tool should not be exposed to MCP clients yet. + +## Testing + +See [docs/testing/mcp-test-plan.md](../testing/mcp-test-plan.md) for manual testing instructions. + +```bash +# All MCP tests +just b test tests/baserow/contrib/database/mcp/ + +# Service layer only +just b test tests/baserow/contrib/database/mcp/test_mcp_services.py +``` diff --git a/docs/testing/ai-field-test-plan.md b/docs/testing/ai-field-test-plan.md new file mode 100644 index 0000000000..d81cd0cc8c --- /dev/null +++ b/docs/testing/ai-field-test-plan.md @@ -0,0 +1,149 @@ +# AI Field Test Plan + +## Prerequisites + +### 1. Instance-level configuration (env vars) + +Configure at least one AI provider using the env vars documented in the +[Generative AI configuration](../installation/configuration.md#generative-ai-configuration) +section of `configuration.md`. + +Verify: after setting env vars and restarting, the configured providers and models +appear in the AI field creation form. + +### 2. Workspace-level configuration + +1. Go to workspace **Settings → AI models** +2. Add an API key and select models for at least one provider +3. Verify: the workspace-level models appear in the AI field form for that + workspace +4. Verify: workspace keys override instance keys — if instance has provider X + configured and workspace also sets provider X with different models, only the + workspace models appear +5. Verify: a provider configured only at instance level (no workspace override) + still appears and works + +### 3. Licensing + +The AI field requires a **Premium** license. Verify: + +- Without Premium: AI field type is not available in the field creation dropdown +- Without Premium: the generate button shows a Premium upgrade modal +- With Premium: field creation and generation work normally +- If a user who enabled auto-update loses Premium, auto-update stops for their + fields + +## Field creation + +### 4. Basic creation + +1. Create a table with a **Name** (text) column and a few rows +2. Add an AI field — the form should show: + - AI provider + model selector (only configured providers) + - Temperature input + - File field selector (only if the selected provider supports files) + - Output type selector (Text / Choice) + - Auto-update checkbox + - Prompt input (formula-enabled, can reference other fields) +3. Set provider, model, and prompt (e.g. `Summarize: {Name}`) +4. Save → field is created, cells are empty + +### 5. Output types + +**Text output:** +- Create an AI field with output type **Text** +- Generate values → cells contain free-form text + +**Choice output:** +- Create an AI field with output type **Choice** +- Configure select options (e.g. Positive, Negative, Neutral) +- Generate values → each cell contains one of the defined options +- Verify: the AI response is fuzzy-matched to the closest option (e.g. model + returns "positive" → maps to "Positive") + +### 6. File field support + +1. Create a **File** field and upload a mix of images (.png, .jpg) and documents + (.pdf, .csv, .docx) +2. Create an AI field using **OpenAI** as the provider +3. Verify: the file field selector is visible and lists file fields +4. Select the file field and set a prompt (e.g. `Describe the contents of the file`) +5. Generate → the model processes the file content +6. Switch the provider to **Anthropic** or **Mistral** → verify the file field + selector disappears (these providers don't support files) +7. Verify: saving an AI field with a file field and a non-file-supporting + provider is rejected + +**File type constraints (OpenAI):** +- Images (embedded): `.gif, .jpg, .jpeg, .png, .webp` (max ~45 MB total) +- Documents (uploaded): `.csv, .doc, .docx, .html, .json, .md, .pdf, .pptx, .txt, .tex, .xlsx, .xls` (max 512 MB, configurable via `BASEROW_OPENAI_UPLOADED_FILE_SIZE_LIMIT_MB`) + +## Value generation + +### 7. Single cell generation + +1. Click an empty AI field cell → a **Generate** button appears +2. Click Generate → value is produced for that row only +3. On a populated cell, click to edit → a **Regenerate** button appears +4. Click Regenerate → value is replaced + +### 8. Bulk generation + +1. Right-click the AI field header → **Generate values** +2. In the dialog: + - **Scope**: choose "Entire table" or a specific view (filters apply) + - **Skip populated**: checkbox to only fill empty cells +3. Submit → an async job starts (HTTP 202) +4. Verify: progress indicator appears; values populate as the job runs +5. Verify with a filtered view: only rows matching the view's filters are + generated + +### 9. Regeneration + +- Single cell: click the cell → Regenerate button (visible when cell is not empty) +- Bulk: use "Generate values" dialog without "Skip populated" → all cells are + regenerated +- Verify: regeneration replaces existing values, not appends + +## Auto-update + +### 10. Auto-update behavior + +1. Create an AI field with a prompt referencing another field (e.g. `Categorize: {Status}`) +2. Enable **Auto-update** and save +3. Change the value of the referenced field in a row +4. Wait ~3 seconds (debounce: `BASEROW_AI_FIELD_AUTO_UPDATE_DEBOUNCE_TIME`, + default 3s) +5. Verify: the AI field value for that row is automatically regenerated +6. Rapidly change the referenced field multiple times → verify only one + generation runs after the debounce settles +7. Disable auto-update → changes to referenced fields no longer trigger + regeneration + +## Error handling + +### 11. Configuration errors + +- Set an invalid API key at workspace level → generate → should show a clear + error (not a stack trace) +- Select a model that doesn't exist for the provider → generation fails + gracefully +- Use a file field with a provider that doesn't support files → rejected at save + time + +### 12. Generation errors + +- If the AI model returns an unparseable response for a choice field → the cell + remains empty, no crash +- Network timeout or provider outage → error shown, other rows continue + generating + +## Concurrency limits + +### 13. Job limits + +- Start a bulk generation on a field → try starting another on the same field → + should be rejected (1 job per field) +- Start 3 generation jobs (different fields) → try a 4th → should be rejected + (max 3 concurrent per user) +- Single-cell (row-specific) generation bypasses the per-field limit diff --git a/docs/testing/mcp-test-plan.md b/docs/testing/mcp-test-plan.md new file mode 100644 index 0000000000..5e11d8d9cc --- /dev/null +++ b/docs/testing/mcp-test-plan.md @@ -0,0 +1,107 @@ +# MCP Manual Test Plan + +## Prerequisites + +- A running Baserow instance (local dev or deployed) +- An MCP endpoint key (created via Settings > MCP in the Baserow UI) +- An MCP-compatible client (see step 1) + +## 1. Connect an MCP client + +Go to **Settings > MCP** in Baserow and create an endpoint. The UI shows the +SSE URL with the key pre-filled: + +``` +http://localhost:8000/mcp/YOUR_ENDPOINT_KEY/sse +``` + +How you use this URL depends on your MCP client: + +- **MCP Inspector** (recommended for quick testing, no install needed): + ```bash + npx @modelcontextprotocol/inspector + ``` + Paste the SSE URL in the Inspector UI to list and call tools interactively. + +- **Claude Desktop**: + 1. Open Claude Desktop settings (`Cmd+,` on macOS, `Ctrl+,` on Windows/Linux). + 2. Go to the **Develop** tab and click **Edit Config**. + 3. Paste the JSON config snippet shown in the Baserow UI into + `claude_desktop_config.json` and save. + 4. Restart Claude Desktop. + +- **Any other MCP client**: point it at the SSE URL above. + +## 2. Verify connection + +After connecting, your client should list the available Baserow tools. In +Claude Desktop this appears as a hammer icon in the input bar. In MCP +Inspector, tools appear in the left panel after connecting. + +## 3. Available tools + +The following tools are currently enabled: + +| Tool | Description | +|---|---| +| `list_databases` | List all databases in the workspace | +| `list_tables` | List tables, optionally filtered by database | +| `get_table_schema` | Get field names and types for one or more tables | +| `list_table_rows` | List rows with optional search and pagination | +| `create_rows` | Create one or more rows in a table | +| `update_rows` | Update existing rows by ID | +| `delete_rows` | Delete rows by ID | + +## 4. Test scenarios + +### List databases and tables + +Ask Claude: *"What databases do I have in Baserow?"* + +Expected: Claude calls `list_databases`, then `list_tables`, and returns the +names and IDs. + +### Read table schema + +Ask Claude: *"What fields does the [table name] table have?"* + +Expected: Claude calls `list_tables` to find the ID, then `get_table_schema`, +and describes the fields. + +### Create rows + +Ask Claude: *"Add a row to [table name] with Name set to 'Test' and Status set +to 'Active'"* + +Expected: Claude calls `get_table_schema` to learn the field names, then +`create_rows` with the correct payload. + +### Update rows + +Ask Claude: *"Change the Status of row 1 in [table name] to 'Done'"* + +Expected: Claude calls `update_rows` with the row ID and new field value. + +### Delete rows + +Ask Claude: *"Delete row 1 from [table name]"* + +Expected: Claude calls `delete_rows` and confirms deletion. + +### Search + +Ask Claude: *"Find rows in [table name] that contain 'test'"* + +Expected: Claude calls `list_table_rows` with a `search` parameter. + +## 5. Verify disabled tools are not exposed + +The following tools exist in the codebase but are **not** exposed to MCP +clients (they will be enabled once users can control tool availability through +the UI): + +- `create_database` +- `create_table`, `update_table`, `delete_table` +- `create_fields`, `update_fields`, `delete_fields` + +Verify these do **not** appear in your client's tool list. diff --git a/enterprise/backend/src/baserow_enterprise/assistant/tools/builder/themes.py b/enterprise/backend/src/baserow_enterprise/assistant/tools/builder/themes.py new file mode 100644 index 0000000000..8d82a884a1 --- /dev/null +++ b/enterprise/backend/src/baserow_enterprise/assistant/tools/builder/themes.py @@ -0,0 +1,95 @@ +import json +import os +from functools import lru_cache +from typing import Literal + +from django.contrib.auth.models import AbstractUser + +from loguru import logger + +from baserow.contrib.builder.theme.service import ThemeService + +# --------------------------------------------------------------------------- +# Theme catalog +# --------------------------------------------------------------------------- + +THEME_CATALOG: dict[str, str] = { + "baserow": "Clean, modern light theme with blue accents. Good default for most apps.", + "eclipse": "Dark, high-contrast theme. Best for dashboards, analytics, or developer tools.", + "ivory": "Warm, soft light theme with neutral tones. Suits blogs, portfolios, and creative apps.", + "ocean": "Deep sea blues, clean and professional. Good for corporate portals, logistics dashboards.", + "forest": "Deep greens and warm wood tones. Good for sustainability, outdoor brands, wellness.", + "sunset": "Warm oranges and purples. Good for creative agencies, media, entertainment.", + "slate": "Ultra-clean monochrome grayscale. Good for developer tools, documentation, admin panels.", + "neon": "Dark background with vivid neon accents. Good for gaming, tech startups, dashboards.", + "terracotta": "Mediterranean warmth. Good for architecture, real estate, interior design, restaurants.", + "lavender": "Gentle, calming purple tones. Good for health/wellness, beauty, education, SaaS.", + "coral": "Vibrant and energetic. Good for travel, hospitality, food & beverage, lifestyle brands.", + "midnight": "Elegant dark mode with warm gold accents. Good for finance, luxury, executive dashboards.", + "mint": "Light and airy with fresh mint green. Good for fintech, health apps, clean dashboards.", + "corporate": "Navy and steel, sharp and professional. Good for enterprise portals, B2B platforms.", + "finance": "Deep green and gold, trustworthy and conservative. Good for banking, investment, insurance.", + "tech": "Modern indigo and cyan. Good for SaaS products, developer platforms, tech companies.", + "luxury": "Dark with champagne gold accents and serif headings. Good for premium brands, high-end services.", + "healthcare": "Calming cyan and teal. Good for medical portals, health apps, wellness platforms.", + "education": "Warm blue with orange accents. Good for schools, e-learning, training platforms.", + "legal": "Dark navy with serif headings. Good for law firms, consulting, professional services.", + "startup": "Bold violet with pill-shaped buttons. Good for modern startups, product launches.", + "agency": "Dark with sharp red accents and zero border radius. Good for creative studios, design agencies.", + "realestate": "Warm brown with serif headings. Good for property listings, architecture, interior design.", +} + +ThemeName = Literal[tuple(THEME_CATALOG.keys())] + + +@lru_cache(maxsize=len(THEME_CATALOG)) +def _load_theme_data(theme_name: str) -> dict | None: + """ + Load theme properties from a template JSON file. Cached per theme. + + :param theme_name: The name of the theme to load (must be a key in + THEME_CATALOG). + :return: A dictionary of theme properties if successful, or None if the + theme is not found or invalid. + """ + + if theme_name not in THEME_CATALOG: + return None + + from django.conf import settings + + filename = f"ab_{theme_name}_theme.json" + path = os.path.join(settings.APPLICATION_TEMPLATES_DIR, filename) + try: + with open(path) as f: + template = json.load(f) + except (FileNotFoundError, json.JSONDecodeError): + logger.warning( + "[assistant] Theme template '{}' not found at {}", filename, path + ) + return None + + for app in template.get("export", []): + if app.get("type") == "builder" and "theme" in app: + return app["theme"] + + return None + + +def apply_theme(builder, theme_name: str, user: AbstractUser) -> bool: + """ + Apply a predefined theme to a builder application. + + :param builder: The builder application instance to update. + :param theme_name: The name of the theme to apply (must be a key in + THEME_CATALOG). + :param user: The user performing the action (for permissions/auditing). + + :return: True if the theme was successfully applied, False otherwise. + """ + + theme_data = _load_theme_data(theme_name) + if theme_data: + ThemeService().update_theme(user, builder, **theme_data) + + return theme_data diff --git a/enterprise/backend/src/baserow_enterprise/assistant/tools/builder/tools.py b/enterprise/backend/src/baserow_enterprise/assistant/tools/builder/tools.py index 162c2f02c6..394a2b295d 100644 --- a/enterprise/backend/src/baserow_enterprise/assistant/tools/builder/tools.py +++ b/enterprise/backend/src/baserow_enterprise/assistant/tools/builder/tools.py @@ -16,6 +16,11 @@ from baserow.contrib.builder.pages.handler import PageHandler from baserow_enterprise.assistant.deps import AssistantDeps +from baserow_enterprise.assistant.tools.builder.themes import ( + THEME_CATALOG, + ThemeName, + apply_theme, +) from baserow_enterprise.assistant.types import BuilderPageNavigationType from . import agents, helpers @@ -1487,6 +1492,66 @@ def setup_user_source( return result +# --------------------------------------------------------------------------- +# Theme tools +# --------------------------------------------------------------------------- + + +def set_theme( + ctx: RunContext[AssistantDeps], + application_id: Annotated[int, Field(description="The builder application ID.")], + theme_name: Annotated[ThemeName, Field(description="Theme name to apply.")], + thought: Annotated[ + str, Field(description="Brief reasoning for calling this tool.") + ], +) -> dict[str, Any]: + """\ + Change the theme of a builder application. + + WHEN to use: User wants to change the look and feel of an existing application. + WHAT it does: Applies a predefined theme (colors, typography, button styles, etc.) to the application. + RETURNS: Confirmation with applied theme name. + DO NOT USE when: Creating a new application — use the theme parameter on create_builders instead. + + ## Available Themes + {theme_list} + """ + + user = ctx.deps.user + workspace = ctx.deps.workspace + tool_helpers = ctx.deps.tool_helpers + + builder = helpers.get_builder(user, workspace, application_id) + tool_helpers.update_status( + _("Applying %(theme)s theme to %(app)s...") + % {"theme": theme_name, "app": builder.name} + ) + + applied = apply_theme(builder, theme_name, user=user) + + if not applied: + return { + "status": "error", + "application_id": application_id, + "theme": theme_name, + "error": f"Theme template '{theme_name}' could not be loaded.", + } + + return { + "status": "ok", + "application_id": application_id, + "theme": theme_name, + "description": THEME_CATALOG.get(theme_name, ""), + } + + +set_theme.__doc__ = set_theme.__doc__.format( + theme_list="\n ".join( + f"- {name}: {desc}" for name, desc in THEME_CATALOG.items() + ) +) + + # --------------------------------------------------------------------------- # Exports # --------------------------------------------------------------------------- @@ -1511,6 +1576,7 @@ def setup_user_source( add_action_field_mapping, setup_page, setup_user_source, + set_theme, ] builder_toolset = FunctionToolset(TOOL_FUNCTIONS, max_retries=3) diff --git a/enterprise/backend/src/baserow_enterprise/assistant/tools/core/tools.py b/enterprise/backend/src/baserow_enterprise/assistant/tools/core/tools.py index 4a3a68bf6c..2b696d958b 100644 --- a/enterprise/backend/src/baserow_enterprise/assistant/tools/core/tools.py +++ b/enterprise/backend/src/baserow_enterprise/assistant/tools/core/tools.py @@ -101,6 +101,7 @@ def create_builders( RETURNS: List of created builders with id, name, type. DO NOT USE when: A builder with that name may already exist — check with list_builders first. HOW: Pick a unique, descriptive name. Check existing builders with list_builders to avoid duplicates. + THEME (applications only): Pick a theme matching the app purpose — baserow (clean light, default), eclipse (dark, dashboards/analytics), ivory (warm light, blogs/portfolios). """ user = ctx.deps.user diff --git a/enterprise/backend/src/baserow_enterprise/assistant/tools/core/types.py b/enterprise/backend/src/baserow_enterprise/assistant/tools/core/types.py index c3a58ea951..80eb74d58f 100644 --- a/enterprise/backend/src/baserow_enterprise/assistant/tools/core/types.py +++ b/enterprise/backend/src/baserow_enterprise/assistant/tools/core/types.py @@ -14,6 +14,10 @@ class BuilderItemCreate(BaseModel): name: str = Field(...) type: Literal["database", "application", "automation", "dashboard"] = Field(...) + theme: str | None = Field( + default=None, + description="Theme to apply (applications only).", + ) def get_orm_type(self) -> str: """Returns the corresponding ORM type for the builder.""" @@ -83,6 +87,9 @@ def _post_creation_hook(self, user, builder_orm_instance): builder_orm_instance, name="Local Baserow", ) + from baserow_enterprise.assistant.tools.builder.themes import apply_theme + + apply_theme(builder_orm_instance, self.theme or "baserow", user=user) class ApplicationItem(ApplicationItemCreate): diff --git a/enterprise/backend/src/baserow_enterprise/assistant/tools/database/helpers.py b/enterprise/backend/src/baserow_enterprise/assistant/tools/database/helpers.py index 1ff487349d..e1aa611e40 100644 --- a/enterprise/backend/src/baserow_enterprise/assistant/tools/database/helpers.py +++ b/enterprise/backend/src/baserow_enterprise/assistant/tools/database/helpers.py @@ -1,15 +1,8 @@ -""" -Shared helpers for the database assistant tools. - -Contains query helpers, schema builders, and action orchestration used by -``tools.py`` and ``agents.py``. -""" - from itertools import groupby from typing import TYPE_CHECKING, Any, Callable from django.contrib.auth.models import AbstractUser -from django.db.models import Q, QuerySet +from django.db.models import Q from django.utils.translation import gettext as _ from baserow.contrib.database.fields.actions import ( @@ -20,7 +13,7 @@ from baserow.contrib.database.fields.handler import FieldHandler from baserow.contrib.database.fields.models import Field from baserow.contrib.database.fields.registries import field_type_registry -from baserow.contrib.database.table.handler import TableHandler +from baserow.contrib.database.mcp.services import filter_tables from baserow.contrib.database.table.models import Table from baserow.contrib.database.views.actions import CreateViewFilterActionType from baserow.contrib.database.views.handler import ViewHandler @@ -41,12 +34,6 @@ from baserow_enterprise.assistant.deps import ToolHelpers -def filter_tables(user: AbstractUser, workspace: Workspace) -> QuerySet[Table]: - """Return all tables visible to the user in the given workspace.""" - - return TableHandler().list_workspace_tables(user, workspace) - - def get_table(user: AbstractUser, workspace: Workspace, table_id: int) -> Table: """Get a single table by ID, raising ToolInputError if not found.""" diff --git a/enterprise/backend/src/baserow_enterprise/assistant/tools/search_user_docs/handler.py b/enterprise/backend/src/baserow_enterprise/assistant/tools/search_user_docs/handler.py index 6ad53bd1db..f248d3f311 100644 --- a/enterprise/backend/src/baserow_enterprise/assistant/tools/search_user_docs/handler.py +++ b/enterprise/backend/src/baserow_enterprise/assistant/tools/search_user_docs/handler.py @@ -85,7 +85,6 @@ def embed_texts(self, texts: list[str]) -> list[list[float]]: return [] embedder = self.embedder - # Support both embedders as callables and LangChain-style embedders if callable(embedder): return embedder(texts) else: diff --git a/enterprise/backend/tests/baserow_enterprise_tests/assistant/evals/test_eval_builder.py b/enterprise/backend/tests/baserow_enterprise_tests/assistant/evals/test_eval_builder.py index 9e4bf0bdc9..55183c6cd4 100644 --- a/enterprise/backend/tests/baserow_enterprise_tests/assistant/evals/test_eval_builder.py +++ b/enterprise/backend/tests/baserow_enterprise_tests/assistant/evals/test_eval_builder.py @@ -8,6 +8,7 @@ MenuItemElement, ) from baserow.contrib.builder.pages.models import Page +from baserow.contrib.builder.theme.models import ColorThemeConfigBlock from baserow.contrib.builder.workflow_actions.models import BuilderWorkflowAction from baserow_enterprise.assistant.types import ( ApplicationUIContext, @@ -103,6 +104,11 @@ def build_builder_ui_context(user, workspace, builder, page=None) -> str: "'{table_name}' table in a table element with columns for Name and Status." ) +PROMPT_CREATE_APP_WITH_DARK_THEME = ( + "Create a new application called 'Dashboard' with the eclipse theme." +) + +PROMPT_CHANGE_THEME = "Change the theme of builder '{builder_name}' to midnight." # --------------------------------------------------------------------------- # Helpers @@ -826,6 +832,133 @@ def test_agent_creates_page_specific_nav_on_page(data_fixture, eval_model): ) +# --------------------------------------------------------------------------- +# Theme evals +# --------------------------------------------------------------------------- + + +def _get_theme_primary_color(builder) -> str: + """Return the current primary_color for a builder, refreshed from DB.""" + + builder.refresh_from_db() + try: + return builder.colorthemeconfigblock.primary_color + except ColorThemeConfigBlock.DoesNotExist: + return "" + + +@pytest.mark.eval +@pytest.mark.django_db(transaction=True) +def test_agent_creates_app_with_theme(data_fixture, eval_model): + """Agent should create an application and apply the requested theme.""" + + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + + agent, deps, _, model, usage_limits, toolset = create_eval_assistant( + user, workspace, max_iters=15, model=eval_model + ) + ui_context = UIContext( + workspace=WorkspaceUIContext(id=workspace.id, name=workspace.name), + user=UserUIContext(id=user.id, name=user.first_name, email=user.email), + ).format() + deps.tool_helpers.request_context["ui_context"] = ui_context + + result = agent.run_sync( + user_prompt=PROMPT_CREATE_APP_WITH_DARK_THEME, + deps=deps, + model=model, + usage_limits=usage_limits, + toolsets=[toolset], + ) + + print_message_history(result) + err_count, err_hint = count_tool_errors(result) + + from baserow.contrib.builder.models import Builder + + builders = Builder.objects.filter(workspace=workspace, name__icontains="Dashboard") + builder = builders.first() + primary_color = _get_theme_primary_color(builder) if builder else "" + default_color = "#5190efff" + + with EvalChecklist("creates app with theme") as checks: + checks.check("no tool errors", err_count == 0, hint=err_hint) + checks.check( + "called create_builders", + len(_filter_tool_calls(result, "create_builders")) >= 1, + hint=f"tools: {[e.get('tool_name') for e in format_message_history(result) if e.get('tool_name')]}", + ) + checks.check( + "builder 'Dashboard' created", + builders.exists(), + hint="no builder named 'Dashboard' found", + ) + checks.check( + "eclipse theme applied (color differs from default)", + primary_color != default_color, + hint=f"primary_color={primary_color}, default={default_color}", + ) + + +@pytest.mark.eval +@pytest.mark.django_db(transaction=True) +def test_agent_changes_theme(data_fixture, eval_model): + """Agent should change the theme of an existing application.""" + + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + builder = data_fixture.create_builder_application( + user=user, workspace=workspace, name="My App" + ) + + # Record the initial primary color + initial_color = _get_theme_primary_color(builder) + + agent, deps, _, model, usage_limits, toolset = create_eval_assistant( + user, workspace, max_iters=15, model=eval_model + ) + ui_context = build_builder_ui_context(user, workspace, builder) + + result = _run_agent( + agent, + deps, + _, + model, + usage_limits, + toolset, + question=PROMPT_CHANGE_THEME.format(builder_name=builder.name), + ui_context=ui_context, + ) + + print_message_history(result) + err_count, err_hint = count_tool_errors(result) + + set_theme_calls = _filter_tool_calls(result, "set_theme") + theme_arg = ( + set_theme_calls[0]["args"].get("theme_name") if set_theme_calls else None + ) + new_color = _get_theme_primary_color(builder) + + with EvalChecklist("changes theme") as checks: + checks.check("no tool errors", err_count == 0, hint=err_hint) + checks.check( + "called set_theme", + len(set_theme_calls) >= 1, + hint=f"tools: {[e.get('tool_name') for e in format_message_history(result) if e.get('tool_name')]}", + ) + checks.check( + "theme_name is 'midnight'", + theme_arg == "midnight", + hint=f"got theme_name='{theme_arg}'", + ) + checks.check( + "theme color changed", + new_color != initial_color, + hint=f"color still '{initial_color}' after set_theme", + ) + + # --------------------------------------------------------------------------- # Table element with edit button eval # --------------------------------------------------------------------------- diff --git a/enterprise/backend/tests/baserow_enterprise_tests/assistant/evals/test_eval_search_user_docs.py b/enterprise/backend/tests/baserow_enterprise_tests/assistant/evals/test_eval_search_user_docs.py index 2aa153e221..b3b7f7831e 100644 --- a/enterprise/backend/tests/baserow_enterprise_tests/assistant/evals/test_eval_search_user_docs.py +++ b/enterprise/backend/tests/baserow_enterprise_tests/assistant/evals/test_eval_search_user_docs.py @@ -269,6 +269,11 @@ def test_search_user_docs( len(search_calls) >= 1, hint=f"tools called: {[e.get('tool_name') for e in history if e.get('tool_name')]}", ) + checks.check( + f"returned at least one source URL for user docs", + len(sources) >= 1, + hint=f"tools called: {[e.get('tool_name') for e in history if e.get('tool_name')]}", + ) checks.check( f"answer mentions one of {expected_keywords}", keyword_match, diff --git a/enterprise/backend/tests/baserow_enterprise_tests/assistant/test_assistant_builder_tools.py b/enterprise/backend/tests/baserow_enterprise_tests/assistant/test_assistant_builder_tools.py index 0e227cf7e8..77f64f8620 100644 --- a/enterprise/backend/tests/baserow_enterprise_tests/assistant/test_assistant_builder_tools.py +++ b/enterprise/backend/tests/baserow_enterprise_tests/assistant/test_assistant_builder_tools.py @@ -19,6 +19,7 @@ list_data_sources, list_elements, list_pages, + set_theme, update_data_source, update_element, update_element_style, @@ -814,6 +815,65 @@ def test_element_ref_tracking_across_calls(data_fixture): assert len(result["created_actions"]) == 1 +# =========================================================================== +# Theme tests +# =========================================================================== + + +@pytest.mark.django_db +def test_set_theme(data_fixture, monkeypatch): + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + builder = data_fixture.create_builder_application(user=user, workspace=workspace) + ctx = make_test_ctx(user, workspace) + + applied = {} + + def fake_apply_theme(builder_instance, theme_name, user=None): + applied["builder"] = builder_instance + applied["theme"] = theme_name + applied["user"] = user + return True + + monkeypatch.setattr( + "baserow_enterprise.assistant.tools.builder.tools.apply_theme", + fake_apply_theme, + ) + + result = set_theme( + ctx, + application_id=builder.id, + theme_name="eclipse", + thought="test", + ) + + assert result["status"] == "ok" + assert result["application_id"] == builder.id + assert result["theme"] == "eclipse" + assert applied["theme"] == "eclipse" + assert applied["builder"].id == builder.id + + +@pytest.mark.django_db +def test_apply_theme_function(data_fixture): + """apply_theme should update theme properties on an existing builder.""" + + from baserow_enterprise.assistant.tools.builder.themes import apply_theme + + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + builder = data_fixture.create_builder_application(user=user, workspace=workspace) + + # Before: default color + original_color = builder.colorthemeconfigblock.primary_color + + applied = apply_theme(builder, "lavender", user) + assert applied is not None + + builder.colorthemeconfigblock.refresh_from_db() + assert builder.colorthemeconfigblock.primary_color != original_color + + # =========================================================================== # Element update tests # =========================================================================== diff --git a/enterprise/backend/tests/baserow_enterprise_tests/assistant/test_assistant_core_tools.py b/enterprise/backend/tests/baserow_enterprise_tests/assistant/test_assistant_core_tools.py index 3054689274..49c3a9cc84 100644 --- a/enterprise/backend/tests/baserow_enterprise_tests/assistant/test_assistant_core_tools.py +++ b/enterprise/backend/tests/baserow_enterprise_tests/assistant/test_assistant_core_tools.py @@ -101,6 +101,50 @@ def test_create_builders_multiple(data_fixture): assert "DB Two" in names +@pytest.mark.django_db +def test_create_application_applies_default_theme(data_fixture): + """Creating an application should apply the default 'baserow' theme.""" + + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + + ctx = make_test_ctx(user, workspace) + builders = [BuilderItemCreate(name="My App", type="application")] + result = create_builders(ctx, builders=builders, thought="create app") + + assert len(result["created_builders"]) == 1 + app_id = result["created_builders"][0]["id"] + + from baserow.contrib.builder.models import Builder + + builder = Builder.objects.get(id=app_id) + # Baserow theme has primary_color="#4e5cfe" + assert builder.colorthemeconfigblock.primary_color == "#4e5cfe" + + +@pytest.mark.django_db +def test_create_application_applies_eclipse_theme(data_fixture): + """Creating an application with theme='eclipse' should apply the dark theme.""" + + user = data_fixture.create_user() + workspace = data_fixture.create_workspace(user=user) + + ctx = make_test_ctx(user, workspace) + builders = [ + BuilderItemCreate(name="Dashboard", type="application", theme="eclipse") + ] + result = create_builders(ctx, builders=builders, thought="create dark app") + + assert len(result["created_builders"]) == 1 + app_id = result["created_builders"][0]["id"] + + from baserow.contrib.builder.models import Builder + + builder = Builder.objects.get(id=app_id) + # Eclipse theme should have different colors from baserow + assert builder.colorthemeconfigblock.primary_color != "#4e5cfe" + + @pytest.mark.django_db def test_create_database_ignores_theme(data_fixture): """Creating a database should not fail even though databases have no theme.""" diff --git a/premium/backend/src/baserow_premium/api/fields/views.py b/premium/backend/src/baserow_premium/api/fields/views.py index 06d246ac2b..6e19d495c9 100644 --- a/premium/backend/src/baserow_premium/api/fields/views.py +++ b/premium/backend/src/baserow_premium/api/fields/views.py @@ -14,7 +14,6 @@ ERROR_GENERATIVE_AI_DOES_NOT_EXIST, ERROR_GENERATIVE_AI_PROMPT, ERROR_MODEL_DOES_NOT_BELONG_TO_TYPE, - ERROR_OUTPUT_PARSER, ) from baserow.api.jobs.serializers import JobSerializer from baserow.api.schemas import ( @@ -44,7 +43,6 @@ from baserow.core.jobs.handler import JobHandler from baserow.core.jobs.registries import job_type_registry from baserow_premium.fields.actions import GenerateFormulaWithAIActionType -from baserow_premium.fields.exceptions import AiFieldOutputParserException from baserow_premium.fields.job_types import GenerateAIValuesJobType from baserow_premium.fields.models import AIField from baserow_premium.license.features import PREMIUM @@ -167,7 +165,6 @@ class GenerateFormulaWithAIView(APIView): [ "ERROR_GENERATIVE_AI_DOES_NOT_EXIST", "ERROR_MODEL_DOES_NOT_BELONG_TO_TYPE", - "ERROR_OUTPUT_PARSER", "ERROR_GENERATIVE_AI_PROMPT", "ERROR_USER_NOT_IN_GROUP", ] @@ -187,7 +184,6 @@ class GenerateFormulaWithAIView(APIView): ModelDoesNotBelongToType: ERROR_MODEL_DOES_NOT_BELONG_TO_TYPE, TableDoesNotExist: ERROR_TABLE_DOES_NOT_EXIST, GenerativeAIPromptError: ERROR_GENERATIVE_AI_PROMPT, - AiFieldOutputParserException: ERROR_OUTPUT_PARSER, } ) @validate_body(GenerateFormulaWithAIRequestSerializer) diff --git a/premium/backend/src/baserow_premium/fields/ai_field_output_types.py b/premium/backend/src/baserow_premium/fields/ai_field_output_types.py index d281e6872a..bfe7de4ca8 100644 --- a/premium/backend/src/baserow_premium/fields/ai_field_output_types.py +++ b/premium/backend/src/baserow_premium/fields/ai_field_output_types.py @@ -1,10 +1,7 @@ -import enum - from baserow.contrib.database.fields.field_types import ( LongTextFieldType, SingleSelectFieldType, ) -from baserow.core.output_parsers import get_strict_enum_output_parser from .registries import AIFieldOutputType @@ -18,48 +15,22 @@ class ChoiceAIFieldOutputType(AIFieldOutputType): type = "choice" baserow_field_type = SingleSelectFieldType - def get_output_parser(self, ai_field): - choices = enum.Enum( - "Choices", - { - f"OPTION_{option.id}": option.value - for option in ai_field.select_options.all() - }, - ) - return get_strict_enum_output_parser(enum=choices) - - def format_prompt(self, prompt, ai_field): - from langchain_core.prompts import PromptTemplate - - output_parser = self.get_output_parser(ai_field) - format_instructions = output_parser.get_format_instructions() - prompt = PromptTemplate( - template=prompt + "Given this user query: \n\n{format_instructions}", - input_variables=[], - partial_variables={"format_instructions": format_instructions}, - ) - message = prompt.format() - return message - - def parse_output(self, output, ai_field): - from langchain_core.exceptions import OutputParserException - - if not output: - return None + def _find_select_option_by_value(self, value, ai_field): + """Find the SelectOption whose value matches the given string.""" - output_parser = self.get_output_parser(ai_field) try: - parsed_output = output_parser.parse(output) - except OutputParserException: - return None - select_option_id = int(parsed_output.name.split("_")[1]) - try: - return next( - o for o in ai_field.select_options.all() if o.id == select_option_id - ) + return next(o for o in ai_field.select_options.all() if o.value == value) except StopIteration: return None + def get_choices(self, ai_field): + return [o.value for o in ai_field.select_options.all()] + + def resolve_choice(self, value, ai_field): + if value is None: + return None + return self._find_select_option_by_value(value, ai_field) + def prepare_data_sync_value(self, value, field, metadata): try: # The metadata contains a mapping of the select options where the key is the diff --git a/premium/backend/src/baserow_premium/fields/ai_file.py b/premium/backend/src/baserow_premium/fields/ai_file.py new file mode 100644 index 0000000000..1f7b1bf246 --- /dev/null +++ b/premium/backend/src/baserow_premium/fields/ai_file.py @@ -0,0 +1,41 @@ +from __future__ import annotations + +from dataclasses import dataclass, field +from typing import TYPE_CHECKING, Optional + +from baserow.core.storage import get_default_storage +from baserow.core.user_files.handler import UserFileHandler + +if TYPE_CHECKING: + from pydantic_ai.messages import UserContent + + +@dataclass +class AIFile: + """ + Lightweight wrapper around a serialized UserFile dict from a file field + cell. Provides lazy file reading via :meth:`read_content`. + + After :meth:`GenerativeAIModelType.prepare_files`, accepted files have + ``content`` set (the pydantic-ai content part for the prompt) and + optionally ``provider_file_id`` (if the file was uploaded to the + provider and needs cleanup). + """ + + name: str + original_name: str + size: int + mime_type: str + + # Set by model_type.prepare_files(): + content: Optional[UserContent] = field(default=None, repr=False) + provider_file_id: Optional[str] = None + + @property + def file_path(self) -> str: + return UserFileHandler().user_file_path(self.name) + + def read_content(self) -> bytes: + storage = get_default_storage() + with storage.open(self.file_path, mode="rb") as f: + return f.read() diff --git a/premium/backend/src/baserow_premium/fields/exceptions.py b/premium/backend/src/baserow_premium/fields/exceptions.py index 8c8e923b31..5748feec7f 100644 --- a/premium/backend/src/baserow_premium/fields/exceptions.py +++ b/premium/backend/src/baserow_premium/fields/exceptions.py @@ -5,7 +5,8 @@ class GenerativeAITypeDoesNotSupportFileField(Exception): """ -class AiFieldOutputParserException(Exception): +class AIFieldEmptyPromptError(Exception): """ - Raised when the output from the AI model could not be parsed correctly. + Raised when the resolved prompt for an AI field is empty, meaning there + is nothing to send to the model. """ diff --git a/premium/backend/src/baserow_premium/fields/field_types.py b/premium/backend/src/baserow_premium/fields/field_types.py index 028121ec94..1a3ea50dae 100644 --- a/premium/backend/src/baserow_premium/fields/field_types.py +++ b/premium/backend/src/baserow_premium/fields/field_types.py @@ -34,10 +34,7 @@ GenerativeAITypeDoesNotExist, ModelDoesNotBelongToType, ) -from baserow.core.generative_ai.registries import ( - GenerativeAIWithFilesModelType, - generative_ai_model_type_registry, -) +from baserow.core.generative_ai.registries import generative_ai_model_type_registry from baserow_premium.api.fields.exceptions import ( ERROR_GENERATIVE_AI_DOES_NOT_SUPPORT_FILE_FIELD, ) @@ -342,9 +339,7 @@ def _validate_field_kwargs( models = ai_type.get_enabled_models(workspace=workspace) if model_type not in models: raise ModelDoesNotBelongToType(model_name=model_type) - if ai_file_field_id is not None and not isinstance( - ai_type, GenerativeAIWithFilesModelType - ): + if ai_file_field_id is not None and not ai_type.supports_files: raise GenerativeAITypeDoesNotSupportFileField() def get_field_dependencies( diff --git a/premium/backend/src/baserow_premium/fields/handler.py b/premium/backend/src/baserow_premium/fields/handler.py index 54091fce5d..d0efd10dc3 100644 --- a/premium/backend/src/baserow_premium/fields/handler.py +++ b/premium/backend/src/baserow_premium/fields/handler.py @@ -1,18 +1,53 @@ +from __future__ import annotations + import json -from typing import Optional +import mimetypes +from typing import TYPE_CHECKING, Any, Optional from baserow.contrib.database.fields.registries import field_type_registry +from baserow.contrib.database.rows.runtime_formula_contexts import ( + HumanReadableRowContext, +) from baserow.contrib.database.table.models import Table from baserow.core.db import specific_iterator +from baserow.core.formula import resolve_formula +from baserow.core.formula.registries import formula_runtime_function_registry from baserow.core.generative_ai.exceptions import ModelDoesNotBelongToType from baserow.core.generative_ai.registries import generative_ai_model_type_registry -from baserow_premium.fields.exceptions import AiFieldOutputParserException from baserow_premium.prompts import get_generate_formula_prompt +from .ai_file import AIFile +from .exceptions import AIFieldEmptyPromptError from .pydantic_models import BaserowFormulaModel +from .registries import ai_field_output_registry + +if TYPE_CHECKING: + from baserow.contrib.database.table.models import GeneratedTableModel + from baserow.core.generative_ai.registries import GenerativeAIModelType + from baserow_premium.fields.models import AIField class AIFieldHandler: + @classmethod + def get_valid_model_type_or_raise(cls, ai_field: AIField) -> GenerativeAIModelType: + """ + Return the generative AI model type for the given AI field, raising if + the configured model is not enabled for the workspace. + + :param ai_field: The AI field to validate. + :raises ModelDoesNotBelongToType: If the model is not enabled. + """ + + generative_ai_model_type = generative_ai_model_type_registry.get( + ai_field.ai_generative_ai_type + ) + workspace = ai_field.table.database.workspace + ai_models = generative_ai_model_type.get_enabled_models(workspace=workspace) + + if ai_field.ai_generative_ai_model not in ai_models: + raise ModelDoesNotBelongToType(model_name=ai_field.ai_generative_ai_model) + return generative_ai_model_type + @classmethod def generate_formula_with_ai( cls, @@ -32,13 +67,9 @@ def generate_formula_with_ai( :param ai_temperature: The temperature that's passed into the prompt. :raises ModelDoesNotBelongToType: if the provided model doesn't belong to the type - :return: The generated model. + :return: The generated formula string. """ - from langchain_core.exceptions import OutputParserException - from langchain_core.output_parsers import JsonOutputParser - from langchain_core.prompts import PromptTemplate - generative_ai_model_type = generative_ai_model_type_registry.get(ai_type) ai_models = generative_ai_model_type.get_enabled_models( table.database.workspace @@ -53,26 +84,114 @@ def generate_formula_with_ai( table_schema.append(field_type.export_serialized(field)) table_schema_json = json.dumps(table_schema, indent=4) - output_parser = JsonOutputParser(pydantic_object=BaserowFormulaModel) - format_instructions = output_parser.get_format_instructions() - prompt = PromptTemplate( - template=get_generate_formula_prompt() + "\n{format_instructions}", - input_variables=["table_schema_json", "user_prompt"], - partial_variables={"format_instructions": format_instructions}, - ) - message = prompt.format( + message = get_generate_formula_prompt().format( table_schema_json=table_schema_json, user_prompt=ai_prompt ) - response = generative_ai_model_type.prompt( + result = generative_ai_model_type.prompt( ai_model, message, + output_type=BaserowFormulaModel, workspace=table.database.workspace, temperature=ai_temperature, ) + return result.formula + + @classmethod + def generate_value_with_ai( + cls, + ai_field: AIField, + row: GeneratedTableModel, + ) -> Any: + """ + Generate a single AI field value for the given row. Handles model + validation, prompt resolution, file preparation, the AI call, file + cleanup, and choice resolution. + + :param ai_field: The AI field configuration. + :param row: The row to generate a value for. + :return: The generated value. + :raises AIFieldEmptyPromptError: If the resolved prompt is empty. + """ + + generative_ai_model_type = cls.get_valid_model_type_or_raise(ai_field) + ai_output_type = ai_field_output_registry.get(ai_field.ai_output_type) + workspace = ai_field.table.database.workspace + + # 1. Resolve prompt from formula + context = HumanReadableRowContext(row, exclude_field_ids=[ai_field.id]) + message = str( + resolve_formula( + ai_field.ai_prompt, formula_runtime_function_registry, context + ) + ) + + if not message or not message.strip(): + raise AIFieldEmptyPromptError( + "The resolved prompt is empty; nothing to send to the model." + ) + + # 2. Build prompt kwargs + choices = ai_output_type.get_choices(ai_field) + prompt_kwargs: dict[str, Any] = { + "workspace": workspace, + "temperature": ai_field.ai_temperature, + } + if choices is not None: + prompt_kwargs["output_type"] = choices + + # 3. Prepare files, call AI, cleanup + ai_files: list[AIFile] = [] + use_files = ( + ai_field.ai_file_field_id is not None + and generative_ai_model_type.supports_files + ) try: - return output_parser.parse(response)["formula"] - except (OutputParserException, TypeError, KeyError) as e: - raise AiFieldOutputParserException( - "The model didn't respond with the correct output. Please try again." - ) from e + if use_files: + ai_files = cls._collect_ai_files(ai_field, row) + prepared = generative_ai_model_type.prepare_files(ai_files, workspace) + if prepared: + prompt_kwargs["content"] = [f.content for f in prepared] + + value = generative_ai_model_type.prompt( + ai_field.ai_generative_ai_model, + message, + **prompt_kwargs, + ) + finally: + # cleanup uses ai_files (not prepared) so that files uploaded + # before a mid-prepare failure are still cleaned up. + if ai_files: + generative_ai_model_type.cleanup_files(ai_files, workspace) + + # 4. Resolve choice if needed + if choices is not None: + value = ai_output_type.resolve_choice(value, ai_field) + + return value + + @classmethod + def _collect_ai_files( + cls, ai_field: AIField, row: GeneratedTableModel + ) -> list[AIFile]: + """ + Build a list of AIFile instances from the row's file field cell data. + """ + + cell_files = getattr(row, f"field_{ai_field.ai_file_field_id}") + if not isinstance(cell_files, list): + cell_files = [cell_files] if cell_files else [] + + return [ + AIFile( + name=f["name"], + original_name=f.get("original_name", f["name"]), + size=f.get("size", 0), + mime_type=( + f.get("mime_type") + or mimetypes.guess_type(f["name"])[0] + or "application/octet-stream" + ), + ) + for f in cell_files + ] diff --git a/premium/backend/src/baserow_premium/fields/job_types.py b/premium/backend/src/baserow_premium/fields/job_types.py index 14f089bd16..d9f0ce19a6 100644 --- a/premium/backend/src/baserow_premium/fields/job_types.py +++ b/premium/backend/src/baserow_premium/fields/job_types.py @@ -18,33 +18,24 @@ from baserow.contrib.database.fields.operations import ListFieldsOperationType from baserow.contrib.database.rows.exceptions import RowDoesNotExist from baserow.contrib.database.rows.handler import RowHandler -from baserow.contrib.database.rows.runtime_formula_contexts import ( - HumanReadableRowContext, -) from baserow.contrib.database.rows.signals import rows_ai_values_generation_error from baserow.contrib.database.table.models import GeneratedTableModel from baserow.contrib.database.views.exceptions import ViewDoesNotExist from baserow.contrib.database.views.handler import ViewHandler from baserow.core.exceptions import UserNotInWorkspace, WorkspaceDoesNotExist -from baserow.core.formula import resolve_formula -from baserow.core.formula.registries import formula_runtime_function_registry from baserow.core.generative_ai.exceptions import ( GenerativeAIPromptError, ModelDoesNotBelongToType, ) -from baserow.core.generative_ai.registries import ( - GenerativeAIWithFilesModelType, - generative_ai_model_type_registry, -) from baserow.core.handler import CoreHandler from baserow.core.job_types import _empty_transaction_context from baserow.core.jobs.exceptions import MaxJobCountExceeded from baserow.core.jobs.registries import JobType from baserow.core.utils import ChildProgressBuilder -from baserow_premium.generative_ai.managers import AIFileManager +from .exceptions import AIFieldEmptyPromptError +from .handler import AIFieldHandler from .models import AIField, AIFieldScheduledUpdate, GenerateAIValuesJob -from .registries import ai_field_output_registry class AIValueUpdate(NamedTuple): @@ -54,27 +45,6 @@ class AIValueUpdate(NamedTuple): end_at: datetime -def get_valid_generative_ai_model_type_or_raise(ai_field: AIField): - """ - Returns the generative AI model type for the given AI field if the model belongs - to the type. Otherwise, raises a ModelDoesNotBelongToType exception. - - :param ai_field: The AI field to check. - :return: The generative AI model type. - :raises ModelDoesNotBelongToType: If the model does not belong to the type. - """ - - generative_ai_model_type = generative_ai_model_type_registry.get( - ai_field.ai_generative_ai_type - ) - workspace = ai_field.table.database.workspace - ai_models = generative_ai_model_type.get_enabled_models(workspace=workspace) - - if ai_field.ai_generative_ai_model not in ai_models: - raise ModelDoesNotBelongToType(model_name=ai_field.ai_generative_ai_model) - return generative_ai_model_type - - class GenerateAIValuesJobType(JobType): type = "generate_ai_values" model_class = GenerateAIValuesJob @@ -229,7 +199,7 @@ def prepare_values(self, values, user): "field_id": ai_field.id, } - get_valid_generative_ai_model_type_or_raise(ai_field) + AIFieldHandler.get_valid_model_type_or_raise(ai_field) if unsaved_job.mode == GenerateAIValuesJob.MODES.AUTO_UPDATE: if not AIFieldScheduledUpdate.objects.filter(field_id=ai_field.id).exists(): @@ -425,21 +395,14 @@ def __init__( def prepare(self): """ - Prepares runtime values from AI field attached. - - This method prepares common values to be used during processing and should be - called once, before processing is started. + Validates that the AI field's model configuration is still valid + before processing begins. Sends an error signal and re-raises if the + model is no longer available. """ try: - self.generative_ai_model_type = get_valid_generative_ai_model_type_or_raise( - self.ai_field - ) + AIFieldHandler.get_valid_model_type_or_raise(self.ai_field) except ModelDoesNotBelongToType as exc: - # If the workspace AI settings have been removed before the task starts, - # or if the export worker doesn't have the right env vars yet, then it can - # fail. We therefore want to handle the error gracefully. - # Note: rows might be a generator, so we can't pass it directly rows_ai_values_generation_error.send( self.signal_sender, user=self.user, @@ -450,15 +413,6 @@ def prepare(self): ) raise exc - self.ai_output_type = ai_field_output_registry.get(self.ai_field.ai_output_type) - - self.use_file_fields = ( - self.ai_field.ai_file_field_id is not None - and isinstance( - self.generative_ai_model_type, GenerativeAIWithFilesModelType - ) - ) - def generate_value_for(self, row: GeneratedTableModel): """ Runs value generation for a single row using AI model. @@ -472,81 +426,20 @@ def generate_value_for(self, row: GeneratedTableModel): start = datetime.now(tz=timezone.utc) try: - result = self._generate_value_for(row) - end = datetime.now(tz=timezone.utc) - self.results_queue.put( - AIValueUpdate(row, result, start, end), - block=True, - ) - except Exception as e: - logger.opt(exception=e).error(f"Value generation for row {row} failed: {e}") - end = datetime.now(tz=timezone.utc) - self.results_queue.put( - AIValueUpdate(row, e, start, end), - block=True, - ) - - def _generate_value_for(self, row: GeneratedTableModel) -> Any: - """ - Prepares the message (and optionally files), sends it to the AI model and - returns the result. - - :param row: A row to generate value for. - :return: A result from the AI model. - """ - - ai_field = self.ai_field - ai_output_type = self.ai_output_type - generative_ai_model_type = self.generative_ai_model_type - workspace = self.workspace - - context = HumanReadableRowContext(row, exclude_field_ids=[ai_field.id]) - message = str( - resolve_formula( - ai_field.ai_prompt, formula_runtime_function_registry, context - ) + result = AIFieldHandler.generate_value_with_ai(self.ai_field, row) + except AIFieldEmptyPromptError: + # Empty prompt — preserve existing value. + result = getattr(row, self.ai_field.db_column, None) + except Exception as exc: + logger.exception(f"Value generation for row {row} failed: {exc}") + result = exc + + end = datetime.now(tz=timezone.utc) + self.results_queue.put( + AIValueUpdate(row, result, start, end), + block=True, ) - # The AI output type should be able to format the prompt because it can add - # additional instructions to it. The choice output type for example adds - # additional prompt trying to force the output, for example. - message = ai_output_type.format_prompt(message, ai_field) - - if not message or not message.strip(): - # If the resolved prompt is empty, preserve the existing value instead - # of overwriting it with NULL in the database. - return getattr(row, ai_field.db_column, None) - - if self.use_file_fields: - file_ids = [] - try: - file_ids = AIFileManager.upload_files_from_file_field( - ai_field, row, generative_ai_model_type - ) - value = generative_ai_model_type.prompt_with_files( - ai_field.ai_generative_ai_model, - message, - file_ids=file_ids, - workspace=workspace, - temperature=ai_field.ai_temperature, - ) - finally: - generative_ai_model_type.delete_files(file_ids, workspace=workspace) - else: - value = generative_ai_model_type.prompt( - ai_field.ai_generative_ai_model, - message, - workspace=workspace, - temperature=ai_field.ai_temperature, - ) - - # Because the AI output type can change the prompt to try to force the - # output a certain way, then it should give the opportunity to parse the - # output when it's given. With the choice output type, it will try to - # match it to a `SelectOption`, for example. - value = ai_output_type.parse_output(value, ai_field) - return value - def handle_error(self, error_message: str): """ Error handling routine, if an error occurred during getting AI model response diff --git a/premium/backend/src/baserow_premium/fields/registries.py b/premium/backend/src/baserow_premium/fields/registries.py index 940c827e7e..acd866e222 100644 --- a/premium/backend/src/baserow_premium/fields/registries.py +++ b/premium/backend/src/baserow_premium/fields/registries.py @@ -18,36 +18,28 @@ def baserow_field_type(self) -> str: used to do various Baserow operations like filtering, sorting, etc. """ - def format_prompt(self, prompt: str, ai_field: "AIField"): + def get_choices(self, ai_field: "AIField"): """ - Hook that can be used to change and format the provided prompt for this output - type. It accepts the original already resolved prompt and should return the - updated one. + Return a list of valid choice strings for constrained output, or None if + this output type doesn't use choice selection. - It can be used to include the format instructions of an output parser, for - example. - - :param prompt: The resolved prompt provided by the user. This already contains - the resolved variables. :param ai_field: The AI field related to the output type. - :return: Should return the formatted prompt. This can include additional - information that can change the outcome of the prompt. + :return: A list of choice strings, or None. """ - return prompt + return None - def parse_output(self, output: str, ai_field: "AIField"): + def resolve_choice(self, value, ai_field: "AIField"): """ - Hook that can be used to parse the output of the generative AI prompt. If an - output parser formatting instructions are added in `format_prompt`, then this - hook can be used to parse it. + Map a choice string returned by prompt(output_choices=...) to the + appropriate field value (e.g. a SelectOption). - :param output: The text output of the generative AI. + :param value: The matched choice string, or None if no match. :param ai_field: The AI field related to the output type. - :return: Should return the parsed output. + :return: The resolved value. """ - return output + return value def prepare_data_sync_value(self, value: Any, field: Field, metadata: dict) -> Any: """ diff --git a/premium/backend/src/baserow_premium/generative_ai/managers.py b/premium/backend/src/baserow_premium/generative_ai/managers.py deleted file mode 100644 index b5e1c1b163..0000000000 --- a/premium/backend/src/baserow_premium/generative_ai/managers.py +++ /dev/null @@ -1,55 +0,0 @@ -from baserow.core.generative_ai.types import FileId -from baserow.core.storage import get_default_storage -from baserow.core.user_files.handler import UserFileHandler - - -class AIFileManager: - @staticmethod - def upload_files_from_file_field( - ai_field, row, generative_ai_model_type, workspace=None - ) -> list[FileId]: - """ - Collects files from a row cell stored in the associated file field - and uploads them for generative AI model. - - :param ai_field: The AI field that has associated file field. - :param row: The row to extract the files from. - :param generative_ai_model_type: The model type to use for - uploads. - :param workspace: Optional workspace of the file field. - """ - - storage = get_default_storage() - - all_cell_files = getattr(row, f"field_{ai_field.ai_file_field_id}") - if not isinstance(all_cell_files, list): - # just a single file - all_cell_files = [all_cell_files] if all_cell_files else [] - compatible_files = [ - file - for file in all_cell_files - if generative_ai_model_type.is_file_compatible(file["name"]) - ] - file_ids: list[FileId] = [] - max_file_size = generative_ai_model_type.get_max_file_size() * 1024 * 1024 - for file in compatible_files: - file_path = UserFileHandler().user_file_path(file["name"]) - try: - file_size = storage.size(file_path) - if file_size > max_file_size: - # skip files too large - continue - except NotImplementedError: - # The storage used doesn't support file sizes - return [] - except FileNotFoundError: - continue - with storage.open(file_path, mode="rb") as storage_file: - file_ids.append( - generative_ai_model_type.upload_file( - storage_file.name, storage_file.read(), workspace=workspace - ) - ) - # For now only uploading first file - break - return file_ids diff --git a/premium/backend/tests/baserow_premium_tests/api/fields/test_formula_field_views.py b/premium/backend/tests/baserow_premium_tests/api/fields/test_formula_field_views.py index 909317643e..aae2a4f639 100644 --- a/premium/backend/tests/baserow_premium_tests/api/fields/test_formula_field_views.py +++ b/premium/backend/tests/baserow_premium_tests/api/fields/test_formula_field_views.py @@ -12,6 +12,7 @@ ) from baserow.core.generative_ai.registries import generative_ai_model_type_registry +from baserow_premium.fields.pydantic_models import BaserowFormulaModel @pytest.mark.django_db @@ -254,7 +255,7 @@ def test_generate_formula_output_parser_error(premium_data_fixture, api_client): HTTP_AUTHORIZATION=f"JWT {token}", ) assert response.status_code == HTTP_400_BAD_REQUEST - assert response.json()["error"] == "ERROR_OUTPUT_PARSER" + assert response.json()["error"] == "ERROR_GENERATIVE_AI_PROMPT" @pytest.mark.django_db @@ -319,7 +320,9 @@ def test_generate_formula(premium_data_fixture, api_client): generative_ai_instance = generative_ai_model_type_registry.get("test_generative_ai") with patch.object( - generative_ai_instance, "prompt", return_value='{"formula": "field()"}' + generative_ai_instance, + "prompt", + return_value=BaserowFormulaModel(formula="field()"), ) as mock: response = api_client.post( reverse( @@ -367,7 +370,9 @@ def test_generate_formula_with_temperature(premium_data_fixture, api_client): generative_ai_instance = generative_ai_model_type_registry.get("test_generative_ai") with patch.object( - generative_ai_instance, "prompt", return_value='{"formula": "field()"}' + generative_ai_instance, + "prompt", + return_value=BaserowFormulaModel(formula="field()"), ) as mock: response = api_client.post( reverse( @@ -451,7 +456,9 @@ def test_generate_formula_with_temperature_null(premium_data_fixture, api_client generative_ai_instance = generative_ai_model_type_registry.get("test_generative_ai") with patch.object( - generative_ai_instance, "prompt", return_value='{"formula": "field()"}' + generative_ai_instance, + "prompt", + return_value=BaserowFormulaModel(formula="field()"), ) as mock: response = api_client.post( reverse( diff --git a/premium/backend/tests/baserow_premium_tests/fields/test_ai_field_handler.py b/premium/backend/tests/baserow_premium_tests/fields/test_ai_field_handler.py index 06849f0a5a..b1016fffcc 100644 --- a/premium/backend/tests/baserow_premium_tests/fields/test_ai_field_handler.py +++ b/premium/backend/tests/baserow_premium_tests/fields/test_ai_field_handler.py @@ -3,12 +3,13 @@ import pytest from baserow.core.generative_ai.exceptions import ( + GenerativeAIPromptError, GenerativeAITypeDoesNotExist, ModelDoesNotBelongToType, ) from baserow.core.generative_ai.registries import generative_ai_model_type_registry -from baserow_premium.fields.exceptions import AiFieldOutputParserException from baserow_premium.fields.handler import AIFieldHandler +from baserow_premium.fields.pydantic_models import BaserowFormulaModel @pytest.mark.django_db @@ -78,7 +79,7 @@ def test_generate_formula_output_parser_error(premium_data_fixture, api_client): ) table = premium_data_fixture.create_database_table(name="table", database=database) - with pytest.raises(AiFieldOutputParserException): + with pytest.raises(GenerativeAIPromptError): AIFieldHandler.generate_formula_with_ai( table, "test_generative_ai", @@ -106,7 +107,9 @@ def test_generate_formula(premium_data_fixture, api_client): generative_ai_instance = generative_ai_model_type_registry.get("test_generative_ai") with patch.object( - generative_ai_instance, "prompt", return_value='{"formula": "field()"}' + generative_ai_instance, + "prompt", + return_value=BaserowFormulaModel(formula="field()"), ) as mock: formula = AIFieldHandler.generate_formula_with_ai( table, diff --git a/premium/backend/tests/baserow_premium_tests/fields/test_ai_field_output_types.py b/premium/backend/tests/baserow_premium_tests/fields/test_ai_field_output_types.py index 8f1ff9d9a6..b3041bf674 100644 --- a/premium/backend/tests/baserow_premium_tests/fields/test_ai_field_output_types.py +++ b/premium/backend/tests/baserow_premium_tests/fields/test_ai_field_output_types.py @@ -1,46 +1,38 @@ -import enum - import pytest -from langchain_core.prompts import PromptTemplate from baserow.core.generative_ai.registries import ( GenerativeAIModelType, generative_ai_model_type_registry, ) from baserow.core.jobs.handler import JobHandler -from baserow_premium.fields.ai_field_output_types import get_strict_enum_output_parser - - -def test_strict_enum_output_parser(): - choices = enum.Enum( - "Choices", - { - "OPTION_1": "Object", - "OPTION_2": "Animal", - "OPTION_3": "Human", - "OPTION_4": "A,B,C", - }, - ) - output_parser = get_strict_enum_output_parser(enum=choices) - format_instructions = output_parser.get_format_instructions() - prompt = "What is a motorcycle?" - prompt = PromptTemplate( - template=prompt + "\n\n{format_instructions}", - input_variables=[], - partial_variables={"format_instructions": format_instructions}, - ) - message = prompt.format() - assert '["Object", "Animal", "Human", "A,B,C"]' in message - assert output_parser.parse("Object") == choices.OPTION_1 - assert output_parser.parse("Animal") == choices.OPTION_2 - assert output_parser.parse("Human") == choices.OPTION_3 - assert output_parser.parse("A,B,C") == choices.OPTION_4 +def test_resolve_choices(): + """Test that _resolve_choices correctly normalizes and fuzzy-matches LLM output.""" + + resolve = GenerativeAIModelType._resolve_choices + choices = ["Object", "Animal", "Human", "A,B,C"] + + # Exact matches + assert resolve(None, "Object", choices) == "Object" + assert resolve(None, "Animal", choices) == "Animal" + assert resolve(None, "A,B,C", choices) == "A,B,C" + + # Case-insensitive + assert resolve(None, "object", choices) == "Object" + assert resolve(None, "ANIMAL", choices) == "Animal" + + # Strips quotes, markdown bold, whitespace, trailing punctuation + assert resolve(None, "'Object'", choices) == "Object" + assert resolve(None, '"Animal"', choices) == "Animal" + assert resolve(None, " Object ", choices) == "Object" + assert resolve(None, "**Human**", choices) == "Human" + assert resolve(None, "`Object`", choices) == "Object" + assert resolve(None, "Object.", choices) == "Object" - assert output_parser.parse(" Object ") == choices.OPTION_1 - assert output_parser.parse("'Object'") == choices.OPTION_1 - assert output_parser.parse("'A'") == choices.OPTION_4 + # Too far from any choice — below the default 0.6 cutoff + assert resolve(None, "xyzzy", choices) is None + assert resolve(None, "", choices) is None @pytest.mark.django_db @@ -56,10 +48,18 @@ def is_enabled(self, workspace=None): def get_enabled_models(self, workspace=None): return ["test_1"] - def prompt(self, model, prompt, workspace=None, temperature=None): + def prompt( + self, + model, + prompt, + workspace=None, + temperature=None, + settings_override=None, + output_type=None, + content=None, + ): self.i += 1 if self.i == 1: - # Existing option should be matches based on the string. return "Object" else: return "Else" diff --git a/premium/backend/tests/baserow_premium_tests/generative_ai/test_managers.py b/premium/backend/tests/baserow_premium_tests/generative_ai/test_managers.py index dda1bc8460..a3685fcdd4 100644 --- a/premium/backend/tests/baserow_premium_tests/generative_ai/test_managers.py +++ b/premium/backend/tests/baserow_premium_tests/generative_ai/test_managers.py @@ -1,21 +1,18 @@ -import os from io import BytesIO -from unittest.mock import Mock - -from django.conf import settings import pytest from baserow.contrib.database.rows.handler import RowHandler from baserow.core.storage import get_default_storage from baserow.core.user_files.handler import UserFileHandler -from baserow.test_utils.fixtures.generative_ai import TestGenerativeAIWithFilesModelType -from baserow.test_utils.helpers import AnyStr -from baserow_premium.generative_ai.managers import AIFileManager +from baserow.test_utils.fixtures.generative_ai import ( + TestGenerativeAIWithFilesModelType, +) +from baserow_premium.fields.handler import AIFieldHandler @pytest.mark.django_db -def test_upload_files_from_file_field(premium_data_fixture, django_assert_num_queries): +def test_prepare_file_content(premium_data_fixture, django_assert_num_queries): storage = get_default_storage() user = premium_data_fixture.create_user() @@ -42,20 +39,17 @@ def test_upload_files_from_file_field(premium_data_fixture, django_assert_num_qu ) ai_field.refresh_from_db() - with django_assert_num_queries(0): - file_ids = AIFileManager.upload_files_from_file_field( - ai_field, row, generative_ai_model_type - ) - assert file_ids == [AnyStr()] + ai_files = AIFieldHandler._collect_ai_files(ai_field, row) + prepared = generative_ai_model_type.prepare_files(ai_files) - assert len(generative_ai_model_type._files) == 1 - assert generative_ai_model_type._files[file_ids[0]]["file_name"].endswith( - os.path.join(settings.MEDIA_ROOT, f"user_files/{user_file_1.name}") - ) + assert len([f for f in prepared if f.content]) == 1 + assert len([f for f in prepared if f.provider_file_id]) == 0 + assert prepared[0].content.data == b"Hello" + assert prepared[0].content.media_type == "text/plain" @pytest.mark.django_db -def test_upload_files_from_file_field_skip_files_over_max_size(premium_data_fixture): +def test_prepare_file_content_skip_files_over_max_size(premium_data_fixture): storage = get_default_storage() user = premium_data_fixture.create_user() @@ -67,8 +61,10 @@ def test_upload_files_from_file_field_skip_files_over_max_size(premium_data_fixt ai_field = premium_data_fixture.create_ai_field( table=table, order=1, name="AI prompt", ai_file_field=file_field ) + # Create a file larger than the 1MB test limit + large_content = b"x" * (2 * 1024 * 1024) user_file_1 = UserFileHandler().upload_user_file( - user, "aifile.txt", BytesIO(b"Hello"), storage=storage + user, "aifile.txt", BytesIO(large_content), storage=storage ) table_model = table.get_model() values = {f"field_{file_field.id}": [{"name": user_file_1.name}]} @@ -78,9 +74,9 @@ def test_upload_files_from_file_field_skip_files_over_max_size(premium_data_fixt values, table_model, ) - generative_ai_model_type.get_max_file_size = Mock() - generative_ai_model_type.get_max_file_size.return_value = 0 - AIFileManager.upload_files_from_file_field(ai_field, row, generative_ai_model_type) - stored_files = getattr(generative_ai_model_type, "_files", {}) - assert len(stored_files) == 0 + ai_files = AIFieldHandler._collect_ai_files(ai_field, row) + prepared = generative_ai_model_type.prepare_files(ai_files) + + assert len([f for f in prepared if f.content]) == 0 + assert len([f for f in prepared if f.provider_file_id]) == 0 diff --git a/web-frontend/config/nuxt.config.base.ts b/web-frontend/config/nuxt.config.base.ts index d8f74296a7..6902e64b74 100644 --- a/web-frontend/config/nuxt.config.base.ts +++ b/web-frontend/config/nuxt.config.base.ts @@ -81,6 +81,22 @@ export default defineNuxtConfig({ }, }, vite: { + css: { + preprocessorOptions: { + scss: { + // TODO: Migrate all @import rules to @use/@forward (Dart Sass 3.0 will remove @import). + // Also fix global-builtin (unquote → string.unquote in colors.module.scss) + // and if-function (old if() syntax in abstracts/_helpers.scss). + // See https://sass-lang.com/d/import for the migration guide and automated migrator. + silenceDeprecations: [ + 'import', + 'global-builtin', + 'if-function', + 'color-functions', + ], + }, + }, + }, plugins: [ nodePolyfills({ include: ['util'], diff --git a/web-frontend/locales/en.json b/web-frontend/locales/en.json index 28b52e224a..1410f87ab7 100644 --- a/web-frontend/locales/en.json +++ b/web-frontend/locales/en.json @@ -452,8 +452,6 @@ "generativeAIDoesNotExistDescription": "The generative AI model does not exist.", "modelDoesNotBelongToTypeTitle": "The selected model does not belong to the AI Type", "modelDoesNotBelongToTypeDescription": "The selected model does not belong to the selected AI type.", - "outputParserTitle": "Wrong output", - "outputParserDescription": "The model responded with an incorrect output. Please try again.", "generateAIPromptTitle": "Prompt error", "generateAIPromptDescription": "Something was wrong with the constructed prompt.", "maxNumberOfPendingWorkspaceInvitesReachedTitle": "Max pending invites reached", diff --git a/web-frontend/modules/core/plugins/clientHandler.js b/web-frontend/modules/core/plugins/clientHandler.js index 8e1dbbba6a..2755c311b5 100644 --- a/web-frontend/modules/core/plugins/clientHandler.js +++ b/web-frontend/modules/core/plugins/clientHandler.js @@ -134,10 +134,6 @@ export class ClientErrorMap { $i18n.t('clientHandler.disabledPasswordProviderTitle'), $i18n.t('clientHandler.disabledPasswordProviderMessage') ), - ERROR_OUTPUT_PARSER: new ResponseErrorMessage( - $i18n.t('clientHandler.outputParserTitle'), - $i18n.t('clientHandler.outputParserDescription') - ), ERROR_GENERATIVE_AI_PROMPT: new ResponseErrorMessage( $i18n.t('clientHandler.generateAIPromptTitle'), $i18n.t('clientHandler.generateAIPromptDescription')