diff --git a/.env b/.env
index 9fc35f8..f9decf9 100644
--- a/.env
+++ b/.env
@@ -1,3 +1,3 @@
-NEXT_PUBLIC_SITE_URL=https://YOUR_SITE.netlify.app
+NEXT_PUBLIC_SITE_URL=https://lughausen.netlify.app
DOCKER_BUILDKIT=1
COMPOSE_DOCKER_CLI_BUILD=1
diff --git a/.gitignore b/.gitignore
index a592a7a..3eea99e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+ See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..b3109a5
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,5 @@
+{
+ "circleci.persistedProjectSelection": [
+ "gh/kickstartDS/lughausen-website"
+ ]
+}
diff --git a/README.md b/README.md
index e6737cd..4811ce9 100644
--- a/README.md
+++ b/README.md
@@ -163,6 +163,23 @@ TODO adjust this to `ds-agency` on non-premium version
Reminder: Undo the import for `fonts.scss` in `index.scss` if you had to change that for your previews, otherwise you'd load redundant fonts on your page later.
+### Creating branded component and preset previews
+
+`YOUR_WEBSITE` should be the path pointing to your website project, the one you want to update the previews for.
+
+1. Clone the Design System this is based on locally: https://github.com/kickstartDS/ds-agency
+2. Switch to the freshly cloned directory, and inside (ensure you're using the correct Node version 18+; `nvs use`, `nvm use` for automatic selection, if you use one of those tools):
+ 1. `yarn` to install dependencies
+ 2. `rm -rf src/token` to remove the existing default theme
+ 3. `cp -r YOUR_WEBSITE/token src/token` to copy your Design Token / Style Dictionary configuration to the Design System project
+ 4. Adjust the `background-color` for the `.preview--wrapper` CSS class in `global.scss`, to a color suitable for your component screenshots (depends on your applied design)
+ 5. `yarn build-storybook` to build a Storybook that can then be used to create screenshots
+ 6. `yarn create-component-previews` to re-create the existing previews with your branding
+ 7. `mkdir -p YOUR_WEBSITE/public/img && rm -rf YOUR_WEBSITE/public/img/screenshots && cp -r static/img/screenshots YOUR_WEBSITE/public/img/` to copy the generated screenshots to your project
+ 8. `cd YOUR_WEBSITE` to switch to your website project
+ 9. `npm run update-previews` to update those newly created screenshots in your Storyblok space
+3. That's it!
+
## Working with the content schema
### Typescript Support
diff --git a/cms/components.123456.json b/cms/components.123456.json
index f25b59a..d22f1c4 100644
--- a/cms/components.123456.json
+++ b/cms/components.123456.json
@@ -1,85 +1,97 @@
{
"components": [
{
- "name": "buttons",
- "display_name": "Buttons",
- "created_at": "2024-09-05T10:51:57.948Z",
- "updated_at": "2024-09-05T10:51:57.948Z",
+ "name": "tags",
+ "display_name": "Tags",
+ "created_at": "2024-04-15T21:18:48.717Z",
+ "updated_at": "2024-04-15T21:18:48.717Z",
"id": 0,
"schema": {
- "label": {
- "id": 0,
- "pos": 0,
- "display_name": "Label",
- "key": "label",
- "type": "text",
- "description": "Text content to display inside the button",
- "required": false
- },
- "icon": {
+ "entry": {
"id": 0,
"pos": 0,
- "display_name": "Icon",
- "key": "icon",
+ "display_name": "Tags",
+ "key": "tags",
"type": "text",
- "description": "Choose an icon",
- "required": false
- },
- "target": {
- "id": 0,
- "pos": 0,
- "display_name": "Target",
- "key": "target",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "description": "Target that should be linked, makes the button behave like a link semantically",
"required": false
}
},
"is_nestable": true,
- "real_name": "Buttons",
+ "real_name": "Tags",
"color": "#05566a",
"icon": "block-wallet"
},
{
- "name": "questions",
- "display_name": "Questions",
- "created_at": "2024-09-05T10:51:57.950Z",
- "updated_at": "2024-09-05T10:51:57.950Z",
+ "name": "blog-head",
+ "display_name": "Blog Head",
+ "created_at": "2024-04-15T21:18:48.718Z",
+ "updated_at": "2024-04-15T21:18:48.718Z",
"id": 1,
"schema": {
- "question": {
+ "date": {
"id": 0,
"pos": 0,
- "display_name": "Question",
- "key": "question",
- "type": "markdown",
- "description": "The question",
+ "display_name": "Date",
+ "key": "date",
+ "type": "datetime",
+ "disable_time": true,
+ "description": "The date when the blog post was published",
"required": false
},
- "answer": {
+ "tags": {
"id": 0,
"pos": 0,
- "display_name": "Answer",
- "key": "answer",
+ "display_name": "Tags",
+ "key": "tags",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "tags"
+ ]
+ },
+ "headline": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Headline",
+ "key": "headline",
"type": "markdown",
- "description": "The answer to the question",
+ "description": "The headline of the blog post",
+ "required": false
+ },
+ "image": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Image",
+ "key": "image",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "The source of the cover image for the blog post",
"required": false
+ },
+ "type": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "blog-head"
}
},
"is_nestable": true,
- "real_name": "Questions",
+ "real_name": "Blog Head",
"color": "#05566a",
- "icon": "block-wallet"
+ "icon": "block-wallet",
+ "image": "//a.storyblok.com/f/284989/1000x863/3c6595a27d/blog-blog-head-default.png"
},
{
- "name": "feature",
- "display_name": "Feature",
- "created_at": "2024-09-05T10:51:57.952Z",
- "updated_at": "2024-09-05T10:51:57.952Z",
+ "name": "socialSharing",
+ "display_name": "SocialSharing",
+ "created_at": "2024-04-15T21:18:48.722Z",
+ "updated_at": "2024-04-15T21:18:48.722Z",
"id": 2,
"schema": {
"icon": {
@@ -88,7 +100,20 @@
"display_name": "Icon",
"key": "icon",
"type": "text",
- "description": "The icon for the feature",
+ "description": "The icon name for the social link",
+ "required": false
+ },
+ "href": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Href",
+ "key": "href",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "description": "The href for the social link",
"required": false
},
"title": {
@@ -97,236 +122,199 @@
"display_name": "Title",
"key": "title",
"type": "text",
- "description": "The title of the feature",
+ "description": "The title for the social link",
+ "required": false
+ }
+ },
+ "is_nestable": true,
+ "real_name": "SocialSharing",
+ "color": "#05566a",
+ "icon": "block-wallet"
+ },
+ {
+ "name": "blog-aside",
+ "display_name": "Blog Aside",
+ "created_at": "2024-04-15T21:18:48.722Z",
+ "updated_at": "2024-04-15T21:18:48.722Z",
+ "id": 3,
+ "schema": {
+ "tab-63de4da7-b363-499a-a71d-fb1216341ce9": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Author",
+ "key": "tab-63de4da7-b363-499a-a71d-fb1216341ce9",
+ "keys": [
+ "author_name",
+ "author_byline",
+ "author_image",
+ "author_twitter",
+ "author_email"
+ ],
+ "type": "tab",
+ "description": "The author of the blog post",
"required": false
},
- "text": {
+ "author_name": {
"id": 0,
"pos": 0,
- "display_name": "Text",
- "key": "text",
- "type": "markdown",
- "description": "The description of the feature",
+ "display_name": "Name",
+ "key": "author_name",
+ "type": "text",
+ "description": "The name of the author",
"required": false
},
- "style": {
+ "author_byline": {
"id": 0,
"pos": 0,
- "display_name": "Style",
- "key": "style",
- "type": "option",
- "default_value": "stack",
- "options": [
- {
- "name": "intext",
- "value": "intext",
- "_uid": "fe3d9042-34d6-45b9-8557-f1096f9ff011"
- },
- {
- "name": "stack",
- "value": "stack",
- "_uid": "a13ee1e3-29cc-47b8-b4ef-acc1e2fee513"
- },
- {
- "name": "centered",
- "value": "centered",
- "_uid": "0b93d140-8c76-46ba-a5d8-7c4118829293"
- },
- {
- "name": "besideLarge",
- "value": "besideLarge",
- "_uid": "b81c7ad6-005f-464b-b372-331f82cb4db8"
- },
- {
- "name": "besideSmall",
- "value": "besideSmall",
- "_uid": "b0ff2aa4-8e20-4ffe-87e5-4a2db377c72b"
- }
- ],
+ "display_name": "Byline",
+ "key": "author_byline",
+ "type": "text",
+ "description": "The byline of the author",
"required": false
},
- "tab-12e7739e-7a90-4db7-946d-55ba6df50f43": {
+ "author_image": {
"id": 0,
"pos": 0,
- "display_name": "Cta",
- "key": "tab-12e7739e-7a90-4db7-946d-55ba6df50f43",
- "keys": [
- "cta_target",
- "cta_label",
- "cta_toggle",
- "cta_style"
+ "display_name": "Image",
+ "key": "author_image",
+ "type": "asset",
+ "filetypes": [
+ "images"
],
- "type": "tab",
- "description": "The call to action",
+ "description": "The image URL of the author",
"required": false
},
- "cta_target": {
+ "author_twitter": {
"id": 0,
"pos": 0,
- "display_name": "Target",
- "key": "cta_target",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "default_value": "#",
- "description": "The CTA target",
+ "display_name": "Twitter",
+ "key": "author_twitter",
+ "type": "text",
+ "description": "The Twitter name of the author",
"required": false
},
- "cta_label": {
+ "author_email": {
"id": 0,
"pos": 0,
- "display_name": "Label",
- "key": "cta_label",
+ "display_name": "Email",
+ "key": "author_email",
"type": "text",
- "default_value": "See more",
- "description": "The text label displayed on the link",
+ "description": "The Email of the author",
"required": false
},
- "cta_toggle": {
+ "socialSharing": {
"id": 0,
"pos": 0,
- "display_name": "Toggle",
- "key": "cta_toggle",
- "type": "boolean",
- "default_value": true,
- "description": "Activate/disable the CTAs",
- "required": false
+ "display_name": "SocialSharing",
+ "key": "socialSharing",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "socialSharing"
+ ]
},
- "cta_style": {
+ "readingTime": {
"id": 0,
"pos": 0,
- "display_name": "Style",
- "key": "cta_style",
- "type": "option",
- "default_value": "link",
- "description": "Choose the style of the CTA",
- "options": [
- {
- "name": "button",
- "value": "button",
- "_uid": "22b03fae-5a38-48f4-b065-ef77dbf31a0b"
- },
- {
- "name": "link",
- "value": "link",
- "_uid": "95e1b2c8-7757-43c1-86e1-0da91c20c771"
- },
- {
- "name": "intext",
- "value": "intext",
- "_uid": "2e9d079e-7666-4095-8146-46b34fcb5c7b"
- }
- ],
+ "display_name": "ReadingTime",
+ "key": "readingTime",
+ "type": "text",
+ "description": "The reading time for the blog post",
"required": false
},
- "type": {
+ "date": {
"id": 0,
"pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "feature"
- }
- },
- "is_nestable": true,
- "real_name": "Feature",
- "color": "#05566a",
- "icon": "block-wallet"
- },
- {
- "name": "images",
- "display_name": "Images",
- "created_at": "2024-09-05T10:51:57.953Z",
- "updated_at": "2024-09-05T10:51:57.953Z",
- "id": 3,
- "schema": {
- "src": {
- "id": 0,
- "pos": 0,
- "display_name": "Src",
- "key": "src",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "The source of the image",
+ "display_name": "Date",
+ "key": "date",
+ "type": "datetime",
+ "disable_time": true,
+ "description": "The date when the blog post was published",
"required": false
},
- "alt": {
+ "className": {
"id": 0,
"pos": 0,
- "display_name": "Alt",
- "key": "alt",
+ "display_name": "ClassName",
+ "key": "className",
"type": "text",
- "description": "Alt text of the image",
"required": false
},
- "caption": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "Caption",
- "key": "caption",
- "type": "markdown",
- "description": "The caption of the image",
- "required": false
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "blog-aside"
}
},
"is_nestable": true,
- "real_name": "Images",
+ "real_name": "Blog Aside",
"color": "#05566a",
- "icon": "block-wallet"
+ "icon": "block-wallet",
+ "image": "//a.storyblok.com/f/284989/390x646/3689b8eebc/blog-blog-aside-default.png"
},
{
- "name": "logo",
- "display_name": "Logo",
- "created_at": "2024-09-05T10:51:57.962Z",
- "updated_at": "2024-09-05T10:51:57.962Z",
- "id": 6,
+ "name": "buttons",
+ "display_name": "Buttons",
+ "created_at": "2024-04-15T21:18:48.726Z",
+ "updated_at": "2024-04-15T21:18:48.726Z",
+ "id": 4,
"schema": {
- "src": {
+ "label": {
"id": 0,
"pos": 0,
- "display_name": "Src",
- "key": "src",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "The URL of the logo image",
+ "display_name": "Label",
+ "key": "label",
+ "type": "text",
+ "description": "Text content to display inside the button",
"required": false
},
- "alt": {
+ "icon": {
"id": 0,
"pos": 0,
- "display_name": "Alt",
- "key": "alt",
+ "display_name": "Icon",
+ "key": "icon",
"type": "text",
- "description": "The alt text of the logo",
+ "description": "Choose an icon",
+ "required": false
+ },
+ "target": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Target",
+ "key": "target",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "description": "Target that should be linked, makes the button behave like a link semantically",
"required": false
}
},
"is_nestable": true,
- "real_name": "Logo",
+ "real_name": "Buttons",
"color": "#05566a",
"icon": "block-wallet"
},
{
- "name": "tile",
- "display_name": "Tile",
- "created_at": "2024-09-05T10:51:57.965Z",
- "updated_at": "2024-09-05T10:51:57.965Z",
- "id": 7,
+ "name": "cta",
+ "display_name": "Cta",
+ "created_at": "2024-04-15T21:18:48.726Z",
+ "updated_at": "2024-04-15T21:18:48.726Z",
+ "id": 5,
"schema": {
"headline": {
"id": 0,
"pos": 0,
"display_name": "Headline",
"key": "headline",
- "type": "markdown",
- "description": "Headline for the tile",
+ "type": "text",
+ "description": "Headline for the Component element",
"required": false
},
"sub": {
@@ -334,8 +322,8 @@
"pos": 0,
"display_name": "Sub",
"key": "sub",
- "type": "markdown",
- "description": "Subheadline below the tile headline",
+ "type": "text",
+ "description": "Subheadline below the component headline",
"required": false
},
"text": {
@@ -343,97 +331,49 @@
"pos": 0,
"display_name": "Text",
"key": "text",
- "type": "markdown",
- "description": "Text for tile",
- "required": false
- },
- "tab-ba1bc552-2d04-4141-acae-042be9976bc4": {
- "id": 0,
- "pos": 0,
- "display_name": "Image",
- "key": "tab-ba1bc552-2d04-4141-acae-042be9976bc4",
- "keys": [
- "image_src",
- "image_alt"
- ],
- "type": "tab",
- "required": false
- },
- "image_src": {
- "id": 0,
- "pos": 0,
- "display_name": "Src",
- "key": "image_src",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Picture source",
- "required": false
- },
- "image_alt": {
- "id": 0,
- "pos": 0,
- "display_name": "Alt",
- "key": "image_alt",
"type": "text",
- "description": "Alt text to display for picture",
- "required": false
- },
- "tab-cbf9a923-1cd8-4ff5-9d5e-cfb478f90d02": {
- "id": 0,
- "pos": 0,
- "display_name": "Button",
- "key": "tab-cbf9a923-1cd8-4ff5-9d5e-cfb478f90d02",
- "keys": [
- "button_toggle",
- "button_label",
- "button_target",
- "button_icon"
- ],
- "type": "tab",
+ "description": "Info text for the component element",
"required": false
},
- "button_toggle": {
+ "highlightText": {
"id": 0,
"pos": 0,
- "display_name": "Toggle",
- "key": "button_toggle",
+ "display_name": "HighlightText",
+ "key": "highlightText",
"type": "boolean",
- "default_value": true,
- "description": "Toggle wether the Button is displayed or not",
+ "description": "Visually highlight the text",
"required": false
},
- "button_label": {
+ "colorNeutral": {
"id": 0,
"pos": 0,
- "display_name": "Label",
- "key": "button_label",
- "type": "text",
- "description": "Text content to display inside the button",
+ "display_name": "ColorNeutral",
+ "key": "colorNeutral",
+ "type": "boolean",
+ "description": "Make the text and buttons color neutral",
"required": false
},
- "button_target": {
+ "fullWidth": {
"id": 0,
"pos": 0,
- "display_name": "Target",
- "key": "button_target",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "description": "Target that should be linked, makes the button behave like a link semantically",
+ "display_name": "FullWidth",
+ "key": "fullWidth",
+ "type": "boolean",
+ "description": "Set the width of the content to the full width of the element",
"required": false
},
- "button_icon": {
+ "buttons": {
"id": 0,
"pos": 0,
- "display_name": "Icon",
- "key": "button_icon",
- "type": "text",
- "description": "Choose an icon",
- "required": false
+ "display_name": "Buttons",
+ "key": "buttons",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "buttons"
+ ],
+ "description": "Button"
},
"backgroundColor": {
"id": 0,
@@ -456,71 +396,130 @@
"description": "Background image for the whole element",
"required": false
},
- "textColor": {
+ "tab-29d6ef6f-5582-4d03-9d76-59af58a58bc9": {
"id": 0,
"pos": 0,
- "display_name": "TextColor",
- "key": "textColor",
- "type": "text",
- "description": "Overwrite the color to use for the text content",
+ "display_name": "Image",
+ "key": "tab-29d6ef6f-5582-4d03-9d76-59af58a58bc9",
+ "keys": [
+ "image_src",
+ "image_padding",
+ "image_alt"
+ ],
+ "type": "tab",
+ "description": "Image displayed alongside the text content",
"required": false
},
- "type": {
+ "image_src": {
"id": 0,
"pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "tile"
- }
- },
- "is_nestable": true,
- "real_name": "Tile",
- "color": "#05566a",
- "icon": "block-wallet"
- },
- {
- "name": "stat",
- "display_name": "Stat",
- "created_at": "2024-09-05T10:51:57.968Z",
- "updated_at": "2024-09-05T10:51:57.968Z",
- "id": 13,
- "schema": {
- "number": {
+ "display_name": "Src",
+ "key": "image_src",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "Image source to use",
+ "required": false
+ },
+ "image_padding": {
"id": 0,
"pos": 0,
- "display_name": "Number",
- "key": "number",
- "type": "number",
- "description": "The number of the stat",
+ "display_name": "Padding",
+ "key": "image_padding",
+ "type": "boolean",
+ "default_value": true,
+ "description": "Toggle padding of the image",
"required": false
},
- "description": {
+ "image_alt": {
"id": 0,
"pos": 0,
- "display_name": "Description",
- "key": "description",
- "type": "markdown",
- "description": "Optional description of the stat",
+ "display_name": "Alt",
+ "key": "image_alt",
+ "type": "text",
+ "description": "Image description",
"required": false
},
- "title": {
+ "tab-a87c9007-49f6-4e78-aeb6-f15e3400082e": {
"id": 0,
"pos": 0,
- "display_name": "Title",
- "key": "title",
- "type": "markdown",
- "description": "Title of the stat",
+ "display_name": "Order",
+ "key": "tab-a87c9007-49f6-4e78-aeb6-f15e3400082e",
+ "keys": [
+ "order_mobileImageLast",
+ "order_desktopImageLast"
+ ],
+ "type": "tab",
+ "description": "Choose what comes first on mobile and desktop: image or text",
"required": false
},
- "icon": {
+ "order_mobileImageLast": {
"id": 0,
"pos": 0,
- "display_name": "Icon",
- "key": "icon",
- "type": "text",
- "description": "Optional icon of the stat",
+ "display_name": "MobileImageLast",
+ "key": "order_mobileImageLast",
+ "type": "boolean",
+ "description": "Switch to displaying the image after the text on mobile",
+ "required": false
+ },
+ "order_desktopImageLast": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "DesktopImageLast",
+ "key": "order_desktopImageLast",
+ "type": "boolean",
+ "default_value": true,
+ "description": "Switch to displaying the image after the text on desktop",
+ "required": false
+ },
+ "textAlign": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "TextAlign",
+ "key": "textAlign",
+ "type": "option",
+ "default_value": "left",
+ "description": "Choose the alginment of the text",
+ "options": [
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "e125608a-55ac-42c1-b44a-9cda6402dcb8"
+ },
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "f291823f-2573-44f3-b2bc-f80916a3483b"
+ }
+ ],
+ "required": false
+ },
+ "contentAlign": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "ContentAlign",
+ "key": "contentAlign",
+ "type": "option",
+ "default_value": "center",
+ "description": "Select a vertical alignment for the image",
+ "options": [
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "b5b9cbd3-e43f-4970-95ad-e4598a2be066"
+ },
+ {
+ "name": "top",
+ "value": "top",
+ "_uid": "5ce02df4-2e18-4454-9b50-3fcccfe0f42c"
+ },
+ {
+ "name": "bottom",
+ "value": "bottom",
+ "_uid": "4c69d587-03db-4ed2-89a9-405c7e0c0650"
+ }
+ ],
"required": false
},
"type": {
@@ -530,88 +529,70 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "stat"
+ "default_value": "cta"
}
},
"is_nestable": true,
- "real_name": "Stat",
+ "real_name": "Cta",
"color": "#05566a",
- "icon": "block-wallet"
+ "icon": "block-wallet",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
+ "component_group_name": "Components",
+ "image": "//a.storyblok.com/f/284989/1000x472/dc206d0921/components-cta-banner.png"
},
{
- "name": "testimonial",
- "display_name": "Testimonial",
- "created_at": "2024-09-05T10:51:57.972Z",
- "updated_at": "2024-09-05T10:51:57.972Z",
- "id": 14,
+ "name": "seo",
+ "display_name": "Seo",
+ "created_at": "2024-04-15T21:18:48.728Z",
+ "updated_at": "2024-04-15T21:18:48.728Z",
+ "id": 6,
"schema": {
- "quote": {
+ "title": {
"id": 0,
"pos": 0,
- "display_name": "Quote",
- "key": "quote",
- "type": "markdown",
- "description": "The testimonial quote",
+ "display_name": "Title",
+ "key": "title",
+ "type": "text",
+ "description": "Title used for the page",
"required": false
},
- "name": {
+ "description": {
"id": 0,
"pos": 0,
- "display_name": "Name",
- "key": "name",
+ "display_name": "Description",
+ "key": "description",
"type": "text",
- "description": "The name of the quote author",
+ "description": "Description used for the page",
"required": false
},
- "title": {
+ "keywords": {
"id": 0,
"pos": 0,
- "display_name": "Title",
- "key": "title",
+ "display_name": "Keywords",
+ "key": "keywords",
"type": "text",
- "description": "The title of the quote author",
+ "description": "Keywords used for the page",
"required": false
},
- "tab-52d1f659-405d-48fd-91b3-8911ac23e2c1": {
+ "image": {
"id": 0,
"pos": 0,
"display_name": "Image",
- "key": "tab-52d1f659-405d-48fd-91b3-8911ac23e2c1",
- "keys": [
- "image_src",
- "image_alt"
- ],
- "type": "tab",
- "required": false
- },
- "image_src": {
- "id": 0,
- "pos": 0,
- "display_name": "Src",
- "key": "image_src",
+ "key": "image",
"type": "asset",
"filetypes": [
"images"
],
- "description": "The image to display with the testimonial",
+ "description": "Preview image used for the page",
"required": false
},
- "image_alt": {
+ "cardImage": {
"id": 0,
"pos": 0,
- "display_name": "Alt",
- "key": "image_alt",
+ "display_name": "CardImage",
+ "key": "cardImage",
"type": "text",
- "description": "The alt text of the image file",
- "required": false
- },
- "rating": {
- "id": 0,
- "pos": 0,
- "display_name": "Rating",
- "key": "rating",
- "type": "number",
- "description": "The rating of the testimonial, from 1 to 5",
+ "description": "Card preview image (larger, e.g. Twitter) used for the page",
"required": false
},
"type": {
@@ -621,233 +602,168 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "testimonial"
+ "default_value": "seo"
}
},
"is_nestable": true,
- "real_name": "Testimonial",
+ "real_name": "Seo",
"color": "#05566a",
"icon": "block-wallet"
},
{
- "name": "cta",
- "display_name": "Cta",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 15,
+ "name": "blog-teaser",
+ "display_name": "Blog Teaser",
+ "created_at": "2024-04-15T21:18:48.731Z",
+ "updated_at": "2024-04-15T21:18:48.731Z",
+ "id": 9,
"schema": {
- "headline": {
+ "date": {
"id": 0,
"pos": 0,
- "display_name": "Headline",
- "key": "headline",
- "type": "markdown",
- "description": "Headline for the Component element",
+ "display_name": "Date",
+ "key": "date",
+ "type": "datetime",
+ "disable_time": true,
+ "description": "The date of the blog post",
"required": false
},
- "sub": {
+ "tags": {
"id": 0,
"pos": 0,
- "display_name": "Sub",
- "key": "sub",
- "type": "markdown",
- "description": "Subheadline below the component headline",
- "required": false
+ "display_name": "Tags",
+ "key": "tags",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "tags"
+ ]
},
- "text": {
+ "headline": {
"id": 0,
"pos": 0,
- "display_name": "Text",
- "key": "text",
+ "display_name": "Headline",
+ "key": "headline",
"type": "markdown",
- "description": "Info text for the component element",
+ "description": "The headline of the blog post",
"required": false
},
- "highlightText": {
+ "teaserText": {
"id": 0,
"pos": 0,
- "display_name": "HighlightText",
- "key": "highlightText",
- "type": "boolean",
- "description": "Visually highlight the text",
+ "display_name": "TeaserText",
+ "key": "teaserText",
+ "type": "markdown",
+ "description": "The teaser text of the blog post",
"required": false
},
- "colorNeutral": {
+ "image": {
"id": 0,
"pos": 0,
- "display_name": "ColorNeutral",
- "key": "colorNeutral",
- "type": "boolean",
- "description": "Make the text and buttons color neutral",
+ "display_name": "Image",
+ "key": "image",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "The preview image for the blog post",
"required": false
},
- "fullWidth": {
+ "tab-3ee9a378-5b53-4637-8f99-21d630eea05b": {
"id": 0,
"pos": 0,
- "display_name": "FullWidth",
- "key": "fullWidth",
- "type": "boolean",
- "description": "Set the width of the content to the full width of the element",
+ "display_name": "Link",
+ "key": "tab-3ee9a378-5b53-4637-8f99-21d630eea05b",
+ "keys": [
+ "link_url",
+ "link_label"
+ ],
+ "type": "tab",
+ "description": "URL and label for the blog post linked",
"required": false
},
- "buttons": {
+ "link_url": {
"id": 0,
"pos": 0,
- "display_name": "Buttons",
- "key": "buttons",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "buttons"
- ],
- "description": "Button"
+ "display_name": "Url",
+ "key": "link_url",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "description": "The blog entry URL to link",
+ "required": false
},
- "backgroundColor": {
+ "link_label": {
"id": 0,
"pos": 0,
- "display_name": "BackgroundColor",
- "key": "backgroundColor",
+ "display_name": "Label",
+ "key": "link_label",
"type": "text",
- "description": "Background color for the whole element",
+ "default_value": "Read more",
+ "description": "The label to use for the link",
"required": false
},
- "backgroundImage": {
+ "readingTime": {
"id": 0,
"pos": 0,
- "display_name": "BackgroundImage",
- "key": "backgroundImage",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Background image for the whole element",
- "required": false
- },
- "tab-d246f41b-c4e5-4588-8056-c5423912a665": {
- "id": 0,
- "pos": 0,
- "display_name": "Image",
- "key": "tab-d246f41b-c4e5-4588-8056-c5423912a665",
- "keys": [
- "image_src",
- "image_padding",
- "image_alt"
- ],
- "type": "tab",
- "description": "Image displayed alongside the text content",
- "required": false
- },
- "image_src": {
- "id": 0,
- "pos": 0,
- "display_name": "Src",
- "key": "image_src",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Image source to use",
- "required": false
- },
- "image_padding": {
- "id": 0,
- "pos": 0,
- "display_name": "Padding",
- "key": "image_padding",
- "type": "boolean",
- "default_value": true,
- "description": "Toggle padding of the image",
- "required": false
- },
- "image_alt": {
- "id": 0,
- "pos": 0,
- "display_name": "Alt",
- "key": "image_alt",
+ "display_name": "ReadingTime",
+ "key": "readingTime",
"type": "text",
- "description": "Image description",
+ "description": "Time to read for the blog post",
"required": false
},
- "tab-ce177256-6aaf-419b-b1cd-871266b08280": {
+ "tab-0e6d71eb-6bec-48e5-b8a7-c1347cbf2fef": {
"id": 0,
"pos": 0,
- "display_name": "Order",
- "key": "tab-ce177256-6aaf-419b-b1cd-871266b08280",
+ "display_name": "Author",
+ "key": "tab-0e6d71eb-6bec-48e5-b8a7-c1347cbf2fef",
"keys": [
- "order_mobileImageLast",
- "order_desktopImageLast"
+ "author_name",
+ "author_title",
+ "author_image"
],
"type": "tab",
- "description": "Choose what comes first on mobile and desktop: image or text",
+ "description": "The author of the blog post",
"required": false
},
- "order_mobileImageLast": {
+ "author_name": {
"id": 0,
"pos": 0,
- "display_name": "MobileImageLast",
- "key": "order_mobileImageLast",
- "type": "boolean",
- "description": "Switch to displaying the image after the text on mobile",
+ "display_name": "Name",
+ "key": "author_name",
+ "type": "text",
+ "description": "The name of the author",
"required": false
},
- "order_desktopImageLast": {
+ "author_title": {
"id": 0,
"pos": 0,
- "display_name": "DesktopImageLast",
- "key": "order_desktopImageLast",
- "type": "boolean",
- "default_value": true,
- "description": "Switch to displaying the image after the text on desktop",
+ "display_name": "Title",
+ "key": "author_title",
+ "type": "text",
+ "description": "The title of the author",
"required": false
},
- "textAlign": {
+ "author_image": {
"id": 0,
"pos": 0,
- "display_name": "TextAlign",
- "key": "textAlign",
- "type": "option",
- "default_value": "left",
- "description": "Choose the alginment of the text",
- "options": [
- {
- "name": "left",
- "value": "left",
- "_uid": "a4b17041-c9f7-4c02-a469-578e471e116a"
- },
- {
- "name": "center",
- "value": "center",
- "_uid": "95abd283-d1ad-4789-ac8c-d2299ff84849"
- }
+ "display_name": "Image",
+ "key": "author_image",
+ "type": "asset",
+ "filetypes": [
+ "images"
],
+ "description": "The image URL of the author",
"required": false
},
- "contentAlign": {
+ "className": {
"id": 0,
"pos": 0,
- "display_name": "ContentAlign",
- "key": "contentAlign",
- "type": "option",
- "default_value": "center",
- "description": "Select a vertical alignment for the image",
- "options": [
- {
- "name": "center",
- "value": "center",
- "_uid": "9237bcfc-523c-450a-900e-512c4e5b20a6"
- },
- {
- "name": "top",
- "value": "top",
- "_uid": "034b7aa4-4dfe-40cc-82db-84f5faaae33c"
- },
- {
- "name": "bottom",
- "value": "bottom",
- "_uid": "f4f6a6f5-5721-40c0-8709-132be8470f07"
- }
- ],
+ "display_name": "ClassName",
+ "key": "className",
+ "type": "text",
"required": false
},
"type": {
@@ -857,49 +773,80 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "cta"
+ "default_value": "blog-teaser"
}
},
"is_nestable": true,
- "real_name": "Components",
+ "real_name": "Blog Teaser",
"color": "#05566a",
"icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
"component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1000x472/f1941a7bd7/components-cta-banner.png"
+ "image": "//a.storyblok.com/f/284989/1000x504/fad7e261fa/blog-blog-teaser-default.png"
},
{
- "name": "features",
- "display_name": "Features",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 16,
+ "name": "questions",
+ "display_name": "Questions",
+ "created_at": "2024-04-15T21:18:48.734Z",
+ "updated_at": "2024-04-15T21:18:48.734Z",
+ "id": 19,
"schema": {
- "layout": {
+ "question": {
"id": 0,
"pos": 0,
- "display_name": "Layout",
- "key": "layout",
- "type": "option",
- "default_value": "largeTiles",
- "description": "The layout variant to use for the features",
- "options": [
- {
- "name": "largeTiles",
- "value": "largeTiles",
- "_uid": "403e7b91-1a10-4638-8b49-a21234b2a078"
- },
- {
- "name": "smallTiles",
- "value": "smallTiles",
- "_uid": "0d6dbb31-01cb-4b8b-aad9-b22c9ccad325"
- },
- {
- "name": "list",
- "value": "list",
- "_uid": "744a1295-1f35-4529-ad22-9a414861c07d"
- }
- ],
+ "display_name": "Question",
+ "key": "question",
+ "type": "markdown",
+ "description": "The question",
+ "required": false
+ },
+ "answer": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Answer",
+ "key": "answer",
+ "type": "markdown",
+ "description": "The answer to the question",
+ "required": false
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Questions",
+ "color": "#05566a",
+ "icon": "block-wallet"
+ },
+ {
+ "name": "feature",
+ "display_name": "Feature",
+ "created_at": "2024-04-15T21:18:48.736Z",
+ "updated_at": "2024-04-15T21:18:48.736Z",
+ "id": 20,
+ "schema": {
+ "icon": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Icon",
+ "key": "icon",
+ "type": "text",
+ "description": "The icon for the feature",
+ "required": false
+ },
+ "title": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Title",
+ "key": "title",
+ "type": "text",
+ "description": "The title of the feature",
+ "required": false
+ },
+ "text": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Text",
+ "key": "text",
+ "type": "text",
+ "description": "The description of the feature",
"required": false
},
"style": {
@@ -913,194 +860,191 @@
{
"name": "intext",
"value": "intext",
- "_uid": "4f0609f3-8ecd-4fce-9683-8e9d8ba2fa6a"
+ "_uid": "b322a83c-f4a5-4c3a-a3d6-d1cdb2d298d1"
},
{
"name": "stack",
"value": "stack",
- "_uid": "d11c68fd-79fb-48e7-8d93-073654be6e99"
+ "_uid": "7654b305-a986-42e4-832a-9ce5dc4c17ae"
},
{
"name": "centered",
"value": "centered",
- "_uid": "8afddeb3-6b87-44b7-a378-73980c8419e6"
+ "_uid": "0f754bae-2816-423f-afff-a6c71897cdb7"
},
{
"name": "besideLarge",
"value": "besideLarge",
- "_uid": "54a26bef-aaa5-4d10-b4f8-63b505686bd8"
+ "_uid": "30c0e908-bb33-4831-beed-90af9f401622"
},
{
"name": "besideSmall",
"value": "besideSmall",
- "_uid": "90eaaebb-5494-4a5f-8fd7-69b29bb682bf"
+ "_uid": "378d51c3-f31b-4dca-922b-f6dd48452ac0"
}
],
"required": false
},
- "tab-0f4ada49-e8c7-43f4-ab20-df34fedfdcb6": {
+ "tab-d9d4424d-6c05-4e1e-82ad-633dc3f95f4e": {
"id": 0,
"pos": 0,
- "display_name": "Ctas",
- "key": "tab-0f4ada49-e8c7-43f4-ab20-df34fedfdcb6",
+ "display_name": "Cta",
+ "key": "tab-d9d4424d-6c05-4e1e-82ad-633dc3f95f4e",
"keys": [
- "ctas_toggle",
- "ctas_style"
+ "cta_target",
+ "cta_label",
+ "cta_toggle",
+ "cta_style"
],
"type": "tab",
+ "description": "The call to action",
"required": false
},
- "ctas_toggle": {
+ "cta_target": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Target",
+ "key": "cta_target",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "default_value": "#",
+ "description": "The CTA target",
+ "required": false
+ },
+ "cta_label": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Label",
+ "key": "cta_label",
+ "type": "text",
+ "default_value": "See more",
+ "description": "The text label displayed on the link",
+ "required": false
+ },
+ "cta_toggle": {
"id": 0,
"pos": 0,
"display_name": "Toggle",
- "key": "ctas_toggle",
+ "key": "cta_toggle",
"type": "boolean",
"default_value": true,
"description": "Activate/disable the CTAs",
"required": false
},
- "ctas_style": {
+ "cta_style": {
"id": 0,
"pos": 0,
"display_name": "Style",
- "key": "ctas_style",
+ "key": "cta_style",
"type": "option",
"default_value": "link",
+ "description": "Choose the style of the CTA",
"options": [
{
"name": "button",
"value": "button",
- "_uid": "57e13b44-a3d9-4f27-a583-931adfecec6d"
+ "_uid": "294e6ca6-6f50-48bf-825e-8414565aa4d3"
},
{
"name": "link",
"value": "link",
- "_uid": "2508931f-4dff-4f79-9dbf-6618ee4c0161"
+ "_uid": "d2c73677-c39a-4627-a3de-8f8bb9a386d3"
},
{
"name": "intext",
"value": "intext",
- "_uid": "78a9ef0d-3552-4c7f-8e63-c1a9522044ef"
+ "_uid": "fe6fad98-5e44-4d1b-a8de-33603c48223a"
}
],
"required": false
},
- "feature": {
- "id": 0,
- "pos": 0,
- "display_name": "Feature",
- "key": "feature",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "feature"
- ],
- "description": "Partial Component used to display a feature"
- },
- "type": {
+ "type": {
"id": 0,
"pos": 0,
"display_name": "Type",
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "features"
+ "default_value": "feature"
}
},
"is_nestable": true,
- "real_name": "Components",
+ "real_name": "Feature",
"color": "#05566a",
- "icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
- "component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1440x666/88ba598e61/components-features-icon-centered.png"
+ "icon": "block-wallet"
},
{
- "name": "gallery",
- "display_name": "Gallery",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 17,
+ "name": "images",
+ "display_name": "Images",
+ "created_at": "2024-04-15T21:18:48.738Z",
+ "updated_at": "2024-04-15T21:18:48.738Z",
+ "id": 21,
"schema": {
- "images": {
+ "src": {
"id": 0,
"pos": 0,
- "display_name": "Images",
- "key": "images",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
+ "display_name": "Src",
+ "key": "src",
+ "type": "asset",
+ "filetypes": [
"images"
- ]
+ ],
+ "description": "The source of the image",
+ "required": false
},
- "layout": {
+ "alt": {
"id": 0,
"pos": 0,
- "display_name": "Layout",
- "key": "layout",
- "type": "option",
- "description": "The layout of the gallery images",
- "options": [
- {
- "name": "stack",
- "value": "stack",
- "_uid": "00f10eec-e994-4c21-aa7d-8f45f166760d"
- },
- {
- "name": "smallTiles",
- "value": "smallTiles",
- "_uid": "5f035799-088f-4e3f-8daa-da6d3fe446fb"
- },
- {
- "name": "largeTiles",
- "value": "largeTiles",
- "_uid": "d92bb341-f396-4789-86c9-485c9ad793e1"
- }
- ],
+ "display_name": "Alt",
+ "key": "alt",
+ "type": "text",
+ "description": "Alt text of the image",
"required": false
},
- "aspectRatio": {
+ "caption": {
"id": 0,
"pos": 0,
- "display_name": "AspectRatio",
- "key": "aspectRatio",
- "type": "option",
- "default_value": "unset",
- "description": "The aspect ratio of the gallery images",
- "options": [
- {
- "name": "unset",
- "value": "unset",
- "_uid": "b42c7a29-522f-4e02-9611-a1dc5c75e03a"
- },
- {
- "name": "square",
- "value": "square",
- "_uid": "1a00f3a3-138b-481a-b0f2-47886adf6bee"
- },
- {
- "name": "wide",
- "value": "wide",
- "_uid": "e5553534-2d1e-49ad-9694-d351dda1a0b6"
- },
- {
- "name": "landscape",
- "value": "landscape",
- "_uid": "2507e79c-5298-4682-b841-028852326d2f"
- }
+ "display_name": "Caption",
+ "key": "caption",
+ "type": "markdown",
+ "description": "The caption of the image",
+ "required": false
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Images",
+ "color": "#05566a",
+ "icon": "block-wallet"
+ },
+ {
+ "name": "logo",
+ "display_name": "Logo",
+ "created_at": "2024-04-15T21:18:48.744Z",
+ "updated_at": "2024-04-15T21:18:48.744Z",
+ "id": 24,
+ "schema": {
+ "src": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Src",
+ "key": "src",
+ "type": "asset",
+ "filetypes": [
+ "images"
],
+ "description": "The URL of the logo image",
"required": false
},
- "lightbox": {
+ "alt": {
"id": 0,
"pos": 0,
- "display_name": "Lightbox",
- "key": "lightbox",
- "type": "boolean",
- "description": "Display images in a lightbox gallery",
+ "display_name": "Alt",
+ "key": "alt",
+ "type": "text",
+ "description": "The alt text of the logo",
"required": false
},
"type": {
@@ -1110,31 +1054,28 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "gallery"
+ "default_value": "logo"
}
},
"is_nestable": true,
- "real_name": "Components",
+ "real_name": "Logo",
"color": "#05566a",
- "icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
- "component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1100x702/622b6ffed6/components-gallery-small-squares-with-lightbox.png"
+ "icon": "block-wallet"
},
{
- "name": "hero",
- "display_name": "Hero",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 18,
+ "name": "tiles",
+ "display_name": "Tiles",
+ "created_at": "2024-04-15T21:18:48.747Z",
+ "updated_at": "2024-04-15T21:18:48.747Z",
+ "id": 25,
"schema": {
"headline": {
"id": 0,
"pos": 0,
"display_name": "Headline",
"key": "headline",
- "type": "markdown",
- "description": "Headline for the visual",
+ "type": "text",
+ "description": "Headline for the tile",
"required": false
},
"sub": {
@@ -1142,8 +1083,8 @@
"pos": 0,
"display_name": "Sub",
"key": "sub",
- "type": "markdown",
- "description": "Subheadline below the module headline",
+ "type": "text",
+ "description": "Subheadline below the tile headline",
"required": false
},
"text": {
@@ -1151,223 +1092,175 @@
"pos": 0,
"display_name": "Text",
"key": "text",
- "type": "markdown",
- "description": "Info text for the module element",
+ "type": "text",
+ "description": "Text for tile",
"required": false
},
- "highlightText": {
+ "tab-1255a94c-389d-4c0f-9bcf-f024c94fb048": {
"id": 0,
"pos": 0,
- "display_name": "HighlightText",
- "key": "highlightText",
- "type": "boolean",
- "description": "Visually highlight the text",
+ "display_name": "Image",
+ "key": "tab-1255a94c-389d-4c0f-9bcf-f024c94fb048",
+ "keys": [
+ "image_src",
+ "image_alt"
+ ],
+ "type": "tab",
"required": false
},
- "colorNeutral": {
+ "image_src": {
"id": 0,
"pos": 0,
- "display_name": "ColorNeutral",
- "key": "colorNeutral",
- "type": "boolean",
- "description": "Make the text and buttons color neutral",
+ "display_name": "Src",
+ "key": "image_src",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "Picture source",
"required": false
},
- "height": {
+ "image_alt": {
"id": 0,
"pos": 0,
- "display_name": "Height",
- "key": "height",
- "type": "option",
- "default_value": "default",
- "description": "Height",
- "options": [
- {
- "name": "small",
- "value": "small",
- "_uid": "17ca66a3-54a2-46f4-a1a1-c75e2cd121a3"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "fd9f68fe-e403-4295-bf52-9bdecaae49c3"
- },
- {
- "name": "fullImage",
- "value": "fullImage",
- "_uid": "8f9b8d78-2d9e-4b07-a6da-61f848c18601"
- },
- {
- "name": "fullScreen",
- "value": "fullScreen",
- "_uid": "02df2649-9625-42d2-8c7b-a7afabaa7ab5"
- }
- ],
+ "display_name": "Alt",
+ "key": "image_alt",
+ "type": "text",
+ "description": "Alt text to display for picture",
"required": false
},
- "textbox": {
+ "tab-778359dc-dfff-4571-9106-d810f9b73bce": {
"id": 0,
"pos": 0,
- "display_name": "Textbox",
- "key": "textbox",
- "type": "boolean",
- "default_value": true,
- "description": "Toggle wether you want your text to be displayed within in box",
+ "display_name": "Button",
+ "key": "tab-778359dc-dfff-4571-9106-d810f9b73bce",
+ "keys": [
+ "button_toggle",
+ "button_label",
+ "button_target",
+ "button_icon"
+ ],
+ "type": "tab",
"required": false
},
- "buttons": {
+ "button_toggle": {
"id": 0,
"pos": 0,
- "display_name": "Buttons",
- "key": "buttons",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "buttons"
- ],
- "description": "Button"
+ "display_name": "Toggle",
+ "key": "button_toggle",
+ "type": "boolean",
+ "default_value": true,
+ "description": "Toggle wether the Button is displayed or not",
+ "required": false
},
- "overlay": {
+ "button_label": {
"id": 0,
"pos": 0,
- "display_name": "Overlay",
- "key": "overlay",
- "type": "boolean",
- "description": "Enable grid layer",
+ "display_name": "Label",
+ "key": "button_label",
+ "type": "text",
+ "description": "Text content to display inside the button",
"required": false
},
- "tab-5da43e11-b2a3-49e7-83a2-a5a43699432e": {
+ "button_target": {
"id": 0,
"pos": 0,
- "display_name": "Image",
- "key": "tab-5da43e11-b2a3-49e7-83a2-a5a43699432e",
- "keys": [
- "image_srcMobile",
- "image_srcTablet",
- "image_srcDesktop",
- "image_src",
- "image_indent",
- "image_alt"
- ],
- "type": "tab",
- "description": "Sources of background images for different screen sizes",
+ "display_name": "Target",
+ "key": "button_target",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "description": "Target that should be linked, makes the button behave like a link semantically",
"required": false
},
- "image_srcMobile": {
+ "button_icon": {
"id": 0,
"pos": 0,
- "display_name": "SrcMobile",
- "key": "image_srcMobile",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Background image source for small screens",
+ "display_name": "Icon",
+ "key": "button_icon",
+ "type": "text",
+ "description": "Choose an icon",
"required": false
},
- "image_srcTablet": {
+ "backgroundColor": {
"id": 0,
"pos": 0,
- "display_name": "SrcTablet",
- "key": "image_srcTablet",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Background image source for medium screens",
+ "display_name": "BackgroundColor",
+ "key": "backgroundColor",
+ "type": "text",
+ "description": "Background color for the whole element",
"required": false
},
- "image_srcDesktop": {
+ "backgroundImage": {
"id": 0,
"pos": 0,
- "display_name": "SrcDesktop",
- "key": "image_srcDesktop",
+ "display_name": "BackgroundImage",
+ "key": "backgroundImage",
"type": "asset",
"filetypes": [
"images"
],
- "description": "Background image source for large screens",
+ "description": "Background image for the whole element",
"required": false
},
- "image_src": {
+ "textColor": {
"id": 0,
"pos": 0,
- "display_name": "Src",
- "key": "image_src",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Override for img tag of picture element, if needed",
+ "display_name": "TextColor",
+ "key": "textColor",
+ "type": "text",
+ "description": "Overwrite the color to use for the text content",
+ "required": false
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Tiles",
+ "color": "#05566a",
+ "icon": "block-wallet"
+ },
+ {
+ "name": "stat",
+ "display_name": "Stat",
+ "created_at": "2024-04-15T21:18:48.750Z",
+ "updated_at": "2024-04-15T21:18:48.750Z",
+ "id": 26,
+ "schema": {
+ "number": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Number",
+ "key": "number",
+ "type": "number",
+ "description": "The number of the stat",
"required": false
},
- "image_indent": {
+ "description": {
"id": 0,
"pos": 0,
- "display_name": "Indent",
- "key": "image_indent",
- "type": "option",
- "default_value": "none",
- "description": "Choose to indent the image horizontally on small screens",
- "options": [
- {
- "name": "none",
- "value": "none",
- "_uid": "ddf1afc1-3b7b-487d-98a6-79695274c13d"
- },
- {
- "name": "left",
- "value": "left",
- "_uid": "8859fc2d-97af-40ce-84e5-fd39a1fb6d74"
- },
- {
- "name": "right",
- "value": "right",
- "_uid": "437b8317-3e93-4e54-9754-be5ea66994ce"
- }
- ],
+ "display_name": "Description",
+ "key": "description",
+ "type": "markdown",
+ "description": "Optional description of the stat",
"required": false
},
- "image_alt": {
+ "title": {
"id": 0,
"pos": 0,
- "display_name": "Alt",
- "key": "image_alt",
- "type": "text",
- "description": "Alt text to display for picture",
+ "display_name": "Title",
+ "key": "title",
+ "type": "markdown",
+ "description": "Title of the stat",
"required": false
},
- "textPosition": {
+ "icon": {
"id": 0,
"pos": 0,
- "display_name": "TextPosition",
- "key": "textPosition",
- "type": "option",
- "default_value": "bottom",
- "description": "Choose the alginment of the module content",
- "options": [
- {
- "name": "center",
- "value": "center",
- "_uid": "0d0ddb82-3871-4267-b961-1a0c7dc5c852"
- },
- {
- "name": "below",
- "value": "below",
- "_uid": "5e3ee604-a350-4cd2-b2df-8997745db713"
- },
- {
- "name": "left",
- "value": "left",
- "_uid": "3aac650e-b807-4372-94e7-5bbfd6e9da9a"
- },
- {
- "name": "right",
- "value": "right",
- "_uid": "924c3150-e6ed-4278-a4a9-a33f172c6799"
- }
- ],
+ "display_name": "Icon",
+ "key": "icon",
+ "type": "text",
+ "description": "Optional icon of the stat",
"required": false
},
"type": {
@@ -1377,47 +1270,53 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "hero"
+ "default_value": "stat"
}
},
"is_nestable": true,
- "real_name": "Components",
+ "real_name": "Stat",
"color": "#05566a",
- "icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
- "component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1165x780/df0d8d9712/components-hero-text-below-image.png"
+ "icon": "block-wallet"
},
{
- "name": "image-text",
- "display_name": "Image Text",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 19,
+ "name": "testimonial",
+ "display_name": "Testimonial",
+ "created_at": "2024-04-15T21:18:48.754Z",
+ "updated_at": "2024-04-15T21:18:48.754Z",
+ "id": 27,
"schema": {
- "text": {
+ "quote": {
"id": 0,
"pos": 0,
- "display_name": "Text",
- "key": "text",
+ "display_name": "Quote",
+ "key": "quote",
"type": "markdown",
- "description": "Text content to display beside the image",
+ "description": "The testimonial quote",
"required": false
},
- "highlightText": {
+ "name": {
"id": 0,
"pos": 0,
- "display_name": "HighlightText",
- "key": "highlightText",
- "type": "boolean",
- "description": "Visually highlight the text",
+ "display_name": "Name",
+ "key": "name",
+ "type": "text",
+ "description": "The name of the quote author",
+ "required": false
+ },
+ "title": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Title",
+ "key": "title",
+ "type": "text",
+ "description": "The title of the quote author",
"required": false
},
- "tab-c1e15cff-143f-4999-801c-6b6af4b9e681": {
+ "tab-ed3fa4da-d370-46f0-b578-c977b5548733": {
"id": 0,
"pos": 0,
"display_name": "Image",
- "key": "tab-c1e15cff-143f-4999-801c-6b6af4b9e681",
+ "key": "tab-ed3fa4da-d370-46f0-b578-c977b5548733",
"keys": [
"image_src",
"image_alt"
@@ -1434,7 +1333,7 @@
"filetypes": [
"images"
],
- "description": "URL of the image to display",
+ "description": "The image to display with the testimonial",
"required": false
},
"image_alt": {
@@ -1443,38 +1342,16 @@
"display_name": "Alt",
"key": "image_alt",
"type": "text",
- "description": "Alt text of the image",
+ "description": "The alt text of the image file",
"required": false
},
- "layout": {
+ "rating": {
"id": 0,
"pos": 0,
- "display_name": "Layout",
- "key": "layout",
- "type": "option",
- "description": "Position of the image relative to the text",
- "options": [
- {
- "name": "above",
- "value": "above",
- "_uid": "7f4e4771-2c24-4d4a-922f-274e731d4140"
- },
- {
- "name": "below",
- "value": "below",
- "_uid": "1df48d68-3005-4c3b-bf1a-9aa6683f29ac"
- },
- {
- "name": "beside-right",
- "value": "beside_right",
- "_uid": "08817619-141e-452d-befb-247021be2f9a"
- },
- {
- "name": "beside-left",
- "value": "beside_left",
- "_uid": "f06adc9a-29f3-454e-bcfc-59934bcde394"
- }
- ],
+ "display_name": "Rating",
+ "key": "rating",
+ "type": "number",
+ "description": "The rating of the testimonial, from 1 to 5",
"required": false
},
"type": {
@@ -1484,155 +1361,182 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "image-text"
+ "default_value": "testimonial"
}
},
"is_nestable": true,
- "real_name": "Components",
+ "real_name": "Testimonial",
"color": "#05566a",
- "icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
- "component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1240x515/378da43f36/components-image-text-beside-right-layout.png"
+ "icon": "block-wallet"
},
{
- "name": "logos",
- "display_name": "Logos",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 20,
+ "name": "faq",
+ "display_name": "Faq",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 30,
"schema": {
- "tagline": {
- "id": 0,
- "pos": 0,
- "display_name": "Tagline",
- "key": "tagline",
- "type": "text",
- "description": "A short tagline atop the logos",
- "required": false
- },
- "logo": {
+ "questions": {
"id": 0,
"pos": 0,
- "display_name": "Logo",
- "key": "logo",
+ "display_name": "Questions",
+ "key": "questions",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "logo"
- ],
- "description": "Logo entry for Logos component"
+ "questions"
+ ]
},
- "align": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "Align",
- "key": "align",
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "faq"
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Components",
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
+ "component_group_name": "Components",
+ "image": "//a.storyblok.com/f/284989/820x455/7e1d7b48f1/components-faq-dropdown-list.png"
+ },
+ {
+ "name": "features",
+ "display_name": "Features",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 31,
+ "schema": {
+ "layout": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Layout",
+ "key": "layout",
"type": "option",
- "default_value": "center",
- "description": "The alignment of the logo layout",
+ "default_value": "largeTiles",
+ "description": "The layout variant to use for the features",
"options": [
{
- "name": "left",
- "value": "left",
- "_uid": "a9063e54-f984-48be-bcec-80ac88eb5f04"
+ "name": "largeTiles",
+ "value": "largeTiles",
+ "_uid": "77cf66ea-d21f-4c0d-9036-77f94a15fc0f"
},
{
- "name": "center",
- "value": "center",
- "_uid": "1e5f301e-295c-49c6-a46b-4ef8e65cfea7"
+ "name": "smallTiles",
+ "value": "smallTiles",
+ "_uid": "7dae8e61-238b-47a2-b77f-a3a25ed46032"
+ },
+ {
+ "name": "list",
+ "value": "list",
+ "_uid": "1a645e7d-da92-4fcf-bd91-2c40a7538bbe"
}
],
"required": false
},
- "logosPerRow": {
+ "style": {
"id": 0,
"pos": 0,
- "display_name": "LogosPerRow",
- "key": "logosPerRow",
- "type": "number",
- "description": "The amount of logos to display per row",
+ "display_name": "Style",
+ "key": "style",
+ "type": "option",
+ "default_value": "stack",
+ "options": [
+ {
+ "name": "intext",
+ "value": "intext",
+ "_uid": "48fac46a-88fd-410d-bcee-c9cbf75d2f81"
+ },
+ {
+ "name": "stack",
+ "value": "stack",
+ "_uid": "3a176371-2dd5-4e41-bf2a-1ec5c0004cbe"
+ },
+ {
+ "name": "centered",
+ "value": "centered",
+ "_uid": "77f1cb20-84ba-4d69-9f5d-ea3d65e0f0fa"
+ },
+ {
+ "name": "besideLarge",
+ "value": "besideLarge",
+ "_uid": "dba001b2-5d41-4be7-aa09-79ddda315d39"
+ },
+ {
+ "name": "besideSmall",
+ "value": "besideSmall",
+ "_uid": "3b96557c-5d0b-4510-8ab8-aaa83e9d8d3b"
+ }
+ ],
"required": false
},
- "tab-136c6267-1351-4a9e-8ec4-c1c224bbcc9e": {
+ "tab-c9929ae7-5eb8-4dca-a429-6c9857104a0c": {
"id": 0,
"pos": 0,
- "display_name": "Cta",
- "key": "tab-136c6267-1351-4a9e-8ec4-c1c224bbcc9e",
+ "display_name": "Ctas",
+ "key": "tab-c9929ae7-5eb8-4dca-a429-6c9857104a0c",
"keys": [
- "cta_toggle",
- "cta_text",
- "cta_link",
- "cta_label",
- "cta_style"
+ "ctas_toggle",
+ "ctas_style"
],
"type": "tab",
- "description": "The call to action",
"required": false
},
- "cta_toggle": {
+ "ctas_toggle": {
"id": 0,
"pos": 0,
"display_name": "Toggle",
- "key": "cta_toggle",
+ "key": "ctas_toggle",
"type": "boolean",
- "description": "Activate/disable the CTA",
- "required": false
- },
- "cta_text": {
- "id": 0,
- "pos": 0,
- "display_name": "Text",
- "key": "cta_text",
- "type": "text",
- "description": "A short CTA text",
- "required": false
- },
- "cta_link": {
- "id": 0,
- "pos": 0,
- "display_name": "Link",
- "key": "cta_link",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "default_value": "#",
- "description": "The CTA link",
- "required": false
- },
- "cta_label": {
- "id": 0,
- "pos": 0,
- "display_name": "Label",
- "key": "cta_label",
- "type": "text",
- "description": "The text label displayed on the link",
+ "default_value": true,
+ "description": "Activate/disable the CTAs",
"required": false
},
- "cta_style": {
+ "ctas_style": {
"id": 0,
"pos": 0,
"display_name": "Style",
- "key": "cta_style",
+ "key": "ctas_style",
"type": "option",
- "default_value": "text",
+ "default_value": "link",
"options": [
{
"name": "button",
"value": "button",
- "_uid": "3bb1d4bc-8074-4234-9ba1-f8bb1f6853f0"
+ "_uid": "c16c1520-9ae2-4fd1-aaa7-6762e006e24f"
},
{
- "name": "text",
- "value": "text",
- "_uid": "eb1dc43f-dfd3-4ee8-b438-ffa555d449ab"
+ "name": "link",
+ "value": "link",
+ "_uid": "5a8ae763-584b-450c-91b5-077d2f842b32"
+ },
+ {
+ "name": "intext",
+ "value": "intext",
+ "_uid": "9794c0a7-5b77-4540-99e2-72340ba578df"
}
],
"required": false
},
+ "feature": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Feature",
+ "key": "feature",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "feature"
+ ],
+ "description": "Partial Component used to display a feature"
+ },
"type": {
"id": 0,
"pos": 0,
@@ -1640,36 +1544,102 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "logos"
+ "default_value": "features"
}
},
"is_nestable": true,
"real_name": "Components",
"color": "#05566a",
"icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
"component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1000x598/2d967b66e6/components-logos-centered-with-button.png"
+ "image": "//a.storyblok.com/f/284989/1440x666/dd66fa8a69/components-features-icon-centered.png"
},
{
- "name": "stats",
- "display_name": "Stats",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 21,
+ "name": "gallery",
+ "display_name": "Gallery",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 32,
"schema": {
- "stat": {
+ "images": {
"id": 0,
"pos": 0,
- "display_name": "Stat",
- "key": "stat",
+ "display_name": "Images",
+ "key": "images",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "stat"
+ "images"
+ ]
+ },
+ "layout": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Layout",
+ "key": "layout",
+ "type": "option",
+ "description": "The layout of the gallery images",
+ "options": [
+ {
+ "name": "stack",
+ "value": "stack",
+ "_uid": "b99c2453-64f8-40b9-813e-3fb9137b73f8"
+ },
+ {
+ "name": "smallTiles",
+ "value": "smallTiles",
+ "_uid": "8c14e22a-bb86-4d9a-be29-a796931b9b96"
+ },
+ {
+ "name": "largeTiles",
+ "value": "largeTiles",
+ "_uid": "5715bdef-7364-4f43-823e-f2c14e7d0b56"
+ }
],
- "description": "Stat entry of Stats component"
+ "required": false
+ },
+ "aspectRatio": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "AspectRatio",
+ "key": "aspectRatio",
+ "type": "option",
+ "default_value": "unset",
+ "description": "The aspect ratio of the gallery images",
+ "options": [
+ {
+ "name": "unset",
+ "value": "unset",
+ "_uid": "b8e7ec26-a0ee-49e0-a2a3-eea3b8f777fa"
+ },
+ {
+ "name": "square",
+ "value": "square",
+ "_uid": "3d77c337-87c4-494b-98d3-ac1e2624070c"
+ },
+ {
+ "name": "wide",
+ "value": "wide",
+ "_uid": "8431e763-c306-4f4c-ba35-710ae6f59d2d"
+ },
+ {
+ "name": "landscape",
+ "value": "landscape",
+ "_uid": "42ef1989-a25c-46f9-a2f0-728cbe17e3f3"
+ }
+ ],
+ "required": false
+ },
+ "lightbox": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Lightbox",
+ "key": "lightbox",
+ "type": "boolean",
+ "description": "Display images in a lightbox gallery",
+ "required": false
},
"type": {
"id": 0,
@@ -1678,31 +1648,40 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "stats"
+ "default_value": "gallery"
}
},
"is_nestable": true,
"real_name": "Components",
"color": "#05566a",
"icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
"component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/790x480/093157157d/components-stats-count-up-with-icons.png"
+ "image": "//a.storyblok.com/f/284989/1100x702/c179eb0ca4/components-gallery-small-squares-with-lightbox.png"
},
{
- "name": "teaser-card",
- "display_name": "Teaser Card",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 22,
+ "name": "hero",
+ "display_name": "Hero",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 33,
"schema": {
"headline": {
"id": 0,
"pos": 0,
"display_name": "Headline",
"key": "headline",
- "type": "markdown",
- "description": "Headline for the teaser card",
+ "type": "text",
+ "description": "Headline for the visual",
+ "required": false
+ },
+ "sub": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Sub",
+ "key": "sub",
+ "type": "text",
+ "description": "Subheadline below the module headline",
"required": false
},
"text": {
@@ -1710,203 +1689,225 @@
"pos": 0,
"display_name": "Text",
"key": "text",
- "type": "markdown",
- "description": "Body text for the teaser card",
+ "type": "text",
+ "description": "Info text for the module element",
"required": false
},
- "label": {
+ "highlightText": {
"id": 0,
"pos": 0,
- "display_name": "Label",
- "key": "label",
- "type": "text",
- "description": "Label for the Teaser Card",
+ "display_name": "HighlightText",
+ "key": "highlightText",
+ "type": "boolean",
+ "description": "Visually highlight the text",
"required": false
},
- "layout": {
+ "colorNeutral": {
"id": 0,
"pos": 0,
- "display_name": "Layout",
- "key": "layout",
+ "display_name": "ColorNeutral",
+ "key": "colorNeutral",
+ "type": "boolean",
+ "description": "Make the text and buttons color neutral",
+ "required": false
+ },
+ "height": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Height",
+ "key": "height",
"type": "option",
- "default_value": "stack",
- "description": "Layout for the Teaser Card",
+ "default_value": "default",
+ "description": "Height",
"options": [
{
- "name": "stack",
- "value": "stack",
- "_uid": "3efbbbdc-37c3-42e9-8c1e-ece7cbc575a2"
- },
+ "name": "small",
+ "value": "small",
+ "_uid": "439c1243-a32a-4505-aac2-d1cce6d05514"
+ },
{
- "name": "row",
- "value": "row",
- "_uid": "336ab3ce-b5fe-44fd-9ae1-0e5217f126e3"
+ "name": "default",
+ "value": "default",
+ "_uid": "a55baacc-1770-4916-8c58-ecc8a39d97bf"
+ },
+ {
+ "name": "fullImage",
+ "value": "fullImage",
+ "_uid": "554d92ee-32dc-4300-b8d0-c5e7dd537d58"
+ },
+ {
+ "name": "fullScreen",
+ "value": "fullScreen",
+ "_uid": "4f1cc79b-f143-414f-bcb6-ce4327466327"
}
],
"required": false
},
- "target": {
+ "textbox": {
"id": 0,
"pos": 0,
- "display_name": "Target",
- "key": "target",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "description": "Target that should be linked",
+ "display_name": "Textbox",
+ "key": "textbox",
+ "type": "boolean",
+ "default_value": true,
+ "description": "Toggle wether you want your text to be displayed within in box",
"required": false
},
- "tab-a6806588-09ba-4c08-b7ce-5195f89eb12d": {
+ "buttons": {
"id": 0,
"pos": 0,
- "display_name": "Button",
- "key": "tab-a6806588-09ba-4c08-b7ce-5195f89eb12d",
+ "display_name": "Buttons",
+ "key": "buttons",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "buttons"
+ ],
+ "description": "Button"
+ },
+ "overlay": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Overlay",
+ "key": "overlay",
+ "type": "boolean",
+ "description": "Enable grid layer",
+ "required": false
+ },
+ "tab-6f688f09-ff81-48e3-9f8e-a930b1be2fc3": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Image",
+ "key": "tab-6f688f09-ff81-48e3-9f8e-a930b1be2fc3",
"keys": [
- "button_label",
- "button_chevron",
- "button_hidden"
+ "image_srcMobile",
+ "image_srcTablet",
+ "image_srcDesktop",
+ "image_src",
+ "image_indent",
+ "image_alt"
],
"type": "tab",
+ "description": "Sources of background images for different screen sizes",
"required": false
},
- "button_label": {
+ "image_srcMobile": {
"id": 0,
"pos": 0,
- "display_name": "Label",
- "key": "button_label",
- "type": "text",
- "description": "Label of the button. Still A11Y relevant when the button is hidden.",
+ "display_name": "SrcMobile",
+ "key": "image_srcMobile",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "Background image source for small screens",
"required": false
},
- "button_chevron": {
+ "image_srcTablet": {
"id": 0,
"pos": 0,
- "display_name": "Chevron",
- "key": "button_chevron",
- "type": "boolean",
- "description": "Toggle arrow icon",
+ "display_name": "SrcTablet",
+ "key": "image_srcTablet",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "Background image source for medium screens",
"required": false
},
- "button_hidden": {
+ "image_srcDesktop": {
"id": 0,
"pos": 0,
- "display_name": "Hidden",
- "key": "button_hidden",
- "type": "boolean",
- "description": "Toggle wether you want the card to have a visible button or not",
+ "display_name": "SrcDesktop",
+ "key": "image_srcDesktop",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "Background image source for large screens",
"required": false
},
- "image": {
+ "image_src": {
"id": 0,
"pos": 0,
- "display_name": "Image",
- "key": "image",
+ "display_name": "Src",
+ "key": "image_src",
"type": "asset",
"filetypes": [
"images"
],
- "description": "Image to display as cover",
+ "description": "Override for img tag of picture element, if needed",
"required": false
},
- "imageRatio": {
+ "image_indent": {
"id": 0,
"pos": 0,
- "display_name": "ImageRatio",
- "key": "imageRatio",
+ "display_name": "Indent",
+ "key": "image_indent",
"type": "option",
- "default_value": "wide",
- "description": "Aspect ratio of the image",
+ "default_value": "none",
+ "description": "Choose to indent the image horizontally on small screens",
"options": [
{
- "name": "wide",
- "value": "wide",
- "_uid": "ce437b27-6c67-431f-8a21-ae86b19e8540"
- },
- {
- "name": "landscape",
- "value": "landscape",
- "_uid": "12712f3a-eb7e-4f00-b47b-208f6491be3e"
+ "name": "none",
+ "value": "none",
+ "_uid": "ae4a6779-70d1-4367-9b5f-eb0c17508745"
},
{
- "name": "square",
- "value": "square",
- "_uid": "71288d8d-dc45-437e-8100-f16e85f26bf6"
+ "name": "left",
+ "value": "left",
+ "_uid": "74179f37-1a64-4b9c-bea1-5f29ee8ab219"
},
{
- "name": "unset",
- "value": "unset",
- "_uid": "c1967827-7d9f-4693-9b32-b87d9465c747"
+ "name": "right",
+ "value": "right",
+ "_uid": "4470fa83-e8a6-436c-85f0-ae43b4133841"
}
],
"required": false
},
- "type": {
+ "image_alt": {
"id": 0,
"pos": 0,
- "display_name": "Type",
- "key": "type",
+ "display_name": "Alt",
+ "key": "image_alt",
"type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "teaser-card"
- }
- },
- "is_nestable": true,
- "real_name": "Components",
- "color": "#05566a",
- "icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
- "component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/650x653/bd51864d6d/components-teaser-card-product-tiles.png"
- },
- {
- "name": "testimonials",
- "display_name": "Testimonials",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 23,
- "schema": {
- "layout": {
+ "description": "Alt text to display for picture",
+ "required": false
+ },
+ "textPosition": {
"id": 0,
"pos": 0,
- "display_name": "Layout",
- "key": "layout",
+ "display_name": "TextPosition",
+ "key": "textPosition",
"type": "option",
- "default_value": "slider",
- "description": "The testimonial layout",
+ "default_value": "bottom",
+ "description": "Choose the alginment of the module content",
"options": [
{
- "name": "slider",
- "value": "slider",
- "_uid": "fc8c7a18-c6de-4082-993e-de70ac4ed0a6"
+ "name": "center",
+ "value": "center",
+ "_uid": "e712f471-b554-4af9-9d25-96f0f7af0b34"
},
{
- "name": "list",
- "value": "list",
- "_uid": "de709224-9964-47b0-8f7e-9c419c2efcef"
+ "name": "below",
+ "value": "below",
+ "_uid": "1aa2216e-1caf-4bd3-98bb-941bae7733b9"
},
{
- "name": "alternating",
- "value": "alternating",
- "_uid": "3b4a957b-ff69-40a1-ab25-b338563fb4eb"
+ "name": "left",
+ "value": "left",
+ "_uid": "f0bab218-c6e6-4beb-a72f-b2e79959ecd7"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "ae43f34b-15a2-4141-b4df-aac2d2d8d948"
}
],
"required": false
},
- "testimonial": {
- "id": 0,
- "pos": 0,
- "display_name": "Testimonial",
- "key": "testimonial",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "testimonial"
- ],
- "description": "Testimonial entry of Testimonials component"
- },
"type": {
"id": 0,
"pos": 0,
@@ -1914,31 +1915,58 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "testimonials"
+ "default_value": "hero"
}
},
"is_nestable": true,
"real_name": "Components",
"color": "#05566a",
"icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
"component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1000x409/9e3083f521/components-testimonials-simple.png"
+ "image": "//a.storyblok.com/f/284989/1165x780/4460d35d45/components-hero-text-below-image.png"
},
{
- "name": "text",
- "display_name": "Text",
- "created_at": "2024-09-05T10:51:57.973Z",
- "updated_at": "2024-09-05T10:51:57.973Z",
- "id": 24,
+ "name": "image-story",
+ "display_name": "Image Story",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 34,
"schema": {
+ "headline": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Headline",
+ "key": "headline",
+ "type": "text",
+ "description": "Headline for the module element",
+ "required": false
+ },
+ "largeHeadline": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "LargeHeadline",
+ "key": "largeHeadline",
+ "type": "boolean",
+ "description": "Make the headline larger",
+ "required": false
+ },
+ "sub": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Sub",
+ "key": "sub",
+ "type": "text",
+ "description": "Subheadline below the module headline",
+ "required": false
+ },
"text": {
"id": 0,
"pos": 0,
"display_name": "Text",
"key": "text",
- "type": "markdown",
- "description": "Text",
+ "type": "text",
+ "description": "Info text for the module element",
"required": false
},
"layout": {
@@ -1947,174 +1975,23 @@
"display_name": "Layout",
"key": "layout",
"type": "option",
- "default_value": "singleColumn",
- "description": "Variant of layout to be used",
+ "default_value": "imageLeft",
+ "description": "Choose the layout for the component",
"options": [
{
- "name": "singleColumn",
- "value": "singleColumn",
- "_uid": "3d52efa9-51ca-455b-9b64-83e7af64b588"
+ "name": "textLeft",
+ "value": "textLeft",
+ "_uid": "b6e907df-05dd-4180-a910-1ca7b3c976b5"
},
{
- "name": "multiColumn",
- "value": "multiColumn",
- "_uid": "e655bb1f-7142-4c41-9b50-f4123eae6a3f"
+ "name": "imageLeft",
+ "value": "imageLeft",
+ "_uid": "efdff553-7b67-4ea9-a4ee-e0f90e1323fe"
}
],
"required": false
},
- "align": {
- "id": 0,
- "pos": 0,
- "display_name": "Align",
- "key": "align",
- "type": "option",
- "default_value": "left",
- "description": "Alignment of text",
- "options": [
- {
- "name": "left",
- "value": "left",
- "_uid": "68a4b4b4-6d3d-4f37-b218-75f3b83ee0ad"
- },
- {
- "name": "center",
- "value": "center",
- "_uid": "359e877b-6a68-40ea-be5b-f119584c2603"
- }
- ],
- "required": false
- },
- "highlightText": {
- "id": 0,
- "pos": 0,
- "display_name": "HighlightText",
- "key": "highlightText",
- "type": "boolean",
- "description": "Visually highlight the text",
- "required": false
- },
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "text"
- }
- },
- "is_nestable": true,
- "real_name": "Components",
- "color": "#05566a",
- "icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
- "component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1000x407/15f7209661/components-text-single-column.png"
- },
- {
- "name": "faq",
- "display_name": "Faq",
- "created_at": "2024-09-05T10:51:57.976Z",
- "updated_at": "2024-09-05T10:51:57.976Z",
- "id": 29,
- "schema": {
- "questions": {
- "id": 0,
- "pos": 0,
- "display_name": "Questions",
- "key": "questions",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "questions"
- ]
- },
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "faq"
- }
- },
- "is_nestable": true,
- "real_name": "Components",
- "color": "#05566a",
- "icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
- "component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/820x455/1c0c30985e/components-faq-dropdown-list.png"
- },
- {
- "name": "image-story",
- "display_name": "Image Story",
- "created_at": "2024-09-05T10:51:57.976Z",
- "updated_at": "2024-09-05T10:51:57.976Z",
- "id": 33,
- "schema": {
- "headline": {
- "id": 0,
- "pos": 0,
- "display_name": "Headline",
- "key": "headline",
- "type": "markdown",
- "description": "Headline for the module element",
- "required": false
- },
- "largeHeadline": {
- "id": 0,
- "pos": 0,
- "display_name": "LargeHeadline",
- "key": "largeHeadline",
- "type": "boolean",
- "description": "Make the headline larger",
- "required": false
- },
- "sub": {
- "id": 0,
- "pos": 0,
- "display_name": "Sub",
- "key": "sub",
- "type": "markdown",
- "description": "Subheadline below the module headline",
- "required": false
- },
- "text": {
- "id": 0,
- "pos": 0,
- "display_name": "Text",
- "key": "text",
- "type": "markdown",
- "description": "Info text for the module element",
- "required": false
- },
- "layout": {
- "id": 0,
- "pos": 0,
- "display_name": "Layout",
- "key": "layout",
- "type": "option",
- "default_value": "imageLeft",
- "description": "Choose the layout for the component",
- "options": [
- {
- "name": "textLeft",
- "value": "textLeft",
- "_uid": "f3ddd9a5-cc20-4905-b590-139bfb115aac"
- },
- {
- "name": "imageLeft",
- "value": "imageLeft",
- "_uid": "0bc071f6-2fd4-49f4-9c8a-c19e6ab8d02a"
- }
- ],
- "required": false
- },
- "padding": {
+ "padding": {
"id": 0,
"pos": 0,
"display_name": "Padding",
@@ -2136,16 +2013,15 @@
],
"description": "Component used for user interaction"
},
- "tab-12935758-cf66-4c13-be3d-142e0a809085": {
+ "tab-0464fea0-678a-4e66-8b49-940ac5e27f76": {
"id": 0,
"pos": 0,
"display_name": "Image",
- "key": "tab-12935758-cf66-4c13-be3d-142e0a809085",
+ "key": "tab-0464fea0-678a-4e66-8b49-940ac5e27f76",
"keys": [
"image_src",
- "image_aspectRatio",
- "image_alt",
- "image_vAlign"
+ "image_ratio",
+ "image_alt"
],
"type": "tab",
"description": "Image displayed alongside the text content",
@@ -2163,34 +2039,39 @@
"description": "Image source to use",
"required": false
},
- "image_aspectRatio": {
+ "image_ratio": {
"id": 0,
"pos": 0,
- "display_name": "AspectRatio",
- "key": "image_aspectRatio",
+ "display_name": "Ratio",
+ "key": "image_ratio",
"type": "option",
- "default_value": "unset",
- "description": "The aspect ratio of the image",
+ "default_value": "none",
+ "description": "Select an aspect ratio to use for cropping and displaying the image",
"options": [
{
- "name": "unset",
- "value": "unset",
- "_uid": "2c4901ff-5d37-4624-abb0-a3a0c1667292"
+ "name": "4:3",
+ "value": "VALUE_4_3",
+ "_uid": "a48b2abf-c4bd-4c26-bc71-40f4d5b8a79e"
},
{
- "name": "square",
- "value": "square",
- "_uid": "7d41ab4c-7ed5-4407-bbf0-67c81979eb9c"
+ "name": "3:2",
+ "value": "VALUE_3_2",
+ "_uid": "37816c3d-a919-417e-b30a-f6413d464d85"
},
{
- "name": "wide",
- "value": "wide",
- "_uid": "f2c4927a-a4e6-4e72-b886-873afef0f2d0"
+ "name": "16:9",
+ "value": "VALUE_16_9",
+ "_uid": "519ee2ab-efbe-451a-9b1f-ddf5f98d7d6a"
},
{
- "name": "landscape",
- "value": "landscape",
- "_uid": "3c944a88-e9e1-4513-9765-594784715e71"
+ "name": "1:1",
+ "value": "VALUE_1_1",
+ "_uid": "1677bf2a-37a9-4a09-84f5-be13f88f3952"
+ },
+ {
+ "name": "none",
+ "value": "none",
+ "_uid": "3e2e1464-c03e-40d0-a9a0-eb2a2eb251c1"
}
],
"required": false
@@ -2204,33 +2085,6 @@
"description": "Image description",
"required": false
},
- "image_vAlign": {
- "id": 0,
- "pos": 0,
- "display_name": "VAlign",
- "key": "image_vAlign",
- "type": "option",
- "default_value": "top",
- "description": "Select a vertical alignment for the image",
- "options": [
- {
- "name": "center",
- "value": "center",
- "_uid": "f04bdd05-c871-4fb3-95d9-0a414e982f72"
- },
- {
- "name": "top",
- "value": "top",
- "_uid": "81b2da49-b960-49d9-afbf-496c90949608"
- },
- {
- "name": "bottom",
- "value": "bottom",
- "_uid": "1eae0735-4319-4688-859d-64a2fcd48716"
- }
- ],
- "required": false
- },
"textAlign": {
"id": 0,
"pos": 0,
@@ -2243,12 +2097,12 @@
{
"name": "left",
"value": "left",
- "_uid": "03da1534-e4cd-414d-83f3-07f6e9f6e02a"
+ "_uid": "236f6acf-f410-4df4-973a-4c47f3ae93fb"
},
{
"name": "center",
"value": "center",
- "_uid": "5bdc30f7-239f-4625-97c1-1f354f140ef1"
+ "_uid": "abb7bc55-b42c-4655-80ba-30a640993393"
}
],
"required": false
@@ -2267,144 +2121,97 @@
"real_name": "Components",
"color": "#05566a",
"icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
"component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1160x960/e4282bb0e6/components-image-story-sticky-image-next-to-scrolling-text.png"
+ "image": "//a.storyblok.com/f/284989/1160x960/f00f493bc9/components-image-story-sticky-image-next-to-scrolling-text.png"
},
{
- "name": "mosaic",
- "display_name": "Mosaic",
- "created_at": "2024-09-05T10:51:57.976Z",
- "updated_at": "2024-09-05T10:51:57.976Z",
- "id": 36,
+ "name": "image-text",
+ "display_name": "Image Text",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 35,
"schema": {
- "layout": {
+ "text": {
"id": 0,
"pos": 0,
- "display_name": "Layout",
- "key": "layout",
- "type": "option",
- "default_value": "alternate",
- "description": "Layout of the mosaic component",
- "options": [
- {
- "name": "alternate",
- "value": "alternate",
- "_uid": "c8aaa038-780a-4c46-b2fe-8d1b6638b32e"
- },
- {
- "name": "textLeft",
- "value": "textLeft",
- "_uid": "cb5fab7d-badd-44ab-be67-202b4f14cbfb"
- },
- {
- "name": "textRight",
- "value": "textRight",
- "_uid": "ea76d4f6-9944-47a8-baf9-2b6c0fb210f4"
- }
- ],
+ "display_name": "Text",
+ "key": "text",
+ "type": "markdown",
+ "description": "Text content to display beside the image",
"required": false
},
- "largeHeadlines": {
+ "highlightText": {
"id": 0,
"pos": 0,
- "display_name": "LargeHeadlines",
- "key": "largeHeadlines",
+ "display_name": "HighlightText",
+ "key": "highlightText",
"type": "boolean",
- "description": "Make the headlines larger",
+ "description": "Visually highlight the text",
"required": false
},
- "tile": {
+ "tab-33204471-a440-4f7d-8e21-4ef8f34cbe52": {
"id": 0,
"pos": 0,
- "display_name": "Tile",
- "key": "tile",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "tile"
+ "display_name": "Image",
+ "key": "tab-33204471-a440-4f7d-8e21-4ef8f34cbe52",
+ "keys": [
+ "image_src",
+ "image_alt"
],
- "description": "Tile"
+ "type": "tab",
+ "required": false
},
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "mosaic"
- }
- },
- "is_nestable": true,
- "real_name": "Components",
- "color": "#05566a",
- "icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
- "component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1010x1520/92bfb7116d/components-mosaic-colorful-tiles.png"
- },
- {
- "name": "slider",
- "display_name": "Slider",
- "created_at": "2024-09-05T10:51:57.976Z",
- "updated_at": "2024-09-05T10:51:57.976Z",
- "id": 37,
- "schema": {
- "autoplay": {
+ "image_src": {
"id": 0,
"pos": 0,
- "display_name": "Autoplay",
- "key": "autoplay",
- "type": "boolean",
- "description": "Automatically move to next slide after 4 seconds without user interaction",
+ "display_name": "Src",
+ "key": "image_src",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "URL of the image to display",
"required": false
},
- "nav": {
+ "image_alt": {
"id": 0,
"pos": 0,
- "display_name": "Nav",
- "key": "nav",
- "type": "boolean",
- "description": "Add bullet navigation",
- "required": false
- },
- "teaseNeighbours": {
- "id": 0,
- "pos": 0,
- "display_name": "TeaseNeighbours",
- "key": "teaseNeighbours",
- "type": "boolean",
- "description": "Tease Neighbour Slides",
- "required": false
- },
- "equalHeight": {
- "id": 0,
- "pos": 0,
- "display_name": "EqualHeight",
- "key": "equalHeight",
- "type": "boolean",
- "default_value": true,
- "description": "Equalize slides heights",
- "required": false
- },
- "gap": {
- "id": 0,
- "pos": 0,
- "display_name": "Gap",
- "key": "gap",
- "type": "number",
- "description": "Size of the gap added between slides in pixels",
+ "display_name": "Alt",
+ "key": "image_alt",
+ "type": "text",
+ "description": "Alt text of the image",
"required": false
},
- "arrows": {
+ "layout": {
"id": 0,
"pos": 0,
- "display_name": "Arrows",
- "key": "arrows",
- "type": "boolean",
- "description": "Add arrows on the left and right to navigate to next or previous slide",
+ "display_name": "Layout",
+ "key": "layout",
+ "type": "option",
+ "description": "Position of the image relative to the text",
+ "options": [
+ {
+ "name": "above",
+ "value": "above",
+ "_uid": "11e6629c-97cf-40cc-9969-b8263d20589e"
+ },
+ {
+ "name": "below",
+ "value": "below",
+ "_uid": "d40f745e-c324-47db-8f2a-0d17c6ef278f"
+ },
+ {
+ "name": "beside-right",
+ "value": "beside_right",
+ "_uid": "e191a2fc-113e-4cb2-b9b3-2f05ee518591"
+ },
+ {
+ "name": "beside-left",
+ "value": "beside_left",
+ "_uid": "c19f75fb-89da-4f4a-8a22-9c7d5b90e79b"
+ }
+ ],
"required": false
},
"type": {
@@ -2414,213 +2221,228 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "slider"
- },
- "className": {
+ "default_value": "image-text"
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Components",
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
+ "component_group_name": "Components",
+ "image": "//a.storyblok.com/f/284989/1240x515/a3d217e153/components-image-text-beside-right-layout.png"
+ },
+ {
+ "name": "logos",
+ "display_name": "Logos",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 36,
+ "schema": {
+ "tagline": {
"id": 0,
"pos": 0,
- "display_name": "ClassName",
- "key": "className",
+ "display_name": "Tagline",
+ "key": "tagline",
"type": "text",
- "description": "Additional css classes attached to the wrapping element",
+ "description": "A short tagline atop the logos",
"required": false
},
- "components": {
+ "logo": {
"id": 0,
"pos": 0,
- "display_name": "Components",
- "key": "components",
+ "display_name": "Logo",
+ "key": "logo",
"type": "bloks",
- "restrict_type": "groups",
+ "restrict_type": "",
"restrict_components": true,
- "component_group_whitelist": [
- "71943f02-38c1-49b9-9b5e-f4c5b84a96ef"
+ "component_whitelist": [
+ "logo"
],
- "description": "Abstracts a blog overview concept into JSON schema",
- "required": false
+ "description": "Logo entry for Logos component"
},
- "typeProp": {
+ "align": {
"id": 0,
"pos": 0,
- "display_name": "TypeProp",
- "key": "typeProp",
+ "display_name": "Align",
+ "key": "align",
"type": "option",
- "default_value": "carousel",
- "description": "Type of the movement",
+ "default_value": "center",
+ "description": "The alignment of the logo layout",
"options": [
{
- "name": "slider",
- "value": "slider",
- "_uid": "632f635a-2c73-4678-9b13-9d9d09911c4e"
+ "name": "left",
+ "value": "left",
+ "_uid": "c536c948-fcf3-4608-b04e-3e06861c7e13"
},
{
- "name": "carousel",
- "value": "carousel",
- "_uid": "b7b5d81b-afc3-4635-9081-b3efa99ae93c"
+ "name": "center",
+ "value": "center",
+ "_uid": "9840b540-a750-4422-8d0d-d2c59960ec61"
}
],
"required": false
- }
- },
- "is_nestable": true,
- "real_name": "Components",
- "color": "#05566a",
- "icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
- "component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1110x400/8aa668f893/layout-slider-with-arrows.png"
- },
- {
- "name": "video-curtain",
- "display_name": "Video Curtain",
- "created_at": "2024-09-05T10:51:57.977Z",
- "updated_at": "2024-09-05T10:51:57.977Z",
- "id": 42,
- "schema": {
- "headline": {
- "id": 0,
- "pos": 0,
- "display_name": "Headline",
- "key": "headline",
- "type": "markdown",
- "description": "Headline for the visual",
- "required": false
- },
- "sub": {
- "id": 0,
- "pos": 0,
- "display_name": "Sub",
- "key": "sub",
- "type": "markdown",
- "description": "Subheadline below the module headline",
- "required": false
},
- "text": {
+ "logosPerRow": {
"id": 0,
"pos": 0,
- "display_name": "Text",
- "key": "text",
- "type": "markdown",
- "description": "Info text for the module element",
+ "display_name": "LogosPerRow",
+ "key": "logosPerRow",
+ "type": "number",
+ "description": "The amount of logos to display per row",
"required": false
},
- "highlightText": {
+ "tab-37c87abb-f138-483d-8fdd-f6829ebd4cfa": {
"id": 0,
"pos": 0,
- "display_name": "HighlightText",
- "key": "highlightText",
- "type": "boolean",
- "description": "Visually highlight the text",
+ "display_name": "Cta",
+ "key": "tab-37c87abb-f138-483d-8fdd-f6829ebd4cfa",
+ "keys": [
+ "cta_toggle",
+ "cta_text",
+ "cta_link",
+ "cta_label",
+ "cta_style"
+ ],
+ "type": "tab",
+ "description": "The call to action",
"required": false
},
- "colorNeutral": {
+ "cta_toggle": {
"id": 0,
"pos": 0,
- "display_name": "ColorNeutral",
- "key": "colorNeutral",
+ "display_name": "Toggle",
+ "key": "cta_toggle",
"type": "boolean",
- "description": "Make the text and buttons color neutral",
+ "description": "Activate/disable the CTA",
"required": false
},
- "buttons": {
- "id": 0,
- "pos": 0,
- "display_name": "Buttons",
- "key": "buttons",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "buttons"
- ],
- "description": "Button"
- },
- "overlay": {
+ "cta_text": {
"id": 0,
"pos": 0,
- "display_name": "Overlay",
- "key": "overlay",
- "type": "boolean",
- "description": "Enable grid layer",
+ "display_name": "Text",
+ "key": "cta_text",
+ "type": "text",
+ "description": "A short CTA text",
"required": false
},
- "tab-c602b06b-d94b-485f-9c08-e6a86577cc4f": {
+ "cta_link": {
"id": 0,
"pos": 0,
- "display_name": "Video",
- "key": "tab-c602b06b-d94b-485f-9c08-e6a86577cc4f",
- "keys": [
- "video_srcMobile",
- "video_srcTablet",
- "video_srcDesktop"
- ],
- "type": "tab",
- "description": "Sources of background videos for different screen sizes",
+ "display_name": "Link",
+ "key": "cta_link",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "default_value": "#",
+ "description": "The CTA link",
"required": false
},
- "video_srcMobile": {
+ "cta_label": {
"id": 0,
"pos": 0,
- "display_name": "SrcMobile",
- "key": "video_srcMobile",
- "type": "asset",
- "filetypes": [
- "videos"
- ],
- "description": "Background video source for small screens",
+ "display_name": "Label",
+ "key": "cta_label",
+ "type": "text",
+ "description": "The text label displayed on the link",
"required": false
},
- "video_srcTablet": {
+ "cta_style": {
"id": 0,
"pos": 0,
- "display_name": "SrcTablet",
- "key": "video_srcTablet",
- "type": "asset",
- "filetypes": [
- "videos"
+ "display_name": "Style",
+ "key": "cta_style",
+ "type": "option",
+ "default_value": "text",
+ "options": [
+ {
+ "name": "button",
+ "value": "button",
+ "_uid": "3beb2220-a83e-4a9a-a93e-730628890ef2"
+ },
+ {
+ "name": "text",
+ "value": "text",
+ "_uid": "d2314d85-f290-4fa7-a764-09c6b0e1c68e"
+ }
],
- "description": "Background video source for medium screens",
"required": false
},
- "video_srcDesktop": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "SrcDesktop",
- "key": "video_srcDesktop",
- "type": "asset",
- "filetypes": [
- "videos"
- ],
- "description": "Background video source for large screens",
- "required": false
- },
- "textPosition": {
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "logos"
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Components",
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
+ "component_group_name": "Components",
+ "image": "//a.storyblok.com/f/284989/1000x598/8a1d10a6a9/components-logos-centered-with-button.png"
+ },
+ {
+ "name": "mosaic",
+ "display_name": "Mosaic",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 37,
+ "schema": {
+ "layout": {
"id": 0,
"pos": 0,
- "display_name": "TextPosition",
- "key": "textPosition",
+ "display_name": "Layout",
+ "key": "layout",
"type": "option",
- "default_value": "bottom",
- "description": "Choose the alginment of the module content",
+ "default_value": "alternate",
+ "description": "Layout of the mosaic component",
"options": [
{
- "name": "center",
- "value": "center",
- "_uid": "f86274b2-3d76-4e3e-b23d-099604442cb6"
+ "name": "alternate",
+ "value": "alternate",
+ "_uid": "4331edee-08c9-49ac-adb8-9851cfeccc58"
},
{
- "name": "left",
- "value": "left",
- "_uid": "6763cece-ae3d-432a-8007-06229e9f1499"
+ "name": "textLeft",
+ "value": "textLeft",
+ "_uid": "09e3fadc-e7ee-4481-802b-362551497d38"
},
{
- "name": "right",
- "value": "right",
- "_uid": "f29d54f0-05c2-4ffd-8592-f26f68aab13b"
+ "name": "textRight",
+ "value": "textRight",
+ "_uid": "1b45cb29-beaf-4b2f-8d4e-29e6c47162e3"
}
],
"required": false
},
+ "largeHeadlines": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "LargeHeadlines",
+ "key": "largeHeadlines",
+ "type": "boolean",
+ "description": "Make the headlines larger",
+ "required": false
+ },
+ "tiles": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Tiles",
+ "key": "tiles",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "tiles"
+ ]
+ },
"type": {
"id": 0,
"pos": 0,
@@ -2628,555 +2450,471 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "video-curtain"
+ "default_value": "mosaic"
}
},
"is_nestable": true,
"real_name": "Components",
"color": "#05566a",
"icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
"component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1559x720/6c966bf236/components-video-curtain-atmospheric-video-with-overlay.png"
+ "image": "//a.storyblok.com/f/284989/1010x1520/84c80978a6/components-mosaic-colorful-tiles.png"
},
{
- "name": "section",
- "display_name": "Section",
- "created_at": "2024-09-05T10:51:57.977Z",
- "updated_at": "2024-09-05T10:51:57.977Z",
- "id": 44,
+ "name": "slider",
+ "display_name": "Slider",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 38,
"schema": {
- "width": {
+ "autoplay": {
"id": 0,
"pos": 0,
- "display_name": "Width",
- "key": "width",
- "type": "option",
- "default_value": "default",
- "description": "Width of section to use",
- "options": [
- {
- "name": "full",
- "value": "full",
- "_uid": "71d9dfdb-db9c-4165-b3c8-8ed915f6fc6a"
- },
- {
- "name": "max",
- "value": "max",
- "_uid": "67b7fa61-6def-45eb-bcf5-4dcdc84f06bb"
- },
- {
- "name": "wide",
- "value": "wide",
- "_uid": "5587e840-adb7-4cc1-afea-693f4057a174"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "54f6b72e-ba0a-49c4-9548-bc9f440bf967"
- },
- {
- "name": "narrow",
- "value": "narrow",
- "_uid": "29ed1c6d-6ae9-4a15-bbd2-625adf75e0f4"
- }
- ],
+ "display_name": "Autoplay",
+ "key": "autoplay",
+ "type": "boolean",
+ "description": "Automatically move to next slide after 4 seconds without user interaction",
"required": false
},
- "style": {
+ "nav": {
"id": 0,
"pos": 0,
- "display_name": "Style",
- "key": "style",
- "type": "option",
- "default_value": "default",
- "description": "Style of background",
- "options": [
- {
- "name": "stagelights",
- "value": "stagelights",
- "_uid": "6d6085ae-f039-49ab-8841-345b816fa141"
- },
- {
- "name": "horizontalGradient",
- "value": "horizontalGradient",
- "_uid": "67f7b0c2-4eda-48b2-bbbb-0989195236c6"
- },
- {
- "name": "verticalGradient",
- "value": "verticalGradient",
- "_uid": "87b76484-4e6f-44b5-b90a-13d8a50a75e6"
- },
- {
- "name": "accentTransition",
- "value": "accentTransition",
- "_uid": "50a7b401-e0bb-4b5c-a71d-90c5eb1b94d4"
- },
- {
- "name": "boldTransition",
- "value": "boldTransition",
- "_uid": "129cce97-00d2-4b1c-b898-6d9c31c3ef10"
- },
- {
- "name": "symmetricGlow",
- "value": "symmetricGlow",
- "_uid": "8e2bb2a6-6f83-41ba-b247-4956b6135c64"
- },
- {
- "name": "anchorGlow",
- "value": "anchorGlow",
- "_uid": "1d9787be-1dd0-4e6e-a789-ce0ef5668048"
- }
- ],
+ "display_name": "Nav",
+ "key": "nav",
+ "type": "boolean",
+ "description": "Add bullet navigation",
"required": false
},
- "backgroundColor": {
+ "teaseNeighbours": {
"id": 0,
"pos": 0,
- "display_name": "BackgroundColor",
- "key": "backgroundColor",
- "type": "option",
- "default_value": "default",
- "description": "Color of background",
- "options": [
- {
- "name": "default",
- "value": "default",
- "_uid": "a45efa7b-1480-4fb6-9ca7-f3e184244455"
- },
- {
- "name": "accent",
- "value": "accent",
- "_uid": "90e294c0-c904-4fb9-8d1a-5c5ef38ebb68"
- },
- {
- "name": "bold",
- "value": "bold",
- "_uid": "b7a9d203-44fb-446b-bb41-414868ab152d"
- }
- ],
+ "display_name": "TeaseNeighbours",
+ "key": "teaseNeighbours",
+ "type": "boolean",
+ "description": "Tease Neighbour Slides",
"required": false
},
- "spotlight": {
+ "equalHeight": {
"id": 0,
"pos": 0,
- "display_name": "Spotlight",
- "key": "spotlight",
+ "display_name": "EqualHeight",
+ "key": "equalHeight",
"type": "boolean",
- "description": "Show spotlight behind cursor",
+ "default_value": true,
+ "description": "Equalize slides heights",
"required": false
},
- "spaceBefore": {
+ "gap": {
"id": 0,
"pos": 0,
- "display_name": "SpaceBefore",
- "key": "spaceBefore",
- "type": "option",
- "default_value": "default",
- "description": "Amount of spacing before the section",
- "options": [
- {
- "name": "default",
- "value": "default",
- "_uid": "05541a50-da73-4d9c-968b-232bd1b699a9"
- },
- {
- "name": "small",
- "value": "small",
- "_uid": "d45e7b53-aef5-41a3-ad5a-8f3eb61924c6"
- },
- {
- "name": "none",
- "value": "none",
- "_uid": "50f815b4-d007-4026-935d-3744c7a7a6a2"
- }
- ],
+ "display_name": "Gap",
+ "key": "gap",
+ "type": "number",
+ "description": "Size of the gap added between slides in pixels",
"required": false
},
- "spaceAfter": {
+ "arrows": {
"id": 0,
"pos": 0,
- "display_name": "SpaceAfter",
- "key": "spaceAfter",
- "type": "option",
- "default_value": "default",
- "description": "Amount of spacing after the section",
- "options": [
- {
- "name": "default",
- "value": "default",
- "_uid": "dc0f3118-d9ca-485b-a385-adc2afc19e24"
- },
- {
- "name": "small",
- "value": "small",
- "_uid": "860c1266-548c-492a-9f88-00c22fff23b3"
- },
- {
- "name": "none",
- "value": "none",
- "_uid": "d55f1df6-8973-4176-afd3-280e7cd5b803"
- }
- ],
+ "display_name": "Arrows",
+ "key": "arrows",
+ "type": "boolean",
+ "description": "Add arrows on the left and right to navigate to next or previous slide",
"required": false
},
- "inverted": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "Inverted",
- "key": "inverted",
- "type": "boolean",
- "description": "Whether to invert the section",
- "required": false
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "slider"
},
- "headerSpacing": {
+ "className": {
"id": 0,
"pos": 0,
- "display_name": "HeaderSpacing",
- "key": "headerSpacing",
- "type": "boolean",
- "description": "Reserve additional spacing for a floating header",
+ "display_name": "ClassName",
+ "key": "className",
+ "type": "text",
+ "description": "Additional css classes attached to the wrapping element",
"required": false
},
- "tab-54ce6624-446b-4495-9665-0b269dac2e7b": {
+ "typeProp": {
"id": 0,
"pos": 0,
- "display_name": "Headline",
- "key": "tab-54ce6624-446b-4495-9665-0b269dac2e7b",
- "keys": [
- "headline_text",
- "headline_large",
- "headline_width",
- "headline_textAlign",
- "headline_align",
- "headline_sub",
- "headline_switchOrder"
+ "display_name": "TypeProp",
+ "key": "typeProp",
+ "type": "option",
+ "default_value": "carousel",
+ "description": "Type of the movement",
+ "options": [
+ {
+ "name": "slider",
+ "value": "slider",
+ "_uid": "c610347a-ebb2-43f3-b327-136d88c0cf51"
+ },
+ {
+ "name": "carousel",
+ "value": "carousel",
+ "_uid": "37c5a1a7-bc7d-4103-91ee-2a6e9d5ebd3e"
+ }
],
- "type": "tab",
"required": false
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Components",
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
+ "component_group_name": "Components",
+ "image": "//a.storyblok.com/f/284989/1110x400/ca131ffa2f/layout-slider-with-arrows.png"
+ },
+ {
+ "name": "stats",
+ "display_name": "Stats",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 39,
+ "schema": {
+ "stat": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Stat",
+ "key": "stat",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "stat"
+ ],
+ "description": "Stat entry of Stats component"
},
- "headline_text": {
+ "type": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "stats"
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Components",
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
+ "component_group_name": "Components",
+ "image": "//a.storyblok.com/f/284989/790x480/f1f920ed7d/components-stats-count-up-with-icons.png"
+ },
+ {
+ "name": "teaser-card",
+ "display_name": "Teaser Card",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 40,
+ "schema": {
+ "headline": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Headline",
+ "key": "headline",
+ "type": "markdown",
+ "description": "Headline for the teaser card",
+ "required": false
+ },
+ "text": {
"id": 0,
"pos": 0,
"display_name": "Text",
- "key": "headline_text",
+ "key": "text",
"type": "markdown",
- "description": "Headline Text for the section",
+ "description": "Body text for the teaser card",
"required": false
},
- "headline_large": {
+ "label": {
"id": 0,
"pos": 0,
- "display_name": "Large",
- "key": "headline_large",
- "type": "boolean",
- "description": "Make the headline larger",
+ "display_name": "Label",
+ "key": "label",
+ "type": "text",
+ "description": "Label for the Teaser Card",
"required": false
},
- "headline_width": {
+ "layout": {
"id": 0,
"pos": 0,
- "display_name": "Width",
- "key": "headline_width",
+ "display_name": "Layout",
+ "key": "layout",
"type": "option",
- "default_value": "unset",
- "description": "Width of headline to use",
+ "default_value": "stack",
+ "description": "Layout for the Teaser Card",
"options": [
{
- "name": "unset",
- "value": "unset",
- "_uid": "e30dff34-a5d2-4981-b062-6bbd86461733"
- },
- {
- "name": "narrow",
- "value": "narrow",
- "_uid": "d7d6996d-4e05-41b7-bb8c-415c13113c44"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "21cd2736-f038-4128-8231-5a8b2a5842c3"
+ "name": "stack",
+ "value": "stack",
+ "_uid": "42e4fcd5-c88d-4e7e-97b5-6263e11739cb"
},
{
- "name": "wide",
- "value": "wide",
- "_uid": "c89ba3b7-1e27-461d-9716-e60ee8b0f623"
+ "name": "row",
+ "value": "row",
+ "_uid": "f95493e5-56bd-4d52-9cf3-c1fc7618fa15"
}
],
"required": false
},
- "headline_textAlign": {
+ "target": {
"id": 0,
"pos": 0,
- "display_name": "TextAlign",
- "key": "headline_textAlign",
- "type": "option",
- "description": "Choose the text alignment for the headline",
- "options": [
- {
- "name": "left",
- "value": "left",
- "_uid": "3697f11c-f0df-4cec-889a-e30df230cbb8"
- },
- {
- "name": "center",
- "value": "center",
- "_uid": "9a0a3efe-9c23-4639-82a9-0fcf1c4601f9"
- },
- {
- "name": "right",
- "value": "right",
- "_uid": "79b3c0e0-7b32-4a3c-9432-0b699ca15b44"
- }
- ],
+ "display_name": "Target",
+ "key": "target",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "description": "Target that should be linked",
"required": false
},
- "headline_align": {
+ "tab-6a9d7125-2ac2-4f8c-b5f3-9d210b02d542": {
"id": 0,
"pos": 0,
- "display_name": "Align",
- "key": "headline_align",
- "type": "option",
- "description": "Choose an alignment for positioning the headline",
- "options": [
- {
- "name": "left",
- "value": "left",
- "_uid": "cd2b045e-0941-44c3-a041-35d5c60a52f4"
- },
- {
- "name": "center",
- "value": "center",
- "_uid": "7c44bf25-b859-4942-9564-92319d4482e7"
- },
- {
- "name": "right",
- "value": "right",
- "_uid": "b1bdc82a-bfbd-4413-916a-49c214e963c2"
- }
+ "display_name": "Button",
+ "key": "tab-6a9d7125-2ac2-4f8c-b5f3-9d210b02d542",
+ "keys": [
+ "button_label",
+ "button_chevron",
+ "button_hidden"
],
+ "type": "tab",
"required": false
},
- "headline_sub": {
+ "button_label": {
"id": 0,
"pos": 0,
- "display_name": "Sub",
- "key": "headline_sub",
- "type": "markdown",
- "description": "Subheadline for the section",
+ "display_name": "Label",
+ "key": "button_label",
+ "type": "text",
+ "description": "Label of the button. Still A11Y relevant when the button is hidden.",
"required": false
},
- "headline_switchOrder": {
+ "button_chevron": {
"id": 0,
"pos": 0,
- "display_name": "SwitchOrder",
- "key": "headline_switchOrder",
+ "display_name": "Chevron",
+ "key": "button_chevron",
"type": "boolean",
- "description": "Switch the order of headline and subheadline",
+ "description": "Toggle arrow icon",
"required": false
},
- "tab-03838523-89a4-4463-b257-f283dd7ac65c": {
+ "button_hidden": {
"id": 0,
"pos": 0,
- "display_name": "Content",
- "key": "tab-03838523-89a4-4463-b257-f283dd7ac65c",
- "keys": [
- "content_width",
- "content_align",
- "content_gutter",
- "content_mode",
- "content_tileWidth"
- ],
- "type": "tab",
+ "display_name": "Hidden",
+ "key": "button_hidden",
+ "type": "boolean",
+ "description": "Toggle wether you want the card to have a visible button or not",
"required": false
},
- "content_width": {
+ "image": {
"id": 0,
"pos": 0,
- "display_name": "Width",
- "key": "content_width",
- "type": "option",
- "default_value": "unset",
- "description": "Width of content to use",
- "options": [
- {
- "name": "unset",
- "value": "unset",
- "_uid": "5a575aee-a6d1-4b9a-b4d7-6386f5ae3c77"
- },
- {
- "name": "narrow",
- "value": "narrow",
- "_uid": "0d006265-090e-432a-adf2-dc4a39e957f5"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "c93fa384-a14c-48d0-a400-1fb87b2d835c"
- },
- {
- "name": "wide",
- "value": "wide",
- "_uid": "8638c120-8d2f-4536-b44a-665c9743df2b"
- }
+ "display_name": "Image",
+ "key": "image",
+ "type": "asset",
+ "filetypes": [
+ "images"
],
+ "description": "Image to display as cover",
"required": false
},
- "content_align": {
+ "imageRatio": {
"id": 0,
"pos": 0,
- "display_name": "Align",
- "key": "content_align",
+ "display_name": "ImageRatio",
+ "key": "imageRatio",
"type": "option",
- "default_value": "center",
- "description": "Choose an alignment for the content",
+ "default_value": "wide",
+ "description": "Aspect ratio of the image",
"options": [
{
- "name": "left",
- "value": "left",
- "_uid": "34161893-41fb-4289-92b9-2686c87f1cf4"
+ "name": "wide",
+ "value": "wide",
+ "_uid": "bbf1eb2a-931a-43b2-a99d-823687763164"
},
{
- "name": "center",
- "value": "center",
- "_uid": "22984837-aa1b-4e57-9922-a9a0b037bfa3"
+ "name": "landscape",
+ "value": "landscape",
+ "_uid": "6cfbab7e-318e-40a1-bc0f-032cb909fa7c"
},
{
- "name": "right",
- "value": "right",
- "_uid": "908284d2-1cfc-4f2e-9666-00465a6b50b9"
+ "name": "square",
+ "value": "square",
+ "_uid": "9777bd07-904d-4bef-9557-db9f9b7c3f30"
+ },
+ {
+ "name": "unset",
+ "value": "unset",
+ "_uid": "befb2199-8c30-4b03-8a84-b0eeb2ffcfba"
}
],
"required": false
},
- "content_gutter": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "Gutter",
- "key": "content_gutter",
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "teaser-card"
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Components",
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
+ "component_group_name": "Components",
+ "image": "//a.storyblok.com/f/284989/650x653/e4ce5d4513/components-teaser-card-product-tiles.png"
+ },
+ {
+ "name": "testimonials",
+ "display_name": "Testimonials",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 41,
+ "schema": {
+ "layout": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Layout",
+ "key": "layout",
"type": "option",
- "default_value": "default",
- "description": "Size of gutter to use",
+ "default_value": "slider",
+ "description": "The testimonial layout",
"options": [
{
- "name": "large",
- "value": "large",
- "_uid": "9e9ebf6e-8edf-4895-8374-c0e52c8aa7de"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "4aa22145-d973-4a86-b416-5c458cb5c154"
+ "name": "slider",
+ "value": "slider",
+ "_uid": "bda3fe97-23c1-4344-8077-bea546137c86"
},
{
- "name": "small",
- "value": "small",
- "_uid": "7e9e38dd-9c1f-4540-8422-9454e5947079"
+ "name": "list",
+ "value": "list",
+ "_uid": "fc1798a1-d657-4f9b-a0b2-4b7fed441c53"
},
{
- "name": "none",
- "value": "none",
- "_uid": "dfa0337c-7014-4992-ba2e-158bc89251ce"
+ "name": "alternating",
+ "value": "alternating",
+ "_uid": "cce7f168-e5cd-49c3-8573-094d59711fb2"
}
],
"required": false
},
- "content_mode": {
+ "testimonial": {
"id": 0,
"pos": 0,
- "display_name": "Mode",
- "key": "content_mode",
+ "display_name": "Testimonial",
+ "key": "testimonial",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "testimonial"
+ ],
+ "description": "Testimonial entry of Testimonials component"
+ },
+ "type": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "testimonials"
+ }
+ },
+ "is_nestable": true,
+ "real_name": "Components",
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
+ "component_group_name": "Components",
+ "image": "//a.storyblok.com/f/284989/1000x409/f7ba3b5a0e/components-testimonials-simple.png"
+ },
+ {
+ "name": "text",
+ "display_name": "Text",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 42,
+ "schema": {
+ "text": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Text",
+ "key": "text",
+ "type": "markdown",
+ "description": "Text",
+ "required": false
+ },
+ "layout": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Layout",
+ "key": "layout",
"type": "option",
- "default_value": "list",
- "description": "Layout mode used for section contents",
+ "default_value": "singleColumn",
+ "description": "Variant of layout to be used",
"options": [
{
- "name": "default",
- "value": "default",
- "_uid": "2cde62b8-0bc9-4e26-bf58-fc9dff0037a9"
- },
- {
- "name": "tile",
- "value": "tile",
- "_uid": "a5d02f75-8713-4f0b-bca7-81a5ef0af790"
- },
- {
- "name": "list",
- "value": "list",
- "_uid": "5ff7a8eb-31b4-466a-ab86-44b248d4d8c6"
+ "name": "singleColumn",
+ "value": "singleColumn",
+ "_uid": "59ce746b-535b-49a7-a8a9-67e6afb7c883"
},
{
- "name": "slider",
- "value": "slider",
- "_uid": "0839b5db-f55b-4491-acbb-ed499ac6978c"
+ "name": "multiColumn",
+ "value": "multiColumn",
+ "_uid": "b668e1f9-6dbc-45bc-bd12-9f3e95f34f56"
}
],
"required": false
},
- "content_tileWidth": {
+ "align": {
"id": 0,
"pos": 0,
- "display_name": "TileWidth",
- "key": "content_tileWidth",
+ "display_name": "Align",
+ "key": "align",
"type": "option",
- "default_value": "default",
- "description": "Set min-width for the tiles in the grid",
+ "default_value": "left",
+ "description": "Alignment of text",
"options": [
{
- "name": "smallest",
- "value": "smallest",
- "_uid": "c7b039b1-9d7b-405c-af60-1a50af65a98a"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "a50d772d-549c-4807-b366-55e5c159e7e1"
- },
- {
- "name": "medium",
- "value": "medium",
- "_uid": "8a9a99ec-5421-402e-9dd2-b92ddc86842f"
- },
- {
- "name": "large",
- "value": "large",
- "_uid": "9c04ea2e-69f8-413a-ad71-8b55e973be76"
+ "name": "left",
+ "value": "left",
+ "_uid": "f4085237-b9ec-4dea-907a-1770be7948a8"
},
{
- "name": "largest",
- "value": "largest",
- "_uid": "d99e2200-4753-495e-b9e5-a91a65229c3c"
+ "name": "center",
+ "value": "center",
+ "_uid": "424f5840-eb16-4b51-8330-ac48432ba76a"
}
],
"required": false
},
- "components": {
+ "highlightText": {
"id": 0,
"pos": 0,
- "display_name": "Components",
- "key": "components",
- "type": "bloks",
- "restrict_type": "groups",
- "restrict_components": true,
- "component_group_whitelist": [
- "71943f02-38c1-49b9-9b5e-f4c5b84a96ef"
- ],
- "description": "Abstracts a blog overview concept into JSON schema",
+ "display_name": "HighlightText",
+ "key": "highlightText",
+ "type": "boolean",
+ "description": "Visually highlight the text",
"required": false
},
- "buttons": {
- "id": 0,
- "pos": 0,
- "display_name": "Buttons",
- "key": "buttons",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "buttons"
- ],
- "description": "Component used for user interaction"
- },
"type": {
"id": 0,
"pos": 0,
@@ -3184,201 +2922,166 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "section"
+ "default_value": "text"
}
},
"is_nestable": true,
- "real_name": "Section",
+ "real_name": "Components",
"color": "#05566a",
- "icon": "gallery-vertical",
- "image": "//a.storyblok.com/f/303819/1440x928/41f21c45ec/layout-section-cards.png"
+ "icon": "block-wallet",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
+ "component_group_name": "Components",
+ "image": "//a.storyblok.com/f/284989/1000x407/f68474f548/components-text-single-column.png"
},
{
- "name": "tags",
- "display_name": "Tags",
- "created_at": "2024-09-05T10:51:57.977Z",
- "updated_at": "2024-09-05T10:51:57.977Z",
- "id": 45,
+ "name": "video-curtain",
+ "display_name": "Video Curtain",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 43,
"schema": {
- "entry": {
+ "headline": {
"id": 0,
"pos": 0,
- "display_name": "Entry",
- "key": "entry",
+ "display_name": "Headline",
+ "key": "headline",
"type": "text",
- "description": "Name of the tag entry",
+ "description": "Headline for the visual",
"required": false
},
- "type": {
+ "sub": {
"id": 0,
"pos": 0,
- "display_name": "Type",
- "key": "type",
+ "display_name": "Sub",
+ "key": "sub",
"type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "blog-tag"
- }
- },
- "is_nestable": true,
- "real_name": "Tags",
- "color": "#05566a",
- "icon": "block-wallet"
- },
- {
- "name": "blog-teaser",
- "display_name": "Blog Teaser",
- "created_at": "2024-09-05T10:51:57.978Z",
- "updated_at": "2024-09-05T10:51:57.978Z",
- "id": 46,
- "schema": {
- "date": {
+ "description": "Subheadline below the module headline",
+ "required": false
+ },
+ "text": {
"id": 0,
"pos": 0,
- "display_name": "Date",
- "key": "date",
- "type": "datetime",
- "disable_time": true,
- "description": "The date of the blog post",
+ "display_name": "Text",
+ "key": "text",
+ "type": "text",
+ "description": "Info text for the module element",
"required": false
},
- "tags": {
+ "highlightText": {
"id": 0,
"pos": 0,
- "display_name": "Tags",
- "key": "tags",
+ "display_name": "HighlightText",
+ "key": "highlightText",
+ "type": "boolean",
+ "description": "Visually highlight the text",
+ "required": false
+ },
+ "colorNeutral": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "ColorNeutral",
+ "key": "colorNeutral",
+ "type": "boolean",
+ "description": "Make the text and buttons color neutral",
+ "required": false
+ },
+ "buttons": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Buttons",
+ "key": "buttons",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "tags"
+ "buttons"
],
- "description": "Tag given to a blog post"
+ "description": "Button"
},
- "headline": {
+ "overlay": {
"id": 0,
"pos": 0,
- "display_name": "Headline",
- "key": "headline",
- "type": "markdown",
- "description": "The headline of the blog post",
+ "display_name": "Overlay",
+ "key": "overlay",
+ "type": "boolean",
+ "description": "Enable grid layer",
"required": false
},
- "teaserText": {
- "id": 0,
- "pos": 0,
- "display_name": "TeaserText",
- "key": "teaserText",
- "type": "markdown",
- "description": "The teaser text of the blog post",
- "required": false
- },
- "image": {
- "id": 0,
- "pos": 0,
- "display_name": "Image",
- "key": "image",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "The preview image for the blog post",
- "required": false
- },
- "tab-a31ed5ed-e71d-4940-b311-639beebe466c": {
+ "tab-9fc5a506-ad6b-452a-97f5-769eb1486cfd": {
"id": 0,
"pos": 0,
- "display_name": "Link",
- "key": "tab-a31ed5ed-e71d-4940-b311-639beebe466c",
+ "display_name": "Video",
+ "key": "tab-9fc5a506-ad6b-452a-97f5-769eb1486cfd",
"keys": [
- "link_url",
- "link_label"
+ "video_srcMobile",
+ "video_srcTablet",
+ "video_srcDesktop"
],
"type": "tab",
- "description": "URL and label for the blog post linked",
- "required": false
- },
- "link_url": {
- "id": 0,
- "pos": 0,
- "display_name": "Url",
- "key": "link_url",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "description": "The blog entry URL to link",
- "required": false
- },
- "link_label": {
- "id": 0,
- "pos": 0,
- "display_name": "Label",
- "key": "link_label",
- "type": "text",
- "default_value": "Read more",
- "description": "The label to use for the link",
- "required": false
- },
- "readingTime": {
- "id": 0,
- "pos": 0,
- "display_name": "ReadingTime",
- "key": "readingTime",
- "type": "text",
- "description": "Time to read for the blog post",
+ "description": "Sources of background videos for different screen sizes",
"required": false
},
- "tab-00369f46-1fae-46a2-b11d-7d172cd36a84": {
+ "video_srcMobile": {
"id": 0,
"pos": 0,
- "display_name": "Author",
- "key": "tab-00369f46-1fae-46a2-b11d-7d172cd36a84",
- "keys": [
- "author_name",
- "author_title",
- "author_image"
+ "display_name": "SrcMobile",
+ "key": "video_srcMobile",
+ "type": "asset",
+ "filetypes": [
+ "videos"
],
- "type": "tab",
- "description": "The author of the blog post",
- "required": false
- },
- "author_name": {
- "id": 0,
- "pos": 0,
- "display_name": "Name",
- "key": "author_name",
- "type": "text",
- "description": "The name of the author",
+ "description": "Background video source for small screens",
"required": false
},
- "author_title": {
+ "video_srcTablet": {
"id": 0,
"pos": 0,
- "display_name": "Title",
- "key": "author_title",
- "type": "text",
- "description": "The title of the author",
+ "display_name": "SrcTablet",
+ "key": "video_srcTablet",
+ "type": "asset",
+ "filetypes": [
+ "videos"
+ ],
+ "description": "Background video source for medium screens",
"required": false
},
- "author_image": {
+ "video_srcDesktop": {
"id": 0,
"pos": 0,
- "display_name": "Image",
- "key": "author_image",
+ "display_name": "SrcDesktop",
+ "key": "video_srcDesktop",
"type": "asset",
"filetypes": [
- "images"
+ "videos"
],
- "description": "The image URL of the author",
+ "description": "Background video source for large screens",
"required": false
},
- "className": {
+ "textPosition": {
"id": 0,
"pos": 0,
- "display_name": "ClassName",
- "key": "className",
- "type": "text",
+ "display_name": "TextPosition",
+ "key": "textPosition",
+ "type": "option",
+ "default_value": "bottom",
+ "description": "Choose the alginment of the module content",
+ "options": [
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "f9bddc55-8dee-4eff-8580-723eb9202d7a"
+ },
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "66f84f9f-a2cd-44c6-99ca-bd736a1aef8a"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "92d012f6-319d-4363-add9-95afa808a4de"
+ }
+ ],
"required": false
},
"type": {
@@ -3388,497 +3091,577 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "blog-teaser"
+ "default_value": "video-curtain"
}
},
"is_nestable": true,
- "real_name": "Blog Teaser",
+ "real_name": "Components",
"color": "#05566a",
"icon": "block-wallet",
- "component_group_uuid": "71943f02-38c1-49b9-9b5e-f4c5b84a96ef",
+ "component_group_uuid": "bf816fda-bebc-4136-9503-913c14bcae4e",
"component_group_name": "Components",
- "image": "//a.storyblok.com/f/303819/1000x504/9e533dfe80/blog-blog-teaser-default.png"
+ "image": "//a.storyblok.com/f/284989/1559x720/ba5cd3f321/components-video-curtain-atmospheric-video-with-overlay.png"
},
{
- "name": "seo",
- "display_name": "Seo",
- "created_at": "2024-09-05T10:51:57.980Z",
- "updated_at": "2024-09-05T10:51:57.980Z",
- "id": 53,
+ "name": "section",
+ "display_name": "Section",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
+ "id": 45,
"schema": {
- "title": {
+ "width": {
"id": 0,
"pos": 0,
- "display_name": "Title",
- "key": "title",
- "type": "text",
- "description": "Title used for the page",
+ "display_name": "Width",
+ "key": "width",
+ "type": "option",
+ "default_value": "default",
+ "description": "Width of section to use",
+ "options": [
+ {
+ "name": "full",
+ "value": "full",
+ "_uid": "a055962a-5184-4dca-b508-548885932f25"
+ },
+ {
+ "name": "max",
+ "value": "max",
+ "_uid": "a7abf403-9b9c-422c-9c5b-062fb663e339"
+ },
+ {
+ "name": "wide",
+ "value": "wide",
+ "_uid": "fc36ee7e-7620-4c93-8b2d-8500c8ad53d8"
+ },
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "a384fed9-b355-4c33-80e5-766ab2f46cae"
+ },
+ {
+ "name": "narrow",
+ "value": "narrow",
+ "_uid": "54793509-e687-4666-ac52-8887110bd319"
+ }
+ ],
"required": false
},
- "description": {
+ "style": {
"id": 0,
"pos": 0,
- "display_name": "Description",
- "key": "description",
- "type": "text",
- "description": "Description used for the page",
+ "display_name": "Style",
+ "key": "style",
+ "type": "option",
+ "default_value": "default",
+ "description": "Style of background",
+ "options": [
+ {
+ "name": "stagelights",
+ "value": "stagelights",
+ "_uid": "744563f6-faeb-4dfe-a965-6b3c901b9de1"
+ },
+ {
+ "name": "horizontalGradient",
+ "value": "horizontalGradient",
+ "_uid": "676cb0da-2579-4731-bde8-f8aaa1ab5f2a"
+ },
+ {
+ "name": "verticalGradient",
+ "value": "verticalGradient",
+ "_uid": "e2bb052f-ad04-4511-aeba-da25a736e016"
+ },
+ {
+ "name": "accentTransition",
+ "value": "accentTransition",
+ "_uid": "dcf73f6c-fb02-4c50-9d93-5abe7ae4e29d"
+ },
+ {
+ "name": "boldTransition",
+ "value": "boldTransition",
+ "_uid": "a4375f43-e16c-47b3-9b2c-281091df9eb8"
+ },
+ {
+ "name": "symmetricGlow",
+ "value": "symmetricGlow",
+ "_uid": "c68de05c-6f25-4b8a-837c-863dc362af80"
+ },
+ {
+ "name": "anchorGlow",
+ "value": "anchorGlow",
+ "_uid": "a972eaab-6427-49b9-a78e-cb0aa350bd2c"
+ }
+ ],
"required": false
},
- "keywords": {
+ "backgroundColor": {
"id": 0,
"pos": 0,
- "display_name": "Keywords",
- "key": "keywords",
- "type": "text",
- "description": "Keywords used for the page",
+ "display_name": "BackgroundColor",
+ "key": "backgroundColor",
+ "type": "option",
+ "default_value": "default",
+ "description": "Color of background",
+ "options": [
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "2e94d48e-d66e-4867-a409-debf87eb9c8a"
+ },
+ {
+ "name": "accent",
+ "value": "accent",
+ "_uid": "faecbebb-e715-4b6e-9cc2-7d97355b1963"
+ },
+ {
+ "name": "bold",
+ "value": "bold",
+ "_uid": "2250c417-6e57-45ea-8756-84b56c4dd7ee"
+ }
+ ],
"required": false
},
- "image": {
+ "spotlight": {
"id": 0,
"pos": 0,
- "display_name": "Image",
- "key": "image",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Preview image used for the page",
+ "display_name": "Spotlight",
+ "key": "spotlight",
+ "type": "boolean",
+ "description": "Show spotlight behind cursor",
"required": false
},
- "cardImage": {
+ "spaceBefore": {
"id": 0,
"pos": 0,
- "display_name": "CardImage",
- "key": "cardImage",
- "type": "asset",
- "filetypes": [
- "images"
+ "display_name": "SpaceBefore",
+ "key": "spaceBefore",
+ "type": "option",
+ "default_value": "default",
+ "description": "Amount of spacing before the section",
+ "options": [
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "e318b02f-0bab-41f3-a26f-d5a22bd14284"
+ },
+ {
+ "name": "small",
+ "value": "small",
+ "_uid": "da1ae374-0f14-4338-a265-d99e9d1ddb5b"
+ },
+ {
+ "name": "none",
+ "value": "none",
+ "_uid": "cb408275-6622-4372-a7ac-59d47c0ac3f9"
+ }
],
- "description": "Card preview image (larger, e.g. Twitter) used for the page",
"required": false
},
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "seo"
- }
- },
- "is_nestable": true,
- "real_name": "Seo",
- "color": "#05566a",
- "icon": "block-wallet"
- },
- {
- "name": "blog-head",
- "display_name": "Blog Head",
- "created_at": "2024-09-05T10:51:57.980Z",
- "updated_at": "2024-09-05T10:51:57.980Z",
- "id": 56,
- "schema": {
- "date": {
+ "spaceAfter": {
"id": 0,
"pos": 0,
- "display_name": "Date",
- "key": "date",
- "type": "datetime",
- "disable_time": true,
- "description": "The date when the blog post was published",
+ "display_name": "SpaceAfter",
+ "key": "spaceAfter",
+ "type": "option",
+ "default_value": "default",
+ "description": "Amount of spacing after the section",
+ "options": [
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "9ab78e11-6551-41e0-a957-42b4991a8593"
+ },
+ {
+ "name": "small",
+ "value": "small",
+ "_uid": "2eef1f3e-700f-42d8-ad16-0f0b3d7a8b15"
+ },
+ {
+ "name": "none",
+ "value": "none",
+ "_uid": "63861daf-57b1-4d48-97a4-6a4c8ba15851"
+ }
+ ],
"required": false
},
- "tags": {
+ "inverted": {
"id": 0,
"pos": 0,
- "display_name": "Tags",
- "key": "tags",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "tags"
- ],
- "description": "Tag given to a blog post"
+ "display_name": "Inverted",
+ "key": "inverted",
+ "type": "boolean",
+ "description": "Whether to invert the section",
+ "required": false
},
- "headline": {
+ "headerSpacing": {
"id": 0,
"pos": 0,
- "display_name": "Headline",
- "key": "headline",
- "type": "markdown",
- "description": "The headline of the blog post",
+ "display_name": "HeaderSpacing",
+ "key": "headerSpacing",
+ "type": "boolean",
+ "description": "Reserve additional spacing for a floating header",
"required": false
},
- "image": {
+ "tab-eae1383f-47ed-4a57-8164-8c18a603f4f3": {
"id": 0,
"pos": 0,
- "display_name": "Image",
- "key": "image",
- "type": "asset",
- "filetypes": [
- "images"
+ "display_name": "Headline",
+ "key": "tab-eae1383f-47ed-4a57-8164-8c18a603f4f3",
+ "keys": [
+ "headline_text",
+ "headline_large",
+ "headline_width",
+ "headline_textAlign",
+ "headline_align",
+ "headline_sub",
+ "headline_switchOrder"
],
- "description": "The source of the cover image for the blog post",
+ "type": "tab",
"required": false
},
- "type": {
+ "headline_text": {
"id": 0,
"pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "blog-head"
- }
- },
- "is_nestable": true,
- "real_name": "Blog Head",
- "color": "#05566a",
- "icon": "block-wallet",
- "image": "//a.storyblok.com/f/303819/1000x863/d0abca10ad/blog-blog-head-default.png"
- },
- {
- "name": "links",
- "display_name": "Links",
- "created_at": "2024-09-05T10:51:57.982Z",
- "updated_at": "2024-09-05T10:51:57.982Z",
- "id": 57,
- "schema": {
- "icon": {
+ "display_name": "Text",
+ "key": "headline_text",
+ "type": "markdown",
+ "description": "Headline Text for the section",
+ "required": false
+ },
+ "headline_large": {
"id": 0,
"pos": 0,
- "display_name": "Icon",
- "key": "icon",
- "type": "text",
+ "display_name": "Large",
+ "key": "headline_large",
+ "type": "boolean",
+ "description": "Make the headline larger",
"required": false
},
- "label": {
+ "headline_width": {
"id": 0,
"pos": 0,
- "display_name": "Label",
- "key": "label",
- "type": "text",
+ "display_name": "Width",
+ "key": "headline_width",
+ "type": "option",
+ "default_value": "unset",
+ "description": "Width of headline to use",
+ "options": [
+ {
+ "name": "unset",
+ "value": "unset",
+ "_uid": "7873786e-fd7f-4b26-8563-92bf35dda02c"
+ },
+ {
+ "name": "narrow",
+ "value": "narrow",
+ "_uid": "0328f5c1-28d2-4516-99ee-22fc81a67c73"
+ },
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "e4b92096-e068-4c18-b23d-2eed60263e61"
+ },
+ {
+ "name": "wide",
+ "value": "wide",
+ "_uid": "c8db4f9e-097a-4bc9-9134-fc27d421aee8"
+ }
+ ],
"required": false
},
- "href": {
+ "headline_textAlign": {
"id": 0,
"pos": 0,
- "display_name": "Href",
- "key": "href",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
+ "display_name": "TextAlign",
+ "key": "headline_textAlign",
+ "type": "option",
+ "description": "Choose the text alignment for the headline",
+ "options": [
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "16285508-b13a-45c4-b717-03dee31f9319"
+ },
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "d3490bbd-7d43-4a56-a705-4e5373e77a7d"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "9eb2199b-196e-42f5-a75c-487f8706de06"
+ }
+ ],
"required": false
},
- "newTab": {
+ "headline_align": {
"id": 0,
"pos": 0,
- "display_name": "NewTab",
- "key": "newTab",
- "type": "boolean",
- "description": "Open link in new Tab",
+ "display_name": "Align",
+ "key": "headline_align",
+ "type": "option",
+ "description": "Choose an alignment for positioning the headline",
+ "options": [
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "3f9af892-e962-4e43-bcf3-aef358b70607"
+ },
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "2e955cfa-09a5-4f15-bdf5-1ee6847b6dec"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "759148a5-93ed-4e2d-9623-09a502305e21"
+ }
+ ],
"required": false
- }
- },
- "is_nestable": true,
- "real_name": "Links",
- "color": "#05566a",
- "icon": "block-wallet"
- },
- {
- "name": "blog-author",
- "display_name": "Blog Author",
- "created_at": "2024-09-05T10:51:57.982Z",
- "updated_at": "2024-09-05T10:51:57.982Z",
- "id": 58,
- "schema": {
- "name": {
+ },
+ "headline_sub": {
"id": 0,
"pos": 0,
- "display_name": "Name",
- "key": "name",
- "type": "text",
- "description": "The name of the author",
+ "display_name": "Sub",
+ "key": "headline_sub",
+ "type": "markdown",
+ "description": "Subheadline for the section",
"required": false
},
- "byline": {
+ "headline_switchOrder": {
"id": 0,
"pos": 0,
- "display_name": "Byline",
- "key": "byline",
- "type": "text",
- "description": "The byline of the author",
+ "display_name": "SwitchOrder",
+ "key": "headline_switchOrder",
+ "type": "boolean",
+ "description": "Switch the order of headline and subheadline",
"required": false
},
- "tab-f18a8daf-85fc-4cc0-99c5-98562d820a9d": {
+ "tab-fa338197-c354-4855-86a3-563317ffe431": {
"id": 0,
"pos": 0,
- "display_name": "Image",
- "key": "tab-f18a8daf-85fc-4cc0-99c5-98562d820a9d",
+ "display_name": "Content",
+ "key": "tab-fa338197-c354-4855-86a3-563317ffe431",
"keys": [
- "image_src",
- "image_alt",
- "image_fullWidth",
- "image_aspectRatio"
+ "content_width",
+ "content_align",
+ "content_gutter",
+ "content_mode",
+ "content_tileWidth"
],
"type": "tab",
"required": false
},
- "image_src": {
+ "content_width": {
"id": 0,
"pos": 0,
- "display_name": "Src",
- "key": "image_src",
- "type": "asset",
- "filetypes": [
- "images"
+ "display_name": "Width",
+ "key": "content_width",
+ "type": "option",
+ "default_value": "unset",
+ "description": "Width of content to use",
+ "options": [
+ {
+ "name": "unset",
+ "value": "unset",
+ "_uid": "7ab1513e-e7eb-489f-b681-b87efb67a78c"
+ },
+ {
+ "name": "narrow",
+ "value": "narrow",
+ "_uid": "c48c4e83-acbb-43c8-b1ee-8e095c3cbd60"
+ },
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "205ce9b3-5ff3-47c4-adb1-0199f2bda813"
+ },
+ {
+ "name": "wide",
+ "value": "wide",
+ "_uid": "244edb61-89b7-4139-ab4f-4c726af689dd"
+ }
],
- "description": "URL of the image to display",
- "required": false
- },
- "image_alt": {
- "id": 0,
- "pos": 0,
- "display_name": "Alt",
- "key": "image_alt",
- "type": "text",
- "description": "Alt text of the image",
"required": false
},
- "image_fullWidth": {
+ "content_align": {
"id": 0,
"pos": 0,
- "display_name": "FullWidth",
- "key": "image_fullWidth",
- "type": "boolean",
- "description": "Image uses all the horizontal space vailable",
+ "display_name": "Align",
+ "key": "content_align",
+ "type": "option",
+ "default_value": "center",
+ "description": "Choose an alignment for the content",
+ "options": [
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "850f640c-9c76-4104-8e8d-b03dae77a67c"
+ },
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "f08a20eb-b056-4568-9783-c34a5835d510"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "347f8bb0-f44a-4db1-9656-bc4a0dcee231"
+ }
+ ],
"required": false
},
- "image_aspectRatio": {
+ "content_gutter": {
"id": 0,
"pos": 0,
- "display_name": "AspectRatio",
- "key": "image_aspectRatio",
+ "display_name": "Gutter",
+ "key": "content_gutter",
"type": "option",
- "default_value": "square",
- "description": "Aspect Ratio of the Images",
+ "default_value": "default",
+ "description": "Size of gutter to use",
"options": [
{
- "name": "wide",
- "value": "wide",
- "_uid": "dd29f8db-56ee-4ab3-a846-f55502719e5a"
+ "name": "large",
+ "value": "large",
+ "_uid": "eff29270-a301-4196-ae6a-0eb0c4f2e99b"
},
{
- "name": "square",
- "value": "square",
- "_uid": "17cc9de4-1aef-44ba-8af9-2e4d8773b58f"
+ "name": "default",
+ "value": "default",
+ "_uid": "9b957155-5f24-4a7d-a0c6-96369eace1bf"
+ },
+ {
+ "name": "small",
+ "value": "small",
+ "_uid": "2119bd8c-e721-40e1-aa5b-05fbe276656f"
},
{
- "name": "vertical",
- "value": "vertical",
- "_uid": "b24f56d6-0b6e-4528-8662-9477691139fe"
+ "name": "none",
+ "value": "none",
+ "_uid": "0d8d48e5-7f61-4b56-89b6-0c273e36d864"
}
],
"required": false
},
- "links": {
- "id": 0,
- "pos": 0,
- "display_name": "Links",
- "key": "links",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "links"
- ]
- },
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "blog-author"
- }
- },
- "is_nestable": true,
- "real_name": "Blog Author",
- "color": "#05566a",
- "icon": "block-wallet",
- "image": "//a.storyblok.com/f/303819/390x646/3ad4c977cf/blog-blog-author-default.png"
- },
- {
- "name": "socialSharing",
- "display_name": "SocialSharing",
- "created_at": "2024-09-05T10:51:57.982Z",
- "updated_at": "2024-09-05T10:51:57.982Z",
- "id": 59,
- "schema": {
- "icon": {
+ "content_mode": {
"id": 0,
"pos": 0,
- "display_name": "Icon",
- "key": "icon",
- "type": "text",
- "description": "The icon name for the social link",
+ "display_name": "Mode",
+ "key": "content_mode",
+ "type": "option",
+ "default_value": "default",
+ "description": "Layout mode used for section contents",
+ "options": [
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "600d73d3-f69e-4515-b00a-761c777f9a5d"
+ },
+ {
+ "name": "tile",
+ "value": "tile",
+ "_uid": "430d8d60-8364-471f-8639-59f891a074e7"
+ },
+ {
+ "name": "list",
+ "value": "list",
+ "_uid": "33516e68-7c6c-4403-8449-2935dc58ed98"
+ },
+ {
+ "name": "slider",
+ "value": "slider",
+ "_uid": "ef37e987-32fd-44bb-a139-123aaaec4f9e"
+ }
+ ],
"required": false
},
- "href": {
+ "content_tileWidth": {
"id": 0,
"pos": 0,
- "display_name": "Href",
- "key": "href",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "description": "The href for the social link",
+ "display_name": "TileWidth",
+ "key": "content_tileWidth",
+ "type": "option",
+ "default_value": "default",
+ "description": "Set min-width for the tiles in the grid",
+ "options": [
+ {
+ "name": "smallest",
+ "value": "smallest",
+ "_uid": "cf148cf4-0a28-4075-bed6-e55cc1cc5366"
+ },
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "b784db30-ebcc-4e3f-b65e-bb369ca6ea82"
+ },
+ {
+ "name": "medium",
+ "value": "medium",
+ "_uid": "feb56fef-424a-4243-bb25-ac549a8667d2"
+ },
+ {
+ "name": "large",
+ "value": "large",
+ "_uid": "e8cf4b72-9849-4659-8485-d139e26b2f0a"
+ },
+ {
+ "name": "largest",
+ "value": "largest",
+ "_uid": "af6329c4-a535-4447-8717-900d323bdc42"
+ }
+ ],
"required": false
},
- "title": {
- "id": 0,
- "pos": 0,
- "display_name": "Title",
- "key": "title",
- "type": "text",
- "description": "The title for the social link",
- "required": false
- }
- },
- "is_nestable": true,
- "real_name": "SocialSharing",
- "color": "#05566a",
- "icon": "block-wallet"
- },
- {
- "name": "blog-aside",
- "display_name": "Blog Aside",
- "created_at": "2024-09-05T10:51:57.982Z",
- "updated_at": "2024-09-05T10:51:57.982Z",
- "id": 60,
- "schema": {
- "author": {
+ "components": {
"id": 0,
"pos": 0,
- "display_name": "Author",
- "key": "author",
+ "display_name": "Components",
+ "key": "components",
"type": "bloks",
- "restrict_type": "",
+ "restrict_type": "groups",
"restrict_components": true,
- "component_whitelist": [
- "blog-author"
+ "component_group_whitelist": [
+ "bf816fda-bebc-4136-9503-913c14bcae4e"
],
- "description": "The author of the blog post"
+ "description": "Abstracts a page concept into JSON schema",
+ "required": false
},
- "socialSharing": {
+ "buttons": {
"id": 0,
"pos": 0,
- "display_name": "SocialSharing",
- "key": "socialSharing",
+ "display_name": "Buttons",
+ "key": "buttons",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "socialSharing"
- ]
- },
- "readingTime": {
- "id": 0,
- "pos": 0,
- "display_name": "ReadingTime",
- "key": "readingTime",
- "type": "text",
- "description": "The reading time for the blog post",
- "required": false
- },
- "date": {
- "id": 0,
- "pos": 0,
- "display_name": "Date",
- "key": "date",
- "type": "datetime",
- "disable_time": true,
- "description": "The date when the blog post was published",
- "required": false
- },
- "className": {
- "id": 0,
- "pos": 0,
- "display_name": "ClassName",
- "key": "className",
- "type": "text",
- "required": false
- },
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "blog-aside"
- }
- },
- "is_nestable": true,
- "real_name": "Blog Aside",
- "color": "#05566a",
- "icon": "block-wallet",
- "image": "//a.storyblok.com/f/303819/390x646/89a7c36bfb/blog-blog-aside-default.png"
- },
- {
- "name": "items",
- "display_name": "Items",
- "created_at": "2024-09-05T10:51:57.995Z",
- "updated_at": "2024-09-05T10:51:57.995Z",
- "id": 157,
- "schema": {
- "href": {
- "id": 0,
- "pos": 0,
- "display_name": "Href",
- "key": "href",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "required": false
+ "buttons"
+ ],
+ "description": "Component used for user interaction"
},
- "label": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "Label",
- "key": "label",
+ "display_name": "Type",
+ "key": "type",
"type": "text",
- "required": false
- },
- "active": {
- "id": 0,
- "pos": 0,
- "display_name": "Active",
- "key": "active",
- "type": "boolean",
- "required": false
+ "description": "Internal type for interface resolution",
+ "default_value": "section"
}
},
"is_nestable": true,
- "real_name": "Items",
+ "real_name": "Section",
"color": "#05566a",
- "icon": "block-wallet"
+ "icon": "gallery-vertical",
+ "image": "//a.storyblok.com/f/284989/1440x928/fbd66f7b6e/layout-section-cards.png"
},
{
"name": "navItems",
"display_name": "NavItems",
- "created_at": "2024-09-05T10:51:57.995Z",
- "updated_at": "2024-09-05T10:51:57.995Z",
- "id": 158,
+ "created_at": "2024-04-15T21:18:48.761Z",
+ "updated_at": "2024-04-15T21:18:48.761Z",
+ "id": 48,
"schema": {
"href": {
"id": 0,
@@ -3907,18 +3690,6 @@
"key": "active",
"type": "boolean",
"required": false
- },
- "items": {
- "id": 0,
- "pos": 0,
- "display_name": "Items",
- "key": "items",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "items"
- ]
}
},
"is_nestable": true,
@@ -3929,20 +3700,18 @@
{
"name": "header",
"display_name": "Header",
- "created_at": "2024-09-05T10:51:57.995Z",
- "updated_at": "2024-09-05T10:51:57.995Z",
- "id": 159,
+ "created_at": "2024-04-15T21:18:48.761Z",
+ "updated_at": "2024-04-15T21:18:48.761Z",
+ "id": 49,
"schema": {
- "tab-a87576f8-2003-4499-82bc-0d5170dc564a": {
+ "tab-098a906f-ccdc-40d1-a141-62105d0cb73e": {
"id": 0,
"pos": 0,
"display_name": "Logo",
- "key": "tab-a87576f8-2003-4499-82bc-0d5170dc564a",
+ "key": "tab-098a906f-ccdc-40d1-a141-62105d0cb73e",
"keys": [
"logo_src",
- "logo_srcInverted",
"logo_alt",
- "logo_homepageHref",
"logo_width",
"logo_height"
],
@@ -3962,18 +3731,6 @@
"description": "Picture source",
"required": false
},
- "logo_srcInverted": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcInverted",
- "key": "logo_srcInverted",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Picture source",
- "required": false
- },
"logo_alt": {
"id": 0,
"pos": 0,
@@ -3983,19 +3740,6 @@
"description": "Alt text to display for picture",
"required": false
},
- "logo_homepageHref": {
- "id": 0,
- "pos": 0,
- "display_name": "HomepageHref",
- "key": "logo_homepageHref",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "default_value": "/",
- "required": false
- },
"logo_width": {
"id": 0,
"pos": 0,
@@ -4014,22 +3758,17 @@
"description": "Height of the picture",
"required": false
},
- "flyoutInverted": {
- "id": 0,
- "pos": 0,
- "display_name": "FlyoutInverted",
- "key": "flyoutInverted",
- "type": "boolean",
- "description": "Toggle the inversion of the flyout navigation",
- "required": false
- },
- "dropdownInverted": {
+ "logoHref": {
"id": 0,
"pos": 0,
- "display_name": "DropdownInverted",
- "key": "dropdownInverted",
- "type": "boolean",
- "description": "Toggle the inversion of the dropdown navigation",
+ "display_name": "LogoHref",
+ "key": "logoHref",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "default_value": "/",
"required": false
},
"floating": {
@@ -4041,15 +3780,6 @@
"description": "Make the header float over the first Section",
"required": false
},
- "inverted": {
- "id": 0,
- "pos": 0,
- "display_name": "Inverted",
- "key": "inverted",
- "type": "boolean",
- "description": "Invert the color scheme of the header",
- "required": false
- },
"navItems": {
"id": 0,
"pos": 0,
@@ -4076,25 +3806,23 @@
"real_name": "Header",
"color": "#05566a",
"icon": "block-wallet",
- "image": "//a.storyblok.com/f/303819/1280x255/2934acfd18/layout-header-header.png"
+ "image": "//a.storyblok.com/f/284989/1280x255/678a3ca18d/layout-header-header.png"
},
{
"name": "footer",
"display_name": "Footer",
- "created_at": "2024-09-05T10:51:57.998Z",
- "updated_at": "2024-09-05T10:51:57.998Z",
- "id": 162,
+ "created_at": "2024-04-15T21:18:48.763Z",
+ "updated_at": "2024-04-15T21:18:48.763Z",
+ "id": 51,
"schema": {
- "tab-a3e4fb51-bed2-4bdd-9f94-1adee3745371": {
+ "tab-7d6038ed-80ed-4d94-9327-8a46fcff8501": {
"id": 0,
"pos": 0,
"display_name": "Logo",
- "key": "tab-a3e4fb51-bed2-4bdd-9f94-1adee3745371",
+ "key": "tab-7d6038ed-80ed-4d94-9327-8a46fcff8501",
"keys": [
"logo_src",
- "logo_srcInverted",
"logo_alt",
- "logo_homepageHref",
"logo_width",
"logo_height"
],
@@ -4114,18 +3842,6 @@
"description": "Picture source",
"required": false
},
- "logo_srcInverted": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcInverted",
- "key": "logo_srcInverted",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Picture source",
- "required": false
- },
"logo_alt": {
"id": 0,
"pos": 0,
@@ -4135,19 +3851,6 @@
"description": "Alt text to display for picture",
"required": false
},
- "logo_homepageHref": {
- "id": 0,
- "pos": 0,
- "display_name": "HomepageHref",
- "key": "logo_homepageHref",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "default_value": "/",
- "required": false
- },
"logo_width": {
"id": 0,
"pos": 0,
@@ -4166,23 +3869,17 @@
"description": "Height of the picture",
"required": false
},
- "byline": {
+ "logoHref": {
"id": 0,
"pos": 0,
- "display_name": "Byline",
- "key": "byline",
- "type": "text",
- "default_value": "© 2024 systemics Inc. All rights reserved.",
- "description": "Small line of text displayed below the logo",
- "required": false
- },
- "inverted": {
- "id": 0,
- "pos": 0,
- "display_name": "Inverted",
- "key": "inverted",
- "type": "boolean",
- "description": "Invert the color scheme of the footer",
+ "display_name": "LogoHref",
+ "key": "logoHref",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "default_value": "/",
"required": false
},
"navItems": {
@@ -4211,98 +3908,51 @@
"real_name": "Footer",
"color": "#05566a",
"icon": "block-wallet",
- "image": "//a.storyblok.com/f/303819/1280x371/ebabf2db14/layout-footer-footer.png"
+ "image": "//a.storyblok.com/f/284989/1280x371/a099e0a63b/layout-footer-footer.png"
},
{
- "name": "blog-overview",
- "display_name": "Blog Overview",
- "created_at": "2024-09-05T10:51:57.980Z",
- "updated_at": "2024-09-05T10:51:57.980Z",
+ "name": "blog-post",
+ "display_name": "Blog Post",
+ "created_at": "2024-04-15T21:18:48.728Z",
+ "updated_at": "2024-04-15T21:18:48.728Z",
"is_root": true,
- "id": 54,
+ "id": 7,
"schema": {
- "section": {
- "id": 0,
- "pos": 0,
- "display_name": "Section",
- "key": "section",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "section"
- ],
- "description": "Component used to layout components into pages"
- },
- "latestTitle": {
- "id": 0,
- "pos": 0,
- "display_name": "LatestTitle",
- "key": "latestTitle",
- "type": "text",
- "default_value": "Latest Post",
- "description": "Title for the latest post section",
- "required": false
- },
- "latest": {
+ "head": {
"id": 0,
"pos": 0,
- "display_name": "Latest",
- "key": "latest",
+ "display_name": "Head",
+ "key": "head",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "blog-teaser"
+ "blog-head"
],
- "description": "Display a blog teaser with date, tags, headline, teaser text and author"
- },
- "listTitle": {
- "id": 0,
- "pos": 0,
- "display_name": "ListTitle",
- "key": "listTitle",
- "type": "text",
- "default_value": "Recent Posts",
- "description": "Title for the list of posts section",
- "required": false
+ "description": "Intro portion of a singular blog entry"
},
- "list": {
+ "aside": {
"id": 0,
"pos": 0,
- "display_name": "List",
- "key": "list",
+ "display_name": "Aside",
+ "key": "aside",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "blog-teaser"
+ "blog-aside"
],
- "description": "Display a blog teaser with date, tags, headline, teaser text and author"
+ "description": "Meta info for a singular blog entry"
},
- "moreTitle": {
+ "content": {
"id": 0,
"pos": 0,
- "display_name": "MoreTitle",
- "key": "moreTitle",
- "type": "text",
- "default_value": "Featured Posts",
- "description": "Title for the more featured posts section",
+ "display_name": "Content",
+ "key": "content",
+ "type": "markdown",
+ "description": "Body text for the blog post",
"required": false
},
- "more": {
- "id": 0,
- "pos": 0,
- "display_name": "More",
- "key": "more",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "blog-teaser"
- ],
- "description": "Display a blog teaser with date, tags, headline, teaser text and author"
- },
"cta": {
"id": 0,
"pos": 0,
@@ -4336,67 +3986,58 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "blog-overview"
+ "default_value": "blog-post"
}
},
"is_nestable": false,
- "real_name": "Blog Overview"
+ "real_name": "Blog Post"
},
{
- "name": "blog-post",
- "display_name": "Blog Post",
- "created_at": "2024-09-05T10:51:57.987Z",
- "updated_at": "2024-09-05T10:51:57.987Z",
+ "name": "blog-overview",
+ "display_name": "Blog Overview",
+ "created_at": "2024-04-15T21:18:48.732Z",
+ "updated_at": "2024-04-15T21:18:48.732Z",
"is_root": true,
- "id": 109,
+ "id": 17,
"schema": {
- "head": {
+ "latest": {
"id": 0,
"pos": 0,
- "display_name": "Head",
- "key": "head",
+ "display_name": "Latest",
+ "key": "latest",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "blog-head"
+ "blog-teaser"
],
- "description": "Intro portion of a singular blog entry"
+ "description": "Display a blog teaser with date, tags, headline, teaser text and author"
},
- "aside": {
+ "list": {
"id": 0,
"pos": 0,
- "display_name": "Aside",
- "key": "aside",
+ "display_name": "List",
+ "key": "list",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "blog-aside"
+ "blog-teaser"
],
- "description": "Meta info for a singular blog entry"
- },
- "content": {
- "id": 0,
- "pos": 0,
- "display_name": "Content",
- "key": "content",
- "type": "markdown",
- "description": "Body text for the blog post, overwrites sections if present",
- "required": false
+ "description": "Display a blog teaser with date, tags, headline, teaser text and author"
},
- "section": {
+ "more": {
"id": 0,
"pos": 0,
- "display_name": "Section",
- "key": "section",
+ "display_name": "More",
+ "key": "more",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "section"
+ "blog-teaser"
],
- "description": "Component used to layout components into pages"
+ "description": "Display a blog teaser with date, tags, headline, teaser text and author"
},
"cta": {
"id": 0,
@@ -4431,19 +4072,19 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "blog-post"
+ "default_value": "blog-overview"
}
},
"is_nestable": false,
- "real_name": "Blog Post"
+ "real_name": "Blog Overview"
},
{
"name": "page",
"display_name": "Page",
- "created_at": "2024-09-05T10:51:57.992Z",
- "updated_at": "2024-09-05T10:51:57.992Z",
+ "created_at": "2024-04-15T21:18:48.758Z",
+ "updated_at": "2024-04-15T21:18:48.758Z",
"is_root": true,
- "id": 156,
+ "id": 47,
"schema": {
"section": {
"id": 0,
@@ -4458,58 +4099,6 @@
],
"description": "Component used to layout components into pages"
},
- "tab-7edb3efb-794b-42a6-bd18-f0f2deafe394": {
- "id": 0,
- "pos": 0,
- "display_name": "Header",
- "key": "tab-7edb3efb-794b-42a6-bd18-f0f2deafe394",
- "keys": [
- "header_floating",
- "header_inverted"
- ],
- "type": "tab",
- "description": "Header settings for the page",
- "required": false
- },
- "header_floating": {
- "id": 0,
- "pos": 0,
- "display_name": "Floating",
- "key": "header_floating",
- "type": "boolean",
- "description": "Toggle default floating header behaviour set in global settings",
- "required": false
- },
- "header_inverted": {
- "id": 0,
- "pos": 0,
- "display_name": "Inverted",
- "key": "header_inverted",
- "type": "boolean",
- "description": "Toggle default inverted header behaviour set in global settings",
- "required": false
- },
- "tab-359793c4-1666-40ee-a6a8-c2534ff9f076": {
- "id": 0,
- "pos": 0,
- "display_name": "Footer",
- "key": "tab-359793c4-1666-40ee-a6a8-c2534ff9f076",
- "keys": [
- "footer_inverted"
- ],
- "type": "tab",
- "description": "Footer settings for the page",
- "required": false
- },
- "footer_inverted": {
- "id": 0,
- "pos": 0,
- "display_name": "Inverted",
- "key": "footer_inverted",
- "type": "boolean",
- "description": "Toggle default inverted footer behaviour set in global settings",
- "required": false
- },
"seo": {
"id": 0,
"pos": 0,
@@ -4539,10 +4128,10 @@
{
"name": "settings",
"display_name": "Settings",
- "created_at": "2024-09-05T10:51:57.998Z",
- "updated_at": "2024-09-05T10:51:57.998Z",
+ "created_at": "2024-04-15T21:18:48.763Z",
+ "updated_at": "2024-04-15T21:18:48.763Z",
"is_root": true,
- "id": 164,
+ "id": 53,
"schema": {
"header": {
"id": 0,
@@ -4555,7 +4144,7 @@
"component_whitelist": [
"header"
],
- "description": "Header layered on top by the CMS"
+ "description": "Header"
},
"footer": {
"id": 0,
diff --git a/cms/presets.123456.json b/cms/presets.123456.json
index f6dd2c3..2ab84e0 100644
--- a/cms/presets.123456.json
+++ b/cms/presets.123456.json
@@ -4,7 +4,7 @@
"id": 0,
"name": "Default",
"preset": {
- "_uid": "977d89ef-9408-4059-b735-2dc19b5debe3",
+ "_uid": "44045d43-7ac6-47af-a071-3dccc4321947",
"type": "blog-aside",
"component": "blog-aside",
"socialSharing": [
@@ -12,7 +12,7 @@
"icon": "twitter",
"href": "https://twitter.com/share?text=The%20Future%20of%20AI&url=https://example.com/blog/the-future-of-ai",
"title": "Share on Twitter",
- "_uid": "9ab54040-0abf-49f5-8997-42706e097b86",
+ "_uid": "1fbfb0bc-b3ac-43c2-8b74-43c0ed717802",
"type": "socialSharing",
"component": "socialSharing"
},
@@ -20,172 +20,88 @@
"icon": "linkedin",
"href": "https://www.linkedin.com/shareArticle?mini=true&url=https://example.com/blog/the-future-of-ai&title=The%20Future%20of%20AI&summary=The%20Future%20of%20AI&source=LinkedIn",
"title": "Share on LinkedIn",
- "_uid": "6c14d751-d1ea-439d-a580-eb9380e9c071",
+ "_uid": "9f9a10dc-bdad-4faa-a942-9ee7d91f8a9c",
"type": "socialSharing",
"component": "socialSharing"
}
],
"readingTime": "5 min read",
"date": "12/30/2022",
- "title": "Blog Post",
"author_name": "Jane Smith",
"author_byline": "CEO at Company",
- "author_image": {
- "src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
- "alt": "Picture of Jane Smith",
- "fullWidth": false,
- "aspectRatio": "square"
- },
- "author_links": [
- {
- "icon": "twitter",
- "label": "jane_smith",
- "href": "tel:+4922868896620",
- "newTab": false
- },
- {
- "icon": "email",
- "label": "jane.smith@example.com",
- "href": "mailto:mail@example.com",
- "newTab": false
- }
- ],
- "author__uid": "949fce95-d0c3-42b3-ab39-73054a7aedf2",
- "author_type": "blog-author",
- "author_component": "blog-author"
- },
- "component_id": 60,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:02.369Z",
- "updated_at": "2024-09-05T10:52:02.369Z",
- "color": "",
- "icon": "",
- "description": "",
- "image": "//a.storyblok.com/f/303819/390x646/89a7c36bfb/blog-blog-aside-default.png"
- },
- {
- "id": 0,
- "name": "Default",
- "preset": {
- "_uid": "c76309bf-9301-45a2-ada9-8c2f2f3c82d1",
- "type": "blog-author",
- "component": "blog-author",
- "name": "Jane Smith",
- "byline": "CEO at Company",
- "links": [
- {
- "icon": "twitter",
- "label": "jane_smith",
- "href": "tel:+4922868896620",
- "newTab": false,
- "_uid": "a3276cc1-1696-4834-bcc4-1ae540ab0519",
- "type": "links",
- "component": "links"
- },
- {
- "icon": "email",
- "label": "jane.smith@example.com",
- "href": "mailto:mail@example.com",
- "newTab": false,
- "_uid": "74646dc6-6b3c-4324-96e8-7c9059c36d11",
- "type": "links",
- "component": "links"
- }
- ],
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
- "image_alt": "Picture of Jane Smith",
- "image_fullWidth": false,
- "image_aspectRatio": "square"
+ "author_image": "//a.storyblok.com/f/284989/250x250/cd9c7c180f/author-emily.png",
+ "author_twitter": "jane_smith",
+ "author_email": "jane.smith@example.com"
},
- "component_id": 58,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:03.614Z",
- "updated_at": "2024-09-05T10:52:03.614Z",
+ "component_id": 3,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:08.299Z",
+ "updated_at": "2024-04-16T12:20:08.299Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/390x646/3ad4c977cf/blog-blog-author-default.png"
+ "image": "//a.storyblok.com/f/284989/390x646/3689b8eebc/blog-blog-aside-default.png"
},
{
"id": 0,
"name": "Default",
"preset": {
- "_uid": "f7b8d454-eedd-4787-af5b-13bc8c4994c8",
+ "_uid": "d7cddc59-83fe-4879-9002-a6921ffefcad",
"type": "blog-head",
"component": "blog-head",
"date": "12/30/2022",
- "headline": "The Future of AI",
- "image": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
"tags": [
- {
- "entry": "Technology",
- "_uid": "408e2fe2-f1fc-4cbe-99c0-3d0ca4e560f8",
- "type": "tags",
- "component": "tags"
- },
- {
- "entry": "AI",
- "_uid": "a5bdf8d8-2831-48dc-af51-c93de4e1f4a6",
- "type": "tags",
- "component": "tags"
- }
- ]
+ "Technology",
+ "AI"
+ ],
+ "headline": "The Future of AI",
+ "image": "//a.storyblok.com/f/284989/1260x840/d7d4af8458/close-up-young-business-team-working.png"
},
- "component_id": 56,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:04.510Z",
- "updated_at": "2024-09-05T10:52:04.510Z",
+ "component_id": 1,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:09.595Z",
+ "updated_at": "2024-04-16T12:20:09.595Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x863/d0abca10ad/blog-blog-head-default.png"
+ "image": "//a.storyblok.com/f/284989/1000x863/3c6595a27d/blog-blog-head-default.png"
},
{
"id": 0,
"name": "Default",
"preset": {
- "_uid": "4fe5f85f-7a94-4368-a06f-d3f0c6d781ac",
+ "_uid": "9bb18ddc-64f8-484d-a45c-239801bcfc49",
"type": "blog-teaser",
"component": "blog-teaser",
"date": "12/30/2022",
+ "tags": [
+ "Technology",
+ "AI"
+ ],
"headline": "The Future of AI",
"teaserText": "Dive into the future of AI in this detailed blog post. Discover how technology is rapidly evolving, the impact of AI on various industries, and what to expect in the coming years. Learn about the latest advancements, challenges, and the potential solutions that AI brings to the table.",
- "image": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "image": "//a.storyblok.com/f/284989/1260x840/d7d4af8458/close-up-young-business-team-working.png",
"readingTime": "5 min read",
- "tags": [
- {
- "entry": "Technology",
- "_uid": "9f0527a4-fae2-4adc-9214-37e08a09e7df",
- "type": "tags",
- "component": "tags"
- },
- {
- "entry": "AI",
- "_uid": "2f2b99b0-8513-4ab5-a000-82ce554c3d39",
- "type": "tags",
- "component": "tags"
- }
- ],
"link_url": "https://example.com",
"link_label": "Read more",
"author_name": "Jane Smith",
"author_title": "Senior AI Researcher",
- "author_image": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png"
+ "author_image": "//a.storyblok.com/f/284989/250x250/cd9c7c180f/author-emily.png"
},
- "component_id": 46,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:06.791Z",
- "updated_at": "2024-09-05T10:52:06.791Z",
+ "component_id": 9,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:10.929Z",
+ "updated_at": "2024-04-16T12:20:10.929Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x504/9e533dfe80/blog-blog-teaser-default.png"
+ "image": "//a.storyblok.com/f/284989/1000x504/fad7e261fa/blog-blog-teaser-default.png"
},
{
"id": 0,
"name": "Banner",
"preset": {
- "_uid": "303c4272-306e-433b-80f9-26dbc4d1312f",
+ "_uid": "1727b8c7-0c7b-46a8-8ccd-bf185a920d25",
"type": "cta",
"component": "cta",
"headline": "Ready to Transform Your Development Process?",
@@ -198,7 +114,7 @@
"label": "Contact Us",
"target": "#",
"icon": "person",
- "_uid": "2612556e-870b-4e15-8f81-65677f2693f1",
+ "_uid": "13b9422f-5d27-40ed-b376-97b0267e08fe",
"type": "buttons",
"component": "buttons"
},
@@ -206,7 +122,7 @@
"label": "Learn More",
"target": "#",
"icon": "date",
- "_uid": "bef7182a-e5e8-495f-9df8-c998dd2abf25",
+ "_uid": "bcccb3c8-8376-41d2-bb03-b63b45ba846e",
"type": "buttons",
"component": "buttons"
}
@@ -218,20 +134,20 @@
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 15,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:07.867Z",
- "updated_at": "2024-09-05T10:52:07.867Z",
+ "component_id": 5,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:11.985Z",
+ "updated_at": "2024-04-16T12:20:11.985Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x472/f1941a7bd7/components-cta-banner.png"
+ "image": "//a.storyblok.com/f/284989/1000x472/dc206d0921/components-cta-banner.png"
},
{
"id": 0,
"name": "Highlighted",
"preset": {
- "_uid": "9f50706a-2527-4e9e-9179-d6c980fd3091",
+ "_uid": "92ad0ef9-1878-40b9-ba22-3d17db5e6c52",
"type": "cta",
"component": "cta",
"headline": "Why Choose Our Design System?",
@@ -244,7 +160,7 @@
"label": "Get Started",
"target": "#",
"icon": "person",
- "_uid": "870202a8-6791-4db1-90d0-88bee141c0cf",
+ "_uid": "7055a6e5-f521-4002-b9dd-972137f2abe1",
"type": "buttons",
"component": "buttons"
}
@@ -256,20 +172,20 @@
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 15,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:08.721Z",
- "updated_at": "2024-09-05T10:52:08.721Z",
+ "component_id": 5,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:12.865Z",
+ "updated_at": "2024-04-16T12:20:12.865Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x551/f041af0f3a/components-cta-highlighted.png"
+ "image": "//a.storyblok.com/f/284989/1000x551/4b998b3889/components-cta-highlighted.png"
},
{
"id": 0,
"name": "LeftAligned",
"preset": {
- "_uid": "91b2c2e9-72e6-4c93-8d22-f2e61becdb62",
+ "_uid": "ebcc92fe-11ff-44c6-93d8-287fbe37aa9d",
"type": "cta",
"component": "cta",
"headline": "Experience Our Design System",
@@ -282,7 +198,7 @@
"label": "Learn More",
"target": "#",
"icon": "person",
- "_uid": "28e508e3-4522-4985-8c7f-f968e1639b31",
+ "_uid": "228e2b8f-fba7-4837-a0d3-3c3de04bd923",
"type": "buttons",
"component": "buttons"
}
@@ -294,20 +210,20 @@
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 15,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:09.541Z",
- "updated_at": "2024-09-05T10:52:09.541Z",
+ "component_id": 5,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:13.607Z",
+ "updated_at": "2024-04-16T12:20:13.607Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x443/6ba77ac9ce/components-cta-left-aligned.png"
+ "image": "//a.storyblok.com/f/284989/1000x443/1065dc096a/components-cta-left-aligned.png"
},
{
"id": 0,
"name": "ProductAdvertisement",
"preset": {
- "_uid": "fbe3223f-462e-43bb-9517-6ea5e211ddf0",
+ "_uid": "92dcd5f3-fa77-48e8-bb5a-718a9e52cd40",
"type": "cta",
"component": "cta",
"headline": "Experience Immersive Sound",
@@ -321,7 +237,7 @@
"target": "/shop",
"variant": "primary",
"icon": "chevron-right",
- "_uid": "73390942-75f8-412f-9270-9540af6e4e44",
+ "_uid": "bb2a40c6-3d28-4456-9c03-df4c11c930c6",
"type": "buttons",
"component": "buttons"
},
@@ -329,7 +245,7 @@
"label": "Learn More",
"target": "/product-info",
"variant": "secondary",
- "_uid": "323e4930-0ad6-4c43-b4a6-649e08609e9b",
+ "_uid": "a694bef5-82d9-470a-90a2-b60bbf489b59",
"type": "buttons",
"component": "buttons"
}
@@ -337,28 +253,28 @@
"textAlign": "left",
"contentAlign": "center",
"text": "Our over-ear headphones provide an immersive audio experience. With noise-cancellation technology and high-quality sound.",
- "backgroundImage": "//a.storyblok.com/f/303819/6457x2400/44575f118b/bg_dot-carpet-blue.svg",
+ "backgroundImage": "//a.storyblok.com/f/284989/6457x2400/d615252ee2/bg_dot-carpet-blue.svg",
"width": "wide",
"image_padding": false,
- "image_src": "//a.storyblok.com/f/303819/1040x1040/e6cac2664a/comp_audio04.png",
+ "image_src": "//a.storyblok.com/f/284989/1040x1040/6829a37d91/comp_audio04.png",
"image_alt": "Over-Ear Headphones",
"order_mobileImageLast": false,
"order_desktopImageLast": false
},
- "component_id": 15,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:10.367Z",
- "updated_at": "2024-09-05T10:52:10.367Z",
+ "component_id": 5,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:14.264Z",
+ "updated_at": "2024-04-16T12:20:14.264Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1400x660/a58c8732af/components-cta-product-advertisement.png"
+ "image": "//a.storyblok.com/f/284989/1400x660/4df6635da3/components-cta-product-advertisement.png"
},
{
"id": 0,
"name": "ContactBanner",
"preset": {
- "_uid": "5ad0fae1-d440-4f4e-b1c8-2296ebf972b1",
+ "_uid": "36c492ab-1bbc-4eda-bd17-48242c5a8f1e",
"type": "cta",
"component": "cta",
"headline": "Get in touch",
@@ -371,7 +287,7 @@
"label": "Contact us",
"icon": "person",
"target": "#",
- "_uid": "83ef1813-9527-4789-94eb-d08417441536",
+ "_uid": "5c55caaf-89b8-4f93-8b33-b71b1ac0a441",
"type": "buttons",
"component": "buttons"
},
@@ -379,7 +295,7 @@
"label": "Book a meeting",
"icon": "date",
"target": "#",
- "_uid": "79c02cbf-110d-4bbc-a871-9d1be17af270",
+ "_uid": "57e044c3-42a2-4c41-8ed6-f0200d84808b",
"type": "buttons",
"component": "buttons"
}
@@ -389,24 +305,24 @@
"text": "Our modular design approach allows for flexibility and scalability in your application's architecture.",
"width": "wide",
"image_padding": false,
- "image_src": "//a.storyblok.com/f/303819/956x637/c4ca1fe43c/contact-person.png",
+ "image_src": "//a.storyblok.com/f/284989/956x637/b9816d9aef/contact-person.png",
"order_mobileImageLast": false,
"order_desktopImageLast": false
},
- "component_id": 15,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:11.550Z",
- "updated_at": "2024-09-05T10:52:11.550Z",
+ "component_id": 5,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:15.311Z",
+ "updated_at": "2024-04-16T12:20:15.311Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1600x560/e8bdb29977/components-cta-contact-banner.png"
+ "image": "//a.storyblok.com/f/284989/1600x560/89fbcbdf0f/components-cta-contact-banner.png"
},
{
"id": 0,
"name": "SplitBanner",
"preset": {
- "_uid": "94cbcef2-a2bd-48b6-9db7-5bd5fc8cd86c",
+ "_uid": "a6940902-3efd-4983-a451-757f6a0bbb8b",
"type": "cta",
"component": "cta",
"headline": "Design System Services",
@@ -419,7 +335,7 @@
"label": "What can we do for you?",
"icon": "person",
"target": "#",
- "_uid": "f7b0c4bb-95c3-4bfe-9e75-1ff10555397d",
+ "_uid": "494c90df-bb96-4295-9cac-159ccc18b8b1",
"type": "buttons",
"component": "buttons"
}
@@ -430,24 +346,24 @@
"backgroundColor": "#001856",
"width": "wide",
"image_padding": false,
- "image_src": "//a.storyblok.com/f/303819/833x833/1a936b8a84/colored-square.png",
+ "image_src": "//a.storyblok.com/f/284989/833x833/85c3b5d863/colored-square.png",
"order_mobileImageLast": false,
"order_desktopImageLast": false
},
- "component_id": 15,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:13.057Z",
- "updated_at": "2024-09-05T10:52:13.058Z",
+ "component_id": 5,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:16.511Z",
+ "updated_at": "2024-04-16T12:20:16.511Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1680x850/12ba20bd98/components-cta-split-banner.png"
+ "image": "//a.storyblok.com/f/284989/1680x850/5f203eab49/components-cta-split-banner.png"
},
{
"id": 0,
"name": "AngledImage",
"preset": {
- "_uid": "4bd5cd0b-70a1-43a4-940d-b2d74765bcf7",
+ "_uid": "64b8a61b-1573-4c91-9121-dc8656f2ccb2",
"type": "cta",
"component": "cta",
"headline": "Our **Approach** to Design Systems",
@@ -460,7 +376,7 @@
"label": "Contact us",
"icon": "person",
"target": "#",
- "_uid": "64ec0d64-9f06-4486-a6dd-33ba16ca6b77",
+ "_uid": "d5876372-e97c-4ffc-b422-15226e60130a",
"type": "buttons",
"component": "buttons"
},
@@ -468,7 +384,7 @@
"label": "Book a meeting",
"icon": "date",
"target": "#",
- "_uid": "08e459ef-0bf9-42df-9153-eb515f78e7d0",
+ "_uid": "62b4edec-68cf-43c0-b738-542bd4daf432",
"type": "buttons",
"component": "buttons"
}
@@ -478,24 +394,24 @@
"text": "We value efficiency without compromising quality. Our secret weapon? kickstartDS, a revolutionary code-first and open source framework for creating design systems.\n\nThis tool accelerates our development, saving you valuable time and helping us deliver top-notch results faster.",
"width": "wide",
"image_padding": false,
- "image_src": "//a.storyblok.com/f/303819/1363x1761/2468b00a16/angled-image.png",
+ "image_src": "//a.storyblok.com/f/284989/1363x1761/882c798fab/angled-image.png",
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 15,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:14.583Z",
- "updated_at": "2024-09-05T10:52:14.583Z",
+ "component_id": 5,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:17.573Z",
+ "updated_at": "2024-04-16T12:20:17.573Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1670x910/46b6f7fb39/components-cta-angled-image.png"
+ "image": "//a.storyblok.com/f/284989/1670x910/c9d061f33a/components-cta-angled-image.png"
},
{
"id": 0,
"name": "ColoredBanner",
"preset": {
- "_uid": "2e66b530-478d-4670-8af9-2f8b874abb9d",
+ "_uid": "9f56824d-e98d-49e7-af31-8393c310c057",
"type": "cta",
"component": "cta",
"headline": "Expertise in Scalable Solutions",
@@ -507,14 +423,14 @@
{
"label": "Learn More",
"target": "#",
- "_uid": "d1c9f3b3-c50c-4287-90ad-5d520f79332a",
+ "_uid": "d182fbf6-82d3-4638-b4da-d3d7f4043826",
"type": "buttons",
"component": "buttons"
},
{
"label": "Contact Us",
"target": "#",
- "_uid": "6bda003c-a334-4898-8288-cf10fda536be",
+ "_uid": "31c38301-e4f7-48e5-8a51-81c3e639104b",
"type": "buttons",
"component": "buttons"
}
@@ -527,20 +443,20 @@
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 15,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:16.236Z",
- "updated_at": "2024-09-05T10:52:16.236Z",
+ "component_id": 5,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:18.857Z",
+ "updated_at": "2024-04-16T12:20:18.857Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1350x500/ce25a78eca/components-cta-colored-banner.png"
+ "image": "//a.storyblok.com/f/284989/1350x500/1112c38a3e/components-cta-colored-banner.png"
},
{
"id": 0,
"name": "AlignBottom",
"preset": {
- "_uid": "70652b23-3652-4cfc-bb5f-f9648ec348cb",
+ "_uid": "7156b978-f942-4b88-b85e-b77000a90e4d",
"type": "cta",
"component": "cta",
"headline": "Custom Solutions",
@@ -553,7 +469,7 @@
"label": "Contact us",
"icon": "person",
"target": "#",
- "_uid": "b39de430-f00f-454d-bcb7-cfe3b3a902f2",
+ "_uid": "d8cf0a99-dd91-4580-8d88-f149129395c4",
"type": "buttons",
"component": "buttons"
},
@@ -561,7 +477,7 @@
"label": "Book a meeting",
"icon": "date",
"target": "#",
- "_uid": "184bb884-1acb-4eef-aac7-c6d714676ff4",
+ "_uid": "25d41bf0-705e-4cbc-82ef-d328611141df",
"type": "buttons",
"component": "buttons"
}
@@ -569,93 +485,93 @@
"textAlign": "left",
"contentAlign": "bottom",
"text": "At Systemics, we believe in the power of technology to transform businesses. Our team of experienced professionals is dedicated to providing innovative solutions that meet the unique needs of your business.\n\nWe understand that every business is different, and that's why we offer custom solutions tailored to your specific business needs and requirements.",
- "backgroundImage": "//a.storyblok.com/f/303819/1650x800/670d8f6f70/grid-bg.svg",
+ "backgroundImage": "//a.storyblok.com/f/284989/1650x800/683b7e17bf/grid-bg.svg",
"width": "wide",
"image_padding": true,
- "image_src": "//a.storyblok.com/f/303819/1109x1325/285fbf18a5/offset-image.png",
+ "image_src": "//a.storyblok.com/f/284989/1109x1325/043f0c03b8/offset-image.png",
"order_mobileImageLast": false,
"order_desktopImageLast": false
},
- "component_id": 15,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:16.953Z",
- "updated_at": "2024-09-05T10:52:16.953Z",
+ "component_id": 5,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:19.614Z",
+ "updated_at": "2024-04-16T12:20:19.614Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1680x1040/9018f3436d/components-cta-align-bottom.png"
+ "image": "//a.storyblok.com/f/284989/1680x1040/f627ee6d05/components-cta-align-bottom.png"
},
{
"id": 0,
"name": "DropdownList",
"preset": {
- "_uid": "588fc842-4190-4e56-873d-73f3f4c40819",
+ "_uid": "010a01d0-748c-49c7-9b88-50d9dcf9d0f6",
"type": "faq",
"component": "faq",
"questions": [
{
"question": "What are the benefits of investing in a Design System?",
"answer": "Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.",
- "_uid": "f58e468a-2624-44d8-abaf-9a1f840ffc06",
+ "_uid": "879ea8c3-8d49-448d-8871-ffd3ec87cf21",
"type": "questions",
"component": "questions"
},
{
"question": "What is a Design System?",
"answer": "Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.",
- "_uid": "906fdaf7-7a23-4633-8967-6981ce52e628",
+ "_uid": "fab27b35-fcab-47b0-989c-dd45d27a0abb",
"type": "questions",
"component": "questions"
},
{
"question": "What is the role of a Headless CMS in a Design System?",
"answer": "A Headless CMS plays a crucial role in a Design System by providing a content-first approach. It separates the back-end content from the front-end presentation layer, allowing for seamless integration with any design system. This results in a flexible, scalable, and platform-agnostic system that ensures content consistency across all platforms and devices.",
- "_uid": "d8a1a43d-c231-49e9-8ec7-a52a30e27a7b",
+ "_uid": "106ee572-ac00-47f1-8635-ab6df02fef2a",
"type": "questions",
"component": "questions"
}
]
},
- "component_id": 29,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:18.706Z",
- "updated_at": "2024-09-05T10:52:18.706Z",
+ "component_id": 30,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:22.012Z",
+ "updated_at": "2024-04-16T12:20:22.012Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/820x455/1c0c30985e/components-faq-dropdown-list.png"
+ "image": "//a.storyblok.com/f/284989/820x455/7e1d7b48f1/components-faq-dropdown-list.png"
},
{
"id": 0,
"name": "SingleDropdown",
"preset": {
- "_uid": "ff8c2850-ae3b-4904-956e-ae2ed101ae0e",
+ "_uid": "e7ee7bc0-6307-4d0f-b929-d376d73a61fd",
"type": "faq",
"component": "faq",
"questions": [
{
"question": "What is a Design System?",
"answer": "Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.",
- "_uid": "9d794d04-0eeb-46b4-a981-761859376c5c",
+ "_uid": "7364cecd-bd05-4355-b58b-cf907ff19695",
"type": "questions",
"component": "questions"
}
]
},
- "component_id": 29,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:19.405Z",
- "updated_at": "2024-09-05T10:52:19.405Z",
+ "component_id": 30,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:22.666Z",
+ "updated_at": "2024-04-16T12:20:22.666Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/820x228/892cf42e2b/components-faq-single-dropdown.png"
+ "image": "//a.storyblok.com/f/284989/820x228/ca85051741/components-faq-single-dropdown.png"
},
{
"id": 0,
"name": "IconCentered",
"preset": {
- "_uid": "88c952ef-6218-4003-b660-e1f363281523",
+ "_uid": "eda44ef7-41bc-455d-8af8-a60e4e954f95",
"type": "features",
"component": "features",
"layout": "largeTiles",
@@ -666,7 +582,7 @@
"title": "Scalable Architecture",
"text": "Our design system allows for a scalable architecture, enabling you to build applications that can grow with your needs.",
"style": "stack",
- "_uid": "0055341d-bbc1-4020-926d-808cacd63e74",
+ "_uid": "2f5f05d2-a60c-4eb5-89d7-99fe04ff155a",
"type": "feature",
"component": "feature",
"cta_target": "/feature1",
@@ -679,7 +595,7 @@
"title": "Efficient Development",
"text": "Experience efficient development like never before. Our design system streamlines the development process, saving you time and resources.",
"style": "stack",
- "_uid": "3c8afc8f-62c2-4b17-88d6-b1fd8fbf7952",
+ "_uid": "40fdc845-59a2-485a-b463-322b77df60fe",
"type": "feature",
"component": "feature",
"cta_target": "/feature2",
@@ -692,7 +608,7 @@
"title": "Consistent UI",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"style": "stack",
- "_uid": "ac46c4c0-2ae0-470a-828d-6823ca9d6033",
+ "_uid": "4f584f87-4498-45e2-a2a0-ed50f86bbdef",
"type": "feature",
"component": "feature",
"cta_target": "/feature3",
@@ -705,7 +621,7 @@
"title": "Customizable Design",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"style": "stack",
- "_uid": "c2cb97ed-439f-4633-96b2-4bf9478dff2b",
+ "_uid": "fb139416-0836-4667-ad6d-186ffa9788ab",
"type": "feature",
"component": "feature",
"cta_target": "/feature4",
@@ -718,7 +634,7 @@
"title": "Cloud Ready",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"style": "stack",
- "_uid": "a1dc68ae-169f-432b-b9c6-359de0eb77b0",
+ "_uid": "aa6816cc-ad09-4484-8b33-65abecf83551",
"type": "feature",
"component": "feature",
"cta_target": "/feature5",
@@ -731,7 +647,7 @@
"title": "Secure",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"style": "stack",
- "_uid": "a0517c73-a829-421e-8909-00eb64e7515c",
+ "_uid": "1855fe2a-a378-495e-94b9-10ebc9c1b632",
"type": "feature",
"component": "feature",
"cta_target": "/feature6",
@@ -743,20 +659,20 @@
"ctas_toggle": true,
"ctas_style": "link"
},
- "component_id": 16,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:19.990Z",
- "updated_at": "2024-09-05T10:52:19.990Z",
+ "component_id": 31,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:23.350Z",
+ "updated_at": "2024-04-16T12:20:23.350Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x666/88ba598e61/components-features-icon-centered.png"
+ "image": "//a.storyblok.com/f/284989/1440x666/dd66fa8a69/components-features-icon-centered.png"
},
{
"id": 0,
"name": "StackWithButton",
"preset": {
- "_uid": "8df0773a-268c-46cc-bb7d-d731ec201dbc",
+ "_uid": "f39baeba-391f-4813-842c-bbbdbdfc527b",
"type": "features",
"component": "features",
"layout": "smallTiles",
@@ -767,7 +683,7 @@
"title": "Consistent UI",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"style": "stack",
- "_uid": "23698d00-55ff-4e0a-851e-a0d679f58d96",
+ "_uid": "cd5e6057-b164-42c1-a4f7-cca4eefe0a74",
"type": "feature",
"component": "feature",
"cta_target": "/feature3",
@@ -780,7 +696,7 @@
"title": "Customizable Design",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"style": "stack",
- "_uid": "5a79c576-76af-4a0c-b560-e65d19ca1d0e",
+ "_uid": "55305153-a71a-4070-ae48-c2bfa5650d3a",
"type": "feature",
"component": "feature",
"cta_target": "/feature4",
@@ -793,7 +709,7 @@
"title": "Cloud Ready",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"style": "stack",
- "_uid": "2d6f8aea-40e4-46d1-82ce-4212cc8d4954",
+ "_uid": "6a20a7b4-fde2-4335-8d91-7ca20739bb73",
"type": "feature",
"component": "feature",
"cta_target": "/feature5",
@@ -806,7 +722,7 @@
"title": "Secure",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"style": "stack",
- "_uid": "d5247fc8-6cf9-4431-a21c-7170994947e2",
+ "_uid": "6fce9e48-7aa8-4319-9b49-759cc1ae67e8",
"type": "feature",
"component": "feature",
"cta_target": "/feature6",
@@ -818,20 +734,20 @@
"ctas_toggle": true,
"ctas_style": "button"
},
- "component_id": 16,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:20.938Z",
- "updated_at": "2024-09-05T10:52:20.938Z",
+ "component_id": 31,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:24.064Z",
+ "updated_at": "2024-04-16T12:20:24.064Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1230x463/5614033d6c/components-features-stack-with-button.png"
+ "image": "//a.storyblok.com/f/284989/1230x463/6e14403beb/components-features-stack-with-button.png"
},
{
"id": 0,
"name": "ListView",
"preset": {
- "_uid": "aa2651ac-475f-4883-826d-61742850aa9e",
+ "_uid": "b641e319-2b36-4604-ad5d-dc344113fbbf",
"type": "features",
"component": "features",
"layout": "list",
@@ -842,7 +758,7 @@
"title": "Customizable Design",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"style": "stack",
- "_uid": "5c2df6cc-37e3-4ddc-a866-81399e5c66a5",
+ "_uid": "e54d55e0-4c78-4bd2-8cd1-e8234b7495cf",
"type": "feature",
"component": "feature",
"cta_target": "/feature4",
@@ -855,7 +771,7 @@
"title": "Efficient Development",
"text": "Experience efficient development like never before. Our design system streamlines the development process, saving you time and resources.",
"style": "stack",
- "_uid": "cce287d0-038b-4527-9e95-a236063e8007",
+ "_uid": "9c72ed28-da1c-4678-b713-05b809687732",
"type": "feature",
"component": "feature",
"cta_target": "/feature2",
@@ -868,7 +784,7 @@
"title": "Consistent UI",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"style": "stack",
- "_uid": "6e1e4c37-1686-47bb-80f9-07274b115867",
+ "_uid": "e24e2cae-36cd-4344-b8e3-e98d6eeddb17",
"type": "feature",
"component": "feature",
"cta_target": "/feature3",
@@ -881,7 +797,7 @@
"title": "Scalable Architecture",
"text": "Our design system allows for a scalable architecture, enabling you to build applications that can grow with your needs.",
"style": "stack",
- "_uid": "fb582462-a0b5-4b7b-925e-913d4d1e4c72",
+ "_uid": "3818e7c1-c30d-43a1-a0bc-f528afe19a30",
"type": "feature",
"component": "feature",
"cta_target": "/feature1",
@@ -894,7 +810,7 @@
"title": "Cloud Ready",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"style": "stack",
- "_uid": "b7013495-fd8b-47cf-b5a0-f0fddefb5f17",
+ "_uid": "8f691042-2297-4eb8-b7d6-58fc6e54b849",
"type": "feature",
"component": "feature",
"cta_target": "/feature5",
@@ -907,7 +823,7 @@
"title": "Secure",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"style": "stack",
- "_uid": "8ec70128-9f1d-4cbe-994c-e4a2d35e63c4",
+ "_uid": "c9952c7c-c849-4bad-a327-f9d3b1b32379",
"type": "feature",
"component": "feature",
"cta_target": "/feature6",
@@ -919,20 +835,20 @@
"ctas_toggle": false,
"ctas_style": "intext"
},
- "component_id": 16,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:21.818Z",
- "updated_at": "2024-09-05T10:52:21.818Z",
+ "component_id": 31,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:24.829Z",
+ "updated_at": "2024-04-16T12:20:24.829Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/768x755/a0bffa5b37/components-features-list-view.png"
+ "image": "//a.storyblok.com/f/284989/768x755/c3fd1dbe3b/components-features-list-view.png"
},
{
"id": 0,
"name": "IconBesideWithLinkInText",
"preset": {
- "_uid": "f0b6469a-4b8f-4090-a0a5-0f05d0ad5b03",
+ "_uid": "a0b29eaa-1b5b-4f6d-970e-0245f8fc7437",
"type": "features",
"component": "features",
"layout": "smallTiles",
@@ -943,7 +859,7 @@
"title": "Scalable Architecture",
"text": "Our design system allows for a scalable architecture, enabling you to build applications that can grow with your needs.",
"style": "stack",
- "_uid": "a9cec162-a974-4c3b-9c4e-acebc2cf0b88",
+ "_uid": "35189293-7841-4048-a29d-3f733327692c",
"type": "feature",
"component": "feature",
"cta_target": "/feature1",
@@ -956,7 +872,7 @@
"title": "Efficient Development",
"text": "Experience efficient development like never before. Our design system streamlines the development process, saving you time and resources.",
"style": "stack",
- "_uid": "3e6d3ce6-dda0-4e48-bd68-1723e905418c",
+ "_uid": "33935768-fc87-4bae-a67e-e66801623103",
"type": "feature",
"component": "feature",
"cta_target": "/feature2",
@@ -969,7 +885,7 @@
"title": "Consistent UI",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"style": "stack",
- "_uid": "f0f32b45-c36c-44d6-a1c3-e92600bded7a",
+ "_uid": "0d98ca97-7f54-404b-be3f-c79b58b448ee",
"type": "feature",
"component": "feature",
"cta_target": "/feature3",
@@ -982,7 +898,7 @@
"title": "Customizable Design",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"style": "stack",
- "_uid": "c4da4619-3d27-46e3-80df-b3e8613cb5c5",
+ "_uid": "c55fb800-1ff4-4f80-b61c-8ebe3fd6aa65",
"type": "feature",
"component": "feature",
"cta_target": "/feature4",
@@ -995,7 +911,7 @@
"title": "Cloud Ready",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"style": "stack",
- "_uid": "103ec2f9-6b77-4821-b51b-7cbc0c6f1766",
+ "_uid": "f2e0ea69-2987-46d6-9146-333368274e6a",
"type": "feature",
"component": "feature",
"cta_target": "/feature5",
@@ -1008,7 +924,7 @@
"title": "Secure",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"style": "stack",
- "_uid": "5326789b-4484-413a-b089-e4d22830ddac",
+ "_uid": "e1104db3-c124-404a-9186-70005f2d131d",
"type": "feature",
"component": "feature",
"cta_target": "/feature6",
@@ -1020,20 +936,20 @@
"ctas_toggle": true,
"ctas_style": "intext"
},
- "component_id": 16,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:22.514Z",
- "updated_at": "2024-09-05T10:52:22.514Z",
+ "component_id": 31,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:25.483Z",
+ "updated_at": "2024-04-16T12:20:25.483Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x506/2abadd3a6d/components-features-icon-beside-with-link-in-text.png"
+ "image": "//a.storyblok.com/f/284989/1000x506/1a7d3fc319/components-features-icon-beside-with-link-in-text.png"
},
{
"id": 0,
"name": "IconIntextWithLink",
"preset": {
- "_uid": "009d88be-285c-4fc0-9021-f8a4b8d52c21",
+ "_uid": "12ae7d6c-b52e-4be4-a4b8-80b2e296453f",
"type": "features",
"component": "features",
"layout": "largeTiles",
@@ -1044,7 +960,7 @@
"title": "Customizable Design",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"style": "stack",
- "_uid": "553159b7-38a5-4ae7-8b7f-23670dbf87f9",
+ "_uid": "eb7e80f8-ffbc-4949-8039-32fdeaa0b596",
"type": "feature",
"component": "feature",
"cta_target": "/feature4",
@@ -1057,7 +973,7 @@
"title": "Efficient Development",
"text": "Experience efficient development like never before. Our design system streamlines the development process, saving you time and resources.",
"style": "stack",
- "_uid": "6a752605-66ec-4f23-989f-c2abe32545d8",
+ "_uid": "913789ba-dfb7-456c-8395-a0f3dec1b3ea",
"type": "feature",
"component": "feature",
"cta_target": "/feature2",
@@ -1070,7 +986,7 @@
"title": "Consistent UI",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"style": "stack",
- "_uid": "80e1242f-f20a-43a9-ad3f-7918dbd3a097",
+ "_uid": "cb6ab8f6-c004-482a-8108-fb2ed1320057",
"type": "feature",
"component": "feature",
"cta_target": "/feature3",
@@ -1083,7 +999,7 @@
"title": "Cloud Ready",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"style": "stack",
- "_uid": "0bc06165-d4da-4098-9cf3-75378ef246c7",
+ "_uid": "34dfee5a-7cbf-480d-8077-c6a4d1ab3c68",
"type": "feature",
"component": "feature",
"cta_target": "/feature5",
@@ -1096,7 +1012,7 @@
"title": "Secure",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"style": "stack",
- "_uid": "bbc4afc6-59cd-4173-bc10-a87e4d7dba47",
+ "_uid": "fe451d96-ba86-4936-9add-a5c85e410baf",
"type": "feature",
"component": "feature",
"cta_target": "/feature6",
@@ -1108,159 +1024,123 @@
"ctas_toggle": true,
"ctas_style": "link"
},
- "component_id": 16,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:23.472Z",
- "updated_at": "2024-09-05T10:52:23.472Z",
+ "component_id": 31,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:26.249Z",
+ "updated_at": "2024-04-16T12:20:26.249Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1232x524/36a77b0dbb/components-features-icon-intext-with-link.png"
+ "image": "//a.storyblok.com/f/284989/1232x524/f42031ef05/components-features-icon-intext-with-link.png"
},
{
"id": 0,
"name": "Footer",
"preset": {
- "_uid": "0680b0c7-851d-4bda-b48a-a65f477b63fb",
+ "_uid": "d31ffcdb-d9e1-4011-b543-07fa7f59bc4b",
"type": "footer",
"component": "footer",
- "byline": "© 2024 systemics Inc. All rights reserved.",
- "inverted": false,
+ "logoHref": "/",
"navItems": [
{
- "href": "#",
- "label": "Active Item",
- "active": true,
- "_uid": "0d74f712-a013-43c4-846c-1a8240335663",
- "type": "navItems",
- "component": "navItems"
- },
- {
- "href": "#",
- "label": "Navigation Item",
- "_uid": "b4361d03-3f0b-4a03-af7b-db544ea8c44b",
+ "href": "#privacy-policy",
+ "label": "Privacy policy",
+ "_uid": "3de8e9db-2e9d-409e-a627-10844f584882",
"type": "navItems",
"component": "navItems"
},
{
- "href": "#",
- "label": "Dropdown",
- "items": [
- {
- "href": "#",
- "label": "Level 2 Item"
- },
- {
- "href": "#",
- "label": "Active Item",
- "active": true
- },
- {
- "href": "#",
- "label": "An Item with a longer Label"
- },
- {
- "href": "#",
- "label": "And One last one"
- }
- ],
- "_uid": "e4b5b015-ece5-45c8-8d40-c7a794be2d23",
+ "href": "#changelog",
+ "label": "Changelog",
+ "_uid": "957a5d72-7da8-4e32-a3f7-8f6c7f26915f",
"type": "navItems",
"component": "navItems"
},
{
- "href": "#",
- "label": "One more Item",
- "_uid": "90237a44-11be-4ff6-b9e5-e7770902c1f3",
- "type": "navItems",
- "component": "navItems"
- },
- {
- "href": "#",
- "label": "Last Item",
- "_uid": "344dbe99-c604-4a55-9dfc-2ecc645653b4",
+ "href": "https://main--64f08cbba622af835d382b4f.chromatic.com/",
+ "label": "Storybook",
+ "target": "_blank",
+ "_uid": "9755ebf3-0aaf-4303-b9f5-f784d1e7c3bb",
"type": "navItems",
"component": "navItems"
}
],
- "logo_src": "//a.storyblok.com/f/303819/176x40/c909d95782/logo.svg",
- "logo_srcInverted": "/logo-inverted.svg",
- "logo_inverted": false,
- "logo_homepageHref": "#",
+ "logo_src": "//a.storyblok.com/f/284989/176x40/1a22c2e7c2/logo.svg",
"logo_alt": "Systemics Logo",
"logo_width": 176,
- "logo_height": 40
+ "logo_height": 40,
+ "logo_lazy": false
},
- "component_id": 162,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:24.232Z",
- "updated_at": "2024-09-05T10:52:24.232Z",
+ "component_id": 51,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:26.932Z",
+ "updated_at": "2024-04-16T12:20:26.932Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1280x371/ebabf2db14/layout-footer-footer.png"
+ "image": "//a.storyblok.com/f/284989/1280x371/a099e0a63b/layout-footer-footer.png"
},
{
"id": 0,
"name": "SmallSquaresWithLightbox",
"preset": {
- "_uid": "5675c50e-4b1c-4d5c-a7f9-f0702bb31a92",
+ "_uid": "95a31fef-4efb-44ed-94c4-31d98d8465d1",
"type": "gallery",
"component": "gallery",
"images": [
{
- "src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "src": "//a.storyblok.com/f/284989/1260x840/d7d4af8458/close-up-young-business-team-working.png",
"alt": "Alt text Image 1",
"caption": "Caption Image 1",
- "_uid": "249430bd-418e-4918-8089-3be7696225cc",
+ "_uid": "7878009c-2466-4b7f-85de-3162f951361e",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/996x998/ff01d6d56b/low-angle-tall-building-with-many-windows_23-2148230392.png",
+ "src": "//a.storyblok.com/f/284989/996x998/d759d38252/low-angle-tall-building-with-many-windows_23-2148230392.png",
"alt": "Alt text Image 2",
"caption": "Caption Image 2",
- "_uid": "fe6c654e-cf4e-4963-a6b7-951d0dfd8c46",
+ "_uid": "89dbfd06-bc5b-46ca-ae55-62b56d0327a4",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/833x833/c5fec35583/full-shot-different-people-working-together.png",
+ "src": "//a.storyblok.com/f/284989/833x833/c94478a60d/full-shot-different-people-working-together.png",
"alt": "Alt text Image 3",
"caption": "Caption Image 3",
- "_uid": "4ae4ddc6-0c18-4311-b19b-1e8f7704a5b9",
+ "_uid": "ecbc600d-9154-46f4-95af-6961c375eda9",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
+ "src": "//a.storyblok.com/f/284989/1440x960/7188e8cd57/top-view-desk-with-keyboard-drawing-pad.png",
"alt": "Alt text Image 4",
"caption": "Caption Image 4",
- "_uid": "d5247b60-6bd4-4826-a6e5-2b25a4f46a96",
+ "_uid": "95b62db3-e045-4f98-a3f8-71fd032703d2",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
+ "src": "//a.storyblok.com/f/284989/1440x960/6f29eba31f/people-brainstorming-work-meeting.png",
"alt": "Alt text Image 5",
"caption": "Caption Image 5",
- "_uid": "8db59618-33a5-40d7-b4bb-15263782694d",
+ "_uid": "c646cefc-f221-4fda-8552-b973f38913a6",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1000x1500/0e10ec9133/view-modern-office.jpg",
+ "src": "//a.storyblok.com/f/284989/1000x1500/973e027d35/view-modern-office.jpg",
"alt": "Alt text Image 6",
"caption": "Caption Image 6",
- "_uid": "40395f67-33b8-49cd-a602-00e4765d906c",
+ "_uid": "30612e3f-4116-455e-a5fe-67d870fd7552",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png",
+ "src": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
"alt": "Alt text Image 7",
"caption": "Caption Image 7",
- "_uid": "ccc4dd9b-6e71-4655-92b0-6570786c98c9",
+ "_uid": "8ed18eb7-0ed6-4080-8698-77f72a271b64",
"type": "images",
"component": "images"
}
@@ -1269,68 +1149,68 @@
"lightbox": true,
"layout": "smallTiles"
},
- "component_id": 17,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:24.972Z",
- "updated_at": "2024-09-05T10:52:24.972Z",
+ "component_id": 32,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:27.448Z",
+ "updated_at": "2024-04-16T12:20:27.448Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1100x702/622b6ffed6/components-gallery-small-squares-with-lightbox.png"
+ "image": "//a.storyblok.com/f/284989/1100x702/c179eb0ca4/components-gallery-small-squares-with-lightbox.png"
},
{
"id": 0,
"name": "LargeLandscapeTiles",
"preset": {
- "_uid": "48daca77-c311-4990-9b18-75444e3f4768",
+ "_uid": "dea996c1-11bf-4468-b129-5319853aec6f",
"type": "gallery",
"component": "gallery",
"images": [
{
- "src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "src": "//a.storyblok.com/f/284989/1260x840/d7d4af8458/close-up-young-business-team-working.png",
"alt": "Alt text Image 1",
"caption": "Caption Image 1",
- "_uid": "f716a91a-be49-411d-86c4-9e7c1bd8e909",
+ "_uid": "db80c81d-24ba-4a79-a4f8-37075b3c40db",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/996x998/ff01d6d56b/low-angle-tall-building-with-many-windows_23-2148230392.png",
+ "src": "//a.storyblok.com/f/284989/996x998/d759d38252/low-angle-tall-building-with-many-windows_23-2148230392.png",
"alt": "Alt text Image 2",
"caption": "Caption Image 2",
- "_uid": "5fb342da-af3b-496f-9118-d7017b809947",
+ "_uid": "b21fbcc9-aa26-4a61-b6cb-191bf75eef0c",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/833x833/c5fec35583/full-shot-different-people-working-together.png",
+ "src": "//a.storyblok.com/f/284989/833x833/c94478a60d/full-shot-different-people-working-together.png",
"alt": "Alt text Image 3",
"caption": "Caption Image 3",
- "_uid": "66bb01a2-93e6-4f99-b83f-da653d714a1d",
+ "_uid": "f2e6ac48-41d8-4716-8b1a-9d430aeb5688",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
+ "src": "//a.storyblok.com/f/284989/1440x960/7188e8cd57/top-view-desk-with-keyboard-drawing-pad.png",
"alt": "Alt text Image 4",
"caption": "Caption Image 4",
- "_uid": "8a11f8bf-786b-4180-90cf-50654f1c6b4c",
+ "_uid": "eca7db18-bceb-442e-9c8d-995547f4eedb",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
+ "src": "//a.storyblok.com/f/284989/1440x960/6f29eba31f/people-brainstorming-work-meeting.png",
"alt": "Alt text Image 5",
"caption": "Caption Image 5",
- "_uid": "41e67341-b785-41da-8ece-73fa5a3af514",
+ "_uid": "607c42bc-0ee4-4d6a-9bc8-fd38c6825911",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1000x1500/0e10ec9133/view-modern-office.jpg",
+ "src": "//a.storyblok.com/f/284989/1000x1500/973e027d35/view-modern-office.jpg",
"alt": "Alt text Image 6",
"caption": "Caption Image 6",
- "_uid": "ab12f47b-7b32-48fb-851e-b65b7a8bc439",
+ "_uid": "19f70fec-03cc-43a4-ab02-9a51e8da7107",
"type": "images",
"component": "images"
}
@@ -1339,76 +1219,76 @@
"lightbox": false,
"layout": "largeTiles"
},
- "component_id": 17,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:27.334Z",
- "updated_at": "2024-09-05T10:52:27.334Z",
+ "component_id": 32,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:28.920Z",
+ "updated_at": "2024-04-16T12:20:28.920Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x735/690b88067b/components-gallery-large-landscape-tiles.png"
+ "image": "//a.storyblok.com/f/284989/1440x735/ab3b7565fb/components-gallery-large-landscape-tiles.png"
},
{
"id": 0,
"name": "FreeAspectRatio",
"preset": {
- "_uid": "2207a70e-077c-47ce-ab28-578bde6863de",
+ "_uid": "4987f08f-bea4-4f87-8658-bf35a4a8a41d",
"type": "gallery",
"component": "gallery",
"images": [
{
- "src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "src": "//a.storyblok.com/f/284989/1260x840/d7d4af8458/close-up-young-business-team-working.png",
"alt": "Alt text Image 1",
"caption": "Caption Image 1",
- "_uid": "44e358a2-8bb9-4e3d-844e-a3a6e0c8cf48",
+ "_uid": "29a8eae0-2bde-41a8-b2d5-2b34bbd644be",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/996x998/ff01d6d56b/low-angle-tall-building-with-many-windows_23-2148230392.png",
+ "src": "//a.storyblok.com/f/284989/996x998/d759d38252/low-angle-tall-building-with-many-windows_23-2148230392.png",
"alt": "Alt text Image 2",
"caption": "Caption Image 2",
- "_uid": "0d05ba3a-6fb6-43a2-8297-f0545ad35302",
+ "_uid": "a0ff7942-14b0-41b7-8825-3b0662571cd8",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/833x833/c5fec35583/full-shot-different-people-working-together.png",
+ "src": "//a.storyblok.com/f/284989/833x833/c94478a60d/full-shot-different-people-working-together.png",
"alt": "Alt text Image 3",
"caption": "Caption Image 3",
- "_uid": "4deb011d-fc28-4733-bf0b-a0579d3af48a",
+ "_uid": "e40665a2-0606-444b-bf11-c5f8d35afd16",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
+ "src": "//a.storyblok.com/f/284989/1440x960/7188e8cd57/top-view-desk-with-keyboard-drawing-pad.png",
"alt": "Alt text Image 4",
"caption": "Caption Image 4",
- "_uid": "e79d6632-bf4b-4493-9ea8-849de2f720ae",
+ "_uid": "9eb3fc57-955d-4fde-a86c-974eb22b2e6b",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
+ "src": "//a.storyblok.com/f/284989/1440x960/6f29eba31f/people-brainstorming-work-meeting.png",
"alt": "Alt text Image 5",
"caption": "Caption Image 5",
- "_uid": "b629ac0a-e3ef-4951-824b-ce68bcd297d3",
+ "_uid": "569553f6-8bfe-40e1-b162-84e11a4cb3bd",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1000x1500/0e10ec9133/view-modern-office.jpg",
+ "src": "//a.storyblok.com/f/284989/1000x1500/973e027d35/view-modern-office.jpg",
"alt": "Alt text Image 6",
"caption": "Caption Image 6",
- "_uid": "b2c9641a-ccda-432f-94db-761a26e82e07",
+ "_uid": "d3231e3f-04c3-4d7b-9149-947780addc1c",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png",
+ "src": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
"alt": "Alt text Image 7",
"caption": "Caption Image 7",
- "_uid": "acd5d041-3f27-429f-85ac-cd3e5df20035",
+ "_uid": "bea10a55-8819-49c5-a049-75334ea5512a",
"type": "images",
"component": "images"
}
@@ -1417,44 +1297,44 @@
"lightbox": true,
"layout": "smallTiles"
},
- "component_id": 17,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:29.443Z",
- "updated_at": "2024-09-05T10:52:29.443Z",
+ "component_id": 32,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:30.222Z",
+ "updated_at": "2024-04-16T12:20:30.222Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1040x779/85aaa7bf52/components-gallery-free-aspect-ratio.png"
+ "image": "//a.storyblok.com/f/284989/1040x779/3f747bf99e/components-gallery-free-aspect-ratio.png"
},
{
"id": 0,
"name": "StackLandscape",
"preset": {
- "_uid": "d68808f2-d45d-4733-8dc0-59752894c41e",
+ "_uid": "ec37b1df-7a86-422c-af8d-82d286c4015c",
"type": "gallery",
"component": "gallery",
"images": [
{
- "src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "src": "//a.storyblok.com/f/284989/1260x840/d7d4af8458/close-up-young-business-team-working.png",
"alt": "Alt text Image 1",
"caption": "Caption Image 1",
- "_uid": "d6275c4b-8277-4e89-b72f-c6d03194b7f0",
+ "_uid": "2f3a04ff-bd1f-43dd-b58d-be92c5cece4c",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
+ "src": "//a.storyblok.com/f/284989/1440x960/7188e8cd57/top-view-desk-with-keyboard-drawing-pad.png",
"alt": "Alt text Image 2",
"caption": "Caption Image 2",
- "_uid": "a44ccecd-eaa8-495c-a17e-854a622940c0",
+ "_uid": "80191e01-4d3a-43d8-bd89-442ad17cbf29",
"type": "images",
"component": "images"
},
{
- "src": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
+ "src": "//a.storyblok.com/f/284989/1440x960/6f29eba31f/people-brainstorming-work-meeting.png",
"alt": "Alt text Image 3",
"caption": "Caption Image 3",
- "_uid": "86dfc1ac-8c09-43da-b83e-0b124448d29a",
+ "_uid": "908a1d55-d1e7-460f-ae7e-0037302f68d6",
"type": "images",
"component": "images"
}
@@ -1463,104 +1343,82 @@
"lightbox": false,
"layout": "stack"
},
- "component_id": 17,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:31.010Z",
- "updated_at": "2024-09-05T10:52:31.010Z",
+ "component_id": 32,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:31.369Z",
+ "updated_at": "2024-04-16T12:20:31.369Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/846x1512/d46689ead1/components-gallery-stack-landscape.png"
+ "image": "//a.storyblok.com/f/284989/846x1512/5118481404/components-gallery-stack-landscape.png"
},
{
"id": 0,
"name": "Header",
"preset": {
- "_uid": "be3f4624-eff1-44ea-ad70-091b65419710",
+ "_uid": "653e4504-a947-44a1-a40a-6c538041b21a",
"type": "header",
"component": "header",
- "flyoutInverted": false,
- "dropdownInverted": false,
+ "logoHref": "/",
"floating": false,
- "inverted": false,
"navItems": [
{
"href": "#",
- "label": "Active Item",
- "active": true,
- "_uid": "1d724591-3a5a-47d1-bb2c-0ec667bd19c0",
+ "label": "Nav Item",
+ "_uid": "718fb4ee-30cc-47b3-8e39-3c28294d40fd",
"type": "navItems",
"component": "navItems"
},
{
"href": "#",
- "label": "Navigation Item",
- "_uid": "c82392ef-77af-4483-819b-2a4d625c720a",
+ "label": "Active Item",
+ "active": true,
+ "_uid": "8612ea1e-23c9-4d37-b78c-78d3ca07f209",
"type": "navItems",
"component": "navItems"
},
{
"href": "#",
- "label": "Dropdown",
- "items": [
- {
- "href": "#",
- "label": "Level 2 Item"
- },
- {
- "href": "#",
- "label": "Active Item",
- "active": true
- },
- {
- "href": "#",
- "label": "An Item with a longer Label"
- },
- {
- "href": "#",
- "label": "And One last one"
- }
- ],
- "_uid": "fff79cc4-e8df-43d0-bb25-b61d339ddc35",
+ "label": "Another Item",
+ "_uid": "f1a39480-2c93-45db-9f8d-980d8bb7c5c8",
"type": "navItems",
"component": "navItems"
},
{
"href": "#",
"label": "One more Item",
- "_uid": "6452da5b-49fa-44e2-875a-efc52379aed3",
+ "_uid": "b0a14bf7-52f5-438b-9336-33b0ece5c474",
"type": "navItems",
"component": "navItems"
},
{
"href": "#",
"label": "Last Item",
- "_uid": "fa7c4c6c-84c2-42ec-b73a-fa28ce5a5a24",
+ "_uid": "be35abe2-d8e5-47bc-b0c6-089eed8bf466",
"type": "navItems",
"component": "navItems"
}
],
- "logo_src": "//a.storyblok.com/f/303819/176x40/c909d95782/logo.svg",
- "logo_srcInverted": "/logo-inverted.svg",
- "logo_homepageHref": "#",
+ "logo_src": "//a.storyblok.com/f/284989/176x40/1a22c2e7c2/logo.svg",
"logo_alt": "Systemics Logo",
"logo_width": 176,
- "logo_height": 40
+ "logo_height": 40,
+ "logo_lazy": false
},
- "component_id": 159,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:34.282Z",
- "updated_at": "2024-09-05T10:52:34.282Z",
+ "component_id": 49,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:32.968Z",
+ "updated_at": "2024-04-16T12:20:32.968Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1280x255/2934acfd18/layout-header-header.png"
+ "image": "//a.storyblok.com/f/284989/1280x255/678a3ca18d/layout-header-header.png"
},
{
"id": 0,
"name": "TextBelowImage",
"preset": {
- "_uid": "10f02b42-02a8-4f08-a472-da16ef6419d5",
+ "_uid": "c5e10aa6-a010-4b85-b0da-3a3b8ede2210",
"type": "hero",
"component": "hero",
"highlightText": true,
@@ -1572,7 +1430,7 @@
"label": "Explore further",
"icon": "arrow-down",
"target": "#",
- "_uid": "10f86b04-4ea1-44e9-b134-004c7ceeccdd",
+ "_uid": "331a4d8a-77a4-40cf-ad5a-e002fb374836",
"type": "buttons",
"component": "buttons"
}
@@ -1582,26 +1440,26 @@
"headline": "Welcome to Our Dynamic Workplace",
"sub": "Where Creativity Meets Innovation",
"text": "Experience the perfect blend of creativity, innovation, and productivity in our modern office environment.",
- "image_srcMobile": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png",
- "image_srcTablet": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png",
- "image_srcDesktop": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png",
+ "image_srcMobile": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
+ "image_srcTablet": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
+ "image_srcDesktop": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
"image_src": "https://picsum.photos/seed/kdsvisual/640/270",
"image_indent": "none"
},
- "component_id": 18,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:35.045Z",
- "updated_at": "2024-09-05T10:52:35.045Z",
+ "component_id": 33,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:33.529Z",
+ "updated_at": "2024-04-16T12:20:33.529Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1165x780/df0d8d9712/components-hero-text-below-image.png"
+ "image": "//a.storyblok.com/f/284989/1165x780/4460d35d45/components-hero-text-below-image.png"
},
{
"id": 0,
"name": "TextOnImageWithOverlay",
"preset": {
- "_uid": "023b6463-ec1b-40ec-9931-3dbe987c4f23",
+ "_uid": "cc623252-c495-463a-86ae-70d5bdf5645c",
"type": "hero",
"component": "hero",
"highlightText": false,
@@ -1613,7 +1471,7 @@
"label": "Meet Us",
"icon": "person",
"target": "#",
- "_uid": "9eaa7498-0e09-4206-af81-d406d242ec20",
+ "_uid": "8376c378-474b-424a-8cd8-eafdcf731dc9",
"type": "buttons",
"component": "buttons"
},
@@ -1621,7 +1479,7 @@
"label": "Schedule a Meeting",
"icon": "date",
"target": "#",
- "_uid": "de81e553-1603-4150-b87e-491b2e49626c",
+ "_uid": "821d5fba-119c-4528-8409-91a2a7166f30",
"type": "buttons",
"component": "buttons"
}
@@ -1630,26 +1488,26 @@
"textPosition": "center",
"headline": "Master Scalable Solutions",
"text": "Harness our expertise in crafting scalable and robust applications using cutting-edge technologies.",
- "image_srcMobile": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
- "image_srcTablet": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
- "image_srcDesktop": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
+ "image_srcMobile": "//a.storyblok.com/f/284989/1440x960/7188e8cd57/top-view-desk-with-keyboard-drawing-pad.png",
+ "image_srcTablet": "//a.storyblok.com/f/284989/1440x960/7188e8cd57/top-view-desk-with-keyboard-drawing-pad.png",
+ "image_srcDesktop": "//a.storyblok.com/f/284989/1440x960/7188e8cd57/top-view-desk-with-keyboard-drawing-pad.png",
"image_src": "https://picsum.photos/seed/kdsvisual/640/270",
"image_indent": "none"
},
- "component_id": 18,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:36.121Z",
- "updated_at": "2024-09-05T10:52:36.121Z",
+ "component_id": 33,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:34.723Z",
+ "updated_at": "2024-04-16T12:20:34.723Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1165x780/0b1ba375c8/components-hero-text-on-image-with-overlay.png"
+ "image": "//a.storyblok.com/f/284989/1165x780/3fe8a4078d/components-hero-text-on-image-with-overlay.png"
},
{
"id": 0,
"name": "TextBoxOnFullScreen",
"preset": {
- "_uid": "1d36d21f-076c-49c1-be15-bc531770b7c4",
+ "_uid": "8d79b429-9cd4-4847-a66a-4777a8b50b98",
"type": "hero",
"component": "hero",
"highlightText": false,
@@ -1661,7 +1519,7 @@
"label": "Discover More",
"icon": "arrow-right",
"target": "#",
- "_uid": "a3df4bfe-2d45-4321-9823-b8ed2d6d18f9",
+ "_uid": "c8785e82-e339-4a95-ae34-72d2148e3fef",
"type": "buttons",
"component": "buttons"
},
@@ -1669,7 +1527,7 @@
"label": "Reach Out",
"icon": "phone",
"target": "#",
- "_uid": "a67bb9ff-8d9e-4764-958c-0adcf10b539b",
+ "_uid": "87defecf-01c0-4a23-bde4-cbfe6147b5b8",
"type": "buttons",
"component": "buttons"
}
@@ -1679,26 +1537,26 @@
"headline": "Discover Our Design System",
"sub": "Scalable. Efficient. Seamless.",
"text": "Our design system provides a seamless and efficient framework for building scalable applications. Experience unprecedented speed and scalability with our Headless CMS powered websites, web apps & composable architecture.",
- "image_srcMobile": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
- "image_srcTablet": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
- "image_srcDesktop": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
+ "image_srcMobile": "//a.storyblok.com/f/284989/1440x960/6f29eba31f/people-brainstorming-work-meeting.png",
+ "image_srcTablet": "//a.storyblok.com/f/284989/1440x960/6f29eba31f/people-brainstorming-work-meeting.png",
+ "image_srcDesktop": "//a.storyblok.com/f/284989/1440x960/6f29eba31f/people-brainstorming-work-meeting.png",
"image_src": "https://picsum.photos/seed/kdsvisual/640/270",
"image_indent": "none"
},
- "component_id": 18,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:38.610Z",
- "updated_at": "2024-09-05T10:52:38.610Z",
+ "component_id": 33,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:36.356Z",
+ "updated_at": "2024-04-16T12:20:36.356Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1160x1080/fbe82db359/components-hero-text-box-on-full-screen.png"
+ "image": "//a.storyblok.com/f/284989/1160x1080/6fdddaa153/components-hero-text-box-on-full-screen.png"
},
{
"id": 0,
"name": "StickyImageNextToScrollingText",
"preset": {
- "_uid": "7a6c1ea5-643b-4d11-bbf1-c357424f9c04",
+ "_uid": "73afee75-0cef-4ee1-a3b9-030b1ae81810",
"type": "image-story",
"component": "image-story",
"headline": "The Sanity & Next.js Experts",
@@ -1713,7 +1571,7 @@
"size": "medium",
"disabled": false,
"target": "#",
- "_uid": "8bcb62c4-004a-495a-98e0-7e75f8c45833",
+ "_uid": "69151ae7-2ff5-49a5-87f9-d184ebd07e75",
"type": "buttons",
"component": "buttons"
},
@@ -1723,118 +1581,117 @@
"size": "medium",
"disabled": false,
"target": "#",
- "_uid": "f9d52f53-dafb-4e7f-ad12-28dd9abdefd8",
+ "_uid": "1f14d7d8-f707-47f3-8bf5-bc213a4481f2",
"type": "buttons",
"component": "buttons"
}
],
"textAlign": "left",
"text": "\nHere at Systemics, we bring a range of design system services that can make a difference:\n\n### 1. Design System Consulting\nLet's work side by side to shape a design system strategy that aligns perfectly with your goals. It's not just about tools; it's about guiding principles, stakeholder management und making the right decisions at the right time.\n\n### 2. Design System Creation & Development\nWe'll bring your design system from concept to production, giving you consistent and engaging user experiences across different platforms. We will work together with your digital teams to transfer all complex Figma ideas into code using kickstartDS.\n\n### 3. Headless CMS & Websites\nWe leverage the power of headless CMSs to provide scalable, flexible, and versatile websites that drive your online presence.\n\n### 4. Design System Training\nWe empower your digital teams with the knowledge and skills to manage and evolve your design system effectively.\n\nReady to make your digital journey exceptional?\n ",
- "image_aspectRatio": "unset",
- "image_vAlign": "top",
- "image_src": "//a.storyblok.com/f/303819/833x833/c5fec35583/full-shot-different-people-working-together.png"
+ "image_ratio": "none",
+ "image_src": "//a.storyblok.com/f/284989/833x833/c94478a60d/full-shot-different-people-working-together.png"
},
- "component_id": 33,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:39.940Z",
- "updated_at": "2024-09-05T10:52:39.940Z",
+ "component_id": 34,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:37.505Z",
+ "updated_at": "2024-04-16T12:20:37.505Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1160x960/e4282bb0e6/components-image-story-sticky-image-next-to-scrolling-text.png"
+ "image": "//a.storyblok.com/f/284989/1160x960/f00f493bc9/components-image-story-sticky-image-next-to-scrolling-text.png"
},
{
"id": 0,
"name": "BesideRightLayout",
"preset": {
- "_uid": "8c9a8e66-cac7-4077-b94c-ba0304ad83c4",
+ "_uid": "c6ef4f73-aa49-42d2-a455-8be8800e46c7",
"type": "image-text",
"component": "image-text",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
"highlightText": false,
"layout": "beside-right",
- "image_src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "image_src": "//a.storyblok.com/f/284989/1260x840/d7d4af8458/close-up-young-business-team-working.png",
"image_alt": "Agency"
},
- "component_id": 19,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:41.200Z",
- "updated_at": "2024-09-05T10:52:41.200Z",
+ "component_id": 35,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:38.505Z",
+ "updated_at": "2024-04-16T12:20:38.505Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1240x515/378da43f36/components-image-text-beside-right-layout.png"
+ "image": "//a.storyblok.com/f/284989/1240x515/a3d217e153/components-image-text-beside-right-layout.png"
},
{
"id": 0,
"name": "AboveLayout",
"preset": {
- "_uid": "76e28cfe-aa4c-445e-985f-909eda33927f",
+ "_uid": "ee21a024-d6ea-473e-b4cf-84e34030029b",
"type": "image-text",
"component": "image-text",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
"highlightText": false,
"layout": "above",
- "image_src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "image_src": "//a.storyblok.com/f/284989/1260x840/d7d4af8458/close-up-young-business-team-working.png",
"image_alt": "Agency"
},
- "component_id": 19,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:42.167Z",
- "updated_at": "2024-09-05T10:52:42.167Z",
+ "component_id": 35,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:40.075Z",
+ "updated_at": "2024-04-16T12:20:40.075Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/760x829/71f13c169c/components-image-text-above-layout.png"
+ "image": "//a.storyblok.com/f/284989/760x829/6326500c80/components-image-text-above-layout.png"
},
{
"id": 0,
"name": "CenteredWithButton",
"preset": {
- "_uid": "f3b298cc-cd4b-4ed3-90ca-5149aef98e16",
+ "_uid": "45738204-fb62-4b89-a44b-281bfad97a86",
"type": "logos",
"component": "logos",
"tagline": "Your Success, Our Commitment",
"logo": [
{
- "src": "//a.storyblok.com/f/303819/132x35/285d763921/logoipsum-212.svg",
+ "src": "//a.storyblok.com/f/284989/132x35/06239bfae3/logoipsum-212.svg",
"alt": "Logo 1",
- "_uid": "4621cca3-eb9c-4379-b200-09fd17ec702c",
+ "_uid": "0c2e6244-7381-415e-824d-04f8ace8e0ad",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/124x32/17b256999a/logoipsum-217.svg",
+ "src": "//a.storyblok.com/f/284989/124x32/708bd27603/logoipsum-217.svg",
"alt": "Logo 2",
- "_uid": "68a56364-c6a0-4aa7-a5f2-e07d66883601",
+ "_uid": "b45fbd96-5308-4144-8d26-8c0c6f54b65c",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/154x44/dc317b6600/logoipsum-239.svg",
+ "src": "//a.storyblok.com/f/284989/154x44/e781e98776/logoipsum-239.svg",
"alt": "Logo 3",
- "_uid": "044cdbb3-d581-4258-9a0b-e08a554b6a61",
+ "_uid": "ec6eeef1-a190-496a-9d56-d0e6d0d84642",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
+ "src": "//a.storyblok.com/f/284989/155x40/15c4842e8f/logoipsum-244.svg",
"alt": "Logo 4",
- "_uid": "d9954a01-545a-4530-b330-30d9ea43cc5e",
+ "_uid": "17b94c96-8f61-40d5-b88b-0dccdf0f87bd",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
+ "src": "//a.storyblok.com/f/284989/171x32/d0a399104d/logoipsum-250.svg",
"alt": "Logo 5",
- "_uid": "7cac45d9-bdc3-45e2-9392-b24706aee824",
+ "_uid": "45ce791c-f6c0-445f-996f-9d8ec16399a6",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
+ "src": "//a.storyblok.com/f/284989/218x40/d49347c63a/logoipsum-286.svg",
"alt": "Logo 6",
- "_uid": "7483c27c-8d6f-4ef1-a174-53c19d9fa170",
+ "_uid": "f346d5f8-019f-465b-9fdc-933474f4563e",
"type": "logo",
"component": "logo"
}
@@ -1847,63 +1704,63 @@
"cta_label": "See all our partners",
"cta_style": "button"
},
- "component_id": 20,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:43.636Z",
- "updated_at": "2024-09-05T10:52:43.636Z",
+ "component_id": 36,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:41.183Z",
+ "updated_at": "2024-04-16T12:20:41.183Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x598/2d967b66e6/components-logos-centered-with-button.png"
+ "image": "//a.storyblok.com/f/284989/1000x598/8a1d10a6a9/components-logos-centered-with-button.png"
},
{
"id": 0,
"name": "LeftAlignedWithTextLink",
"preset": {
- "_uid": "a5c63c5c-6a26-4587-ba32-cd75286af56a",
+ "_uid": "22fa1cfd-5d60-4704-ad77-ad0637f6c0cd",
"type": "logos",
"component": "logos",
"tagline": "Your Success, Our Commitment",
"logo": [
{
- "src": "//a.storyblok.com/f/303819/132x35/285d763921/logoipsum-212.svg",
+ "src": "//a.storyblok.com/f/284989/132x35/06239bfae3/logoipsum-212.svg",
"alt": "Logo 1",
- "_uid": "d4c67907-bc52-4bf9-8321-e2eb70bf1caf",
+ "_uid": "c74f4732-941c-4acd-9055-e8828035cd94",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/124x32/17b256999a/logoipsum-217.svg",
+ "src": "//a.storyblok.com/f/284989/124x32/708bd27603/logoipsum-217.svg",
"alt": "Logo 2",
- "_uid": "319dd8cd-5abe-4c8d-a428-e9f282ec9f96",
+ "_uid": "e66fe8a3-c34a-4907-bfdc-7fdf6b231e3d",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/154x44/dc317b6600/logoipsum-239.svg",
+ "src": "//a.storyblok.com/f/284989/154x44/e781e98776/logoipsum-239.svg",
"alt": "Logo 3",
- "_uid": "88b4a7a2-34cd-45ad-9879-2b34522f38d4",
+ "_uid": "8fe9113c-cd28-4f9b-a53a-f2157e533119",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
+ "src": "//a.storyblok.com/f/284989/155x40/15c4842e8f/logoipsum-244.svg",
"alt": "Logo 4",
- "_uid": "0adf92fe-316b-48a6-bb61-c85f4b057291",
+ "_uid": "cbe5d4ad-6b98-492c-8c01-5dd317debaba",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
+ "src": "//a.storyblok.com/f/284989/171x32/d0a399104d/logoipsum-250.svg",
"alt": "Logo 5",
- "_uid": "fcfcb05a-d19c-466d-991a-33d4b4e37096",
+ "_uid": "8058d403-3a03-4103-9327-7270ecff6575",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
+ "src": "//a.storyblok.com/f/284989/218x40/d49347c63a/logoipsum-286.svg",
"alt": "Logo 6",
- "_uid": "53c36079-5eca-452a-a0d9-8799f8fafa87",
+ "_uid": "3a50b87a-cc78-40f1-9bfd-d8c6b407ffec",
"type": "logo",
"component": "logo"
}
@@ -1916,105 +1773,105 @@
"cta_label": "See all our partners",
"cta_style": "text"
},
- "component_id": 20,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:44.669Z",
- "updated_at": "2024-09-05T10:52:44.669Z",
+ "component_id": 36,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:41.977Z",
+ "updated_at": "2024-04-16T12:20:41.977Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x517/15d1b71f40/components-logos-left-aligned-with-text-link.png"
+ "image": "//a.storyblok.com/f/284989/1000x517/5cc0cea9ed/components-logos-left-aligned-with-text-link.png"
},
{
"id": 0,
"name": "LogoWall",
"preset": {
- "_uid": "54f1d364-fb11-418e-876f-3ca2f6420aaf",
+ "_uid": "24bff659-ed0c-46e8-a80b-6c146343816f",
"type": "logos",
"component": "logos",
"tagline": "Your Success, Our Commitment",
"logo": [
{
- "src": "//a.storyblok.com/f/303819/132x35/285d763921/logoipsum-212.svg",
+ "src": "//a.storyblok.com/f/284989/132x35/06239bfae3/logoipsum-212.svg",
"alt": "Logo 1",
- "_uid": "fdf4073c-4e6b-439d-92ca-cbb6102b2d2f",
+ "_uid": "163a23ce-f173-420e-9e6d-6f015d341cd6",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/124x32/17b256999a/logoipsum-217.svg",
+ "src": "//a.storyblok.com/f/284989/124x32/708bd27603/logoipsum-217.svg",
"alt": "Logo 2",
- "_uid": "fe8436e2-f2a1-4ef0-89e3-8672d56e8bbb",
+ "_uid": "d71eb5c8-f6e8-43f4-9551-ad01bb71795f",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/154x44/dc317b6600/logoipsum-239.svg",
+ "src": "//a.storyblok.com/f/284989/154x44/e781e98776/logoipsum-239.svg",
"alt": "Logo 3",
- "_uid": "ac6ddacb-d4da-432f-a0bd-3325db77fa8e",
+ "_uid": "8e1e0373-9dab-4394-82cc-9bf49539c609",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
+ "src": "//a.storyblok.com/f/284989/155x40/15c4842e8f/logoipsum-244.svg",
"alt": "Logo 4",
- "_uid": "7e2b5ada-2175-4b8b-80f9-075f5f5e6a46",
+ "_uid": "c3636654-1bc1-4259-ba1a-771b6fbea93f",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
+ "src": "//a.storyblok.com/f/284989/171x32/d0a399104d/logoipsum-250.svg",
"alt": "Logo 5",
- "_uid": "b0f5bebc-0d7a-49aa-acad-04ab029c20d9",
+ "_uid": "74197504-639d-4dd8-9497-74918f3d3bd0",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
+ "src": "//a.storyblok.com/f/284989/218x40/d49347c63a/logoipsum-286.svg",
"alt": "Logo 6",
- "_uid": "941504bc-5ede-4794-8820-c47cc9c6b7a7",
+ "_uid": "0f2ae93c-cb53-4b1e-9a07-a04a5c68aa99",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
+ "src": "//a.storyblok.com/f/284989/155x40/15c4842e8f/logoipsum-244.svg",
"alt": "Logo 4",
- "_uid": "daea8f1b-b912-42aa-9b43-cd6a2ecd556b",
+ "_uid": "ae96309a-d5f1-40ff-b7d1-6a4b454f9309",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
+ "src": "//a.storyblok.com/f/284989/171x32/d0a399104d/logoipsum-250.svg",
"alt": "Logo 5",
- "_uid": "b55c7305-e7dc-4669-9ecf-ed8dbf91639f",
+ "_uid": "8fd1ac4f-7207-41ba-8b92-847b9db5eef2",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
+ "src": "//a.storyblok.com/f/284989/218x40/d49347c63a/logoipsum-286.svg",
"alt": "Logo 6",
- "_uid": "e4a593ae-fcd8-43b2-8a6c-cc3330c29866",
+ "_uid": "add411db-5660-46ed-985c-886975a7020f",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
+ "src": "//a.storyblok.com/f/284989/155x40/15c4842e8f/logoipsum-244.svg",
"alt": "Logo 4",
- "_uid": "1a655c44-8334-415e-b563-a9fd2f372ccf",
+ "_uid": "00d7e5b8-7e3c-4ad8-8caf-60638db268c6",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
+ "src": "//a.storyblok.com/f/284989/171x32/d0a399104d/logoipsum-250.svg",
"alt": "Logo 5",
- "_uid": "95a1dc1a-a5e6-4a23-a412-fc9b9235bc2a",
+ "_uid": "04a88a2a-e1ec-45dc-9282-1bee9a215b7b",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
+ "src": "//a.storyblok.com/f/284989/218x40/d49347c63a/logoipsum-286.svg",
"alt": "Logo 6",
- "_uid": "46257283-24b2-4dd4-8bfc-d2b9c3e4f075",
+ "_uid": "b498792e-638e-4bd4-95e5-b6c09eb86d02",
"type": "logo",
"component": "logo"
}
@@ -2027,63 +1884,63 @@
"cta_label": "See all our partners",
"cta_style": "text"
},
- "component_id": 20,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:45.790Z",
- "updated_at": "2024-09-05T10:52:45.790Z",
+ "component_id": 36,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:42.737Z",
+ "updated_at": "2024-04-16T12:20:42.737Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1080x860/beb940194c/components-logos-logo-wall.png"
+ "image": "//a.storyblok.com/f/284989/1080x860/85245ce079/components-logos-logo-wall.png"
},
{
"id": 0,
"name": "LogoRow",
"preset": {
- "_uid": "3eb6c866-5718-4e55-8f39-2f30f6f42085",
+ "_uid": "301cb102-5dd2-487c-9ba2-c0030e5b1946",
"type": "logos",
"component": "logos",
"tagline": "Your Success, Our Commitment",
"logo": [
{
- "src": "//a.storyblok.com/f/303819/132x35/285d763921/logoipsum-212.svg",
+ "src": "//a.storyblok.com/f/284989/132x35/06239bfae3/logoipsum-212.svg",
"alt": "Logo 1",
- "_uid": "c360e870-1973-4e82-abef-2abbb2f3a2f3",
+ "_uid": "7ae609b6-bfa7-41fd-bfaa-6378edf8ad17",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/124x32/17b256999a/logoipsum-217.svg",
+ "src": "//a.storyblok.com/f/284989/124x32/708bd27603/logoipsum-217.svg",
"alt": "Logo 2",
- "_uid": "bb196a46-1d2f-4737-b39e-1b60abf304e6",
+ "_uid": "85287dd3-9a66-4afe-95fa-4b7b1a2b1be6",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/154x44/dc317b6600/logoipsum-239.svg",
+ "src": "//a.storyblok.com/f/284989/154x44/e781e98776/logoipsum-239.svg",
"alt": "Logo 3",
- "_uid": "26bedfa0-ea5f-4c09-ba9f-a149eed02eeb",
+ "_uid": "0371d8ce-a397-4058-bb7a-a9218e221090",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
+ "src": "//a.storyblok.com/f/284989/155x40/15c4842e8f/logoipsum-244.svg",
"alt": "Logo 4",
- "_uid": "c12abf2f-369a-4859-947e-65b96e6e6088",
+ "_uid": "a465ff40-f386-498e-842a-d91861e33c28",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
+ "src": "//a.storyblok.com/f/284989/171x32/d0a399104d/logoipsum-250.svg",
"alt": "Logo 5",
- "_uid": "60da492b-d49c-40b9-8912-1c55a0e438f1",
+ "_uid": "c74db2d5-e2d3-4096-9985-76e2c3e2c935",
"type": "logo",
"component": "logo"
},
{
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
+ "src": "//a.storyblok.com/f/284989/218x40/d49347c63a/logoipsum-286.svg",
"alt": "Logo 6",
- "_uid": "cc376791-0808-42ad-be49-35c767db283a",
+ "_uid": "9c0ae1f6-6376-4662-b634-1bd0d2b14378",
"type": "logo",
"component": "logo"
}
@@ -2096,33 +1953,33 @@
"cta_label": "See all our partners",
"cta_style": "text"
},
- "component_id": 20,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:46.975Z",
- "updated_at": "2024-09-05T10:52:46.975Z",
+ "component_id": 36,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:43.494Z",
+ "updated_at": "2024-04-16T12:20:43.494Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x450/54812f303d/components-logos-logo-row.png"
+ "image": "//a.storyblok.com/f/284989/1000x450/cf51e0e68a/components-logos-logo-row.png"
},
{
"id": 0,
"name": "ColorfulTiles",
"preset": {
- "_uid": "eba65423-9a0f-4017-af51-ee5da8ea776c",
+ "_uid": "7b1b42fd-acc6-46f5-9abb-b6cd70f1124c",
"type": "mosaic",
"component": "mosaic",
"layout": "alternate",
"largeHeadlines": false,
- "tile": [
+ "tiles": [
{
"backgroundColor": "#81005a",
"headline": "Collaborative Environment",
"text": "Our team thrives in a collaborative environment, fostering creativity and innovation.",
- "_uid": "c8b502bb-7616-44c8-911d-613e8a847733",
- "type": "tile",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/996x998/d67ddcd6cb/mosaic-1.png",
+ "_uid": "8fdaf03a-f414-4431-8fb3-63cfa0b78830",
+ "type": "tiles",
+ "component": "tiles",
+ "image_src": "//a.storyblok.com/f/284989/996x998/2f06d73dc7/mosaic-1.png",
"button_toggle": true,
"button_label": "Book a meeting"
},
@@ -2130,10 +1987,10 @@
"backgroundColor": "#003380",
"headline": "Modern Infrastructure",
"text": "Our state-of-the-art office facilities inspire productivity and efficiency.",
- "_uid": "f27845b2-132f-4bca-baf2-f1c4d56b0104",
- "type": "tile",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/996x998/c2b07a3cf3/mosaic-2.png",
+ "_uid": "2ec138b6-b907-46c4-8f79-04b159fdcbd1",
+ "type": "tiles",
+ "component": "tiles",
+ "image_src": "//a.storyblok.com/f/284989/996x998/0a44091a3a/mosaic-2.png",
"button_toggle": true,
"button_label": "Book a meeting"
},
@@ -2141,42 +1998,42 @@
"backgroundColor": "#004241",
"headline": "Teamwork",
"text": "We believe in the power of teamwork. Together, we can achieve great things.",
- "_uid": "8025e3f4-7dcd-46bb-b796-37b8e6791954",
- "type": "tile",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/996x998/5f9ead8fb0/mosaic-3.png",
+ "_uid": "0626ebbc-50e0-4141-8653-6a3e111c4fe9",
+ "type": "tiles",
+ "component": "tiles",
+ "image_src": "//a.storyblok.com/f/284989/996x998/2ff8fe9a61/mosaic-3.png",
"button_toggle": true,
"button_label": "Book a meeting"
}
]
},
- "component_id": 36,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:47.539Z",
- "updated_at": "2024-09-05T10:52:47.539Z",
+ "component_id": 37,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:44.204Z",
+ "updated_at": "2024-04-16T12:20:44.204Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1010x1520/92bfb7116d/components-mosaic-colorful-tiles.png"
+ "image": "//a.storyblok.com/f/284989/1010x1520/84c80978a6/components-mosaic-colorful-tiles.png"
},
{
"id": 0,
"name": "ColorfulTextWithIllustrations",
"preset": {
- "_uid": "eb0c31e0-5b36-4a0d-a139-67f148fe40a6",
+ "_uid": "ba08c18c-56c7-4191-a381-39f5c1280e5e",
"type": "mosaic",
"component": "mosaic",
"layout": "textLeft",
"largeHeadlines": false,
- "tile": [
+ "tiles": [
{
"textColor": "#FCFF7D",
"headline": "Effective Communication",
"sub": "We believe in clear and effective communication. Our team members are always ready to share ideas and solutions.",
- "_uid": "8fc2242b-3e6c-427f-b53f-0e9cbdcada17",
- "type": "tile",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/679x679/1ef30ce6cd/mosaic-2_1.svg",
+ "_uid": "fa4236ba-e4a8-4105-bc45-5d4a8d9cc9c5",
+ "type": "tiles",
+ "component": "tiles",
+ "image_src": "//a.storyblok.com/f/284989/679x679/65fda60c84/mosaic-2_1.svg",
"button_toggle": false,
"button_label": "Book a meeting"
},
@@ -2184,10 +2041,10 @@
"textColor": "#7DD0FF",
"headline": "Data-Driven Decisions",
"sub": "We make decisions based on data. Our strategies are always backed by solid facts and figures.",
- "_uid": "6e427a5d-bc64-4bd0-a4e6-561fa4e27092",
- "type": "tile",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/679x679/a55500a7a7/mosaic-2_2.svg",
+ "_uid": "18142480-fb85-4a27-b83d-2046061f9621",
+ "type": "tiles",
+ "component": "tiles",
+ "image_src": "//a.storyblok.com/f/284989/679x679/f34562d753/mosaic-2_2.svg",
"button_toggle": false,
"button_label": "Book a meeting"
},
@@ -2195,29 +2052,29 @@
"textColor": "#FF7DC3",
"headline": "Innovative Design",
"sub": "We are committed to creating innovative designs. Our team is always exploring new ways to improve user experience.",
- "_uid": "92f32ee3-0b69-4458-a823-07759ec43546",
- "type": "tile",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/679x679/bc34d75228/mosaic-2_3.svg",
+ "_uid": "4a7f8b9f-0a32-46f8-804b-132e5f30c01f",
+ "type": "tiles",
+ "component": "tiles",
+ "image_src": "//a.storyblok.com/f/284989/679x679/7d1e322437/mosaic-2_3.svg",
"button_toggle": false,
"button_label": "Book a meeting"
}
]
},
- "component_id": 36,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:50.096Z",
- "updated_at": "2024-09-05T10:52:50.096Z",
+ "component_id": 37,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:46.447Z",
+ "updated_at": "2024-04-16T12:20:46.447Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1010x1520/e0c38888ac/components-mosaic-colorful-text-with-illustrations.png"
+ "image": "//a.storyblok.com/f/284989/1010x1520/98ea2e8aa9/components-mosaic-colorful-text-with-illustrations.png"
},
{
"id": 0,
"name": "Cards",
"preset": {
- "_uid": "04ba7be5-3d2d-4841-8953-093c6b9b050e",
+ "_uid": "e1a99183-eaa2-478b-a7a6-0a8b4f4146d2",
"type": "section",
"component": "section",
"width": "default",
@@ -2239,20 +2096,20 @@
"content_mode": "tile",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:51.150Z",
- "updated_at": "2024-09-05T10:52:51.150Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:47.600Z",
+ "updated_at": "2024-04-16T12:20:47.600Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x928/41f21c45ec/layout-section-cards.png"
+ "image": "//a.storyblok.com/f/284989/1440x928/fbd66f7b6e/layout-section-cards.png"
},
{
"id": 0,
"name": "Slider",
"preset": {
- "_uid": "44738c4b-0109-4e20-b986-f7d87806910a",
+ "_uid": "443f549d-42af-4842-b07b-a4e530f7231d",
"type": "section",
"component": "section",
"width": "default",
@@ -2273,20 +2130,20 @@
"content_mode": "slider",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:52.139Z",
- "updated_at": "2024-09-05T10:52:52.139Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:48.631Z",
+ "updated_at": "2024-04-16T12:20:48.631Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x938/e83454f899/layout-section-slider.png"
+ "image": "//a.storyblok.com/f/284989/1440x938/3136d8fe4d/layout-section-slider.png"
},
{
"id": 0,
"name": "Inverted",
"preset": {
- "_uid": "ecd1f997-bc42-44d1-828f-2a144bb426b3",
+ "_uid": "baf4f04f-f172-4c22-881f-03de61980389",
"type": "section",
"component": "section",
"width": "default",
@@ -2305,23 +2162,23 @@
"content_width": "unset",
"content_align": "center",
"content_gutter": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:53.321Z",
- "updated_at": "2024-09-05T10:52:53.321Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:49.657Z",
+ "updated_at": "2024-04-16T12:20:49.657Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x928/1718619ad3/layout-section-inverted.png"
+ "image": "//a.storyblok.com/f/284989/1440x928/d4e747a5d4/layout-section-inverted.png"
},
{
"id": 0,
"name": "Spotlight",
"preset": {
- "_uid": "a8e067b6-8c1b-4a68-9543-65033fe92856",
+ "_uid": "97150eaf-61b4-4158-b599-bc303d9b18bd",
"type": "section",
"component": "section",
"width": "default",
@@ -2340,23 +2197,23 @@
"content_width": "unset",
"content_align": "center",
"content_gutter": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:54.380Z",
- "updated_at": "2024-09-05T10:52:54.380Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:50.534Z",
+ "updated_at": "2024-04-16T12:20:50.534Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x928/1378b40b2d/layout-section-spotlight.png"
+ "image": "//a.storyblok.com/f/284989/1440x928/d267e54514/layout-section-spotlight.png"
},
{
"id": 0,
"name": "Stagelights",
"preset": {
- "_uid": "9275fea2-6192-4e0b-9dc0-420e024c4f8d",
+ "_uid": "24484e2f-279f-478c-a4f8-ebf4f99f2bfe",
"type": "section",
"component": "section",
"width": "default",
@@ -2376,23 +2233,23 @@
"content_width": "unset",
"content_align": "center",
"content_gutter": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:55.526Z",
- "updated_at": "2024-09-05T10:52:55.526Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:51.532Z",
+ "updated_at": "2024-04-16T12:20:51.532Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x928/ae7d888786/layout-section-stagelights.png"
+ "image": "//a.storyblok.com/f/284989/1440x928/6f8bf07c90/layout-section-stagelights.png"
},
{
"id": 0,
"name": "AccentBackground",
"preset": {
- "_uid": "839d6bd7-254d-49b6-ab81-461442de9ff3",
+ "_uid": "13195fef-bfa9-47fb-bdab-006df9fc9fea",
"type": "section",
"component": "section",
"width": "default",
@@ -2412,23 +2269,23 @@
"content_width": "unset",
"content_align": "center",
"content_gutter": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:56.933Z",
- "updated_at": "2024-09-05T10:52:56.933Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:52.546Z",
+ "updated_at": "2024-04-16T12:20:52.546Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x928/883092baf8/layout-section-accent-background.png"
+ "image": "//a.storyblok.com/f/284989/1440x928/e9124b7ef9/layout-section-accent-background.png"
},
{
"id": 0,
"name": "BoldBackground",
"preset": {
- "_uid": "c8c1e6fc-9084-4ded-9ca6-82baab4ca996",
+ "_uid": "4b11e44a-db35-4737-9b42-4348a3b14cda",
"type": "section",
"component": "section",
"width": "default",
@@ -2448,23 +2305,23 @@
"content_width": "unset",
"content_align": "center",
"content_gutter": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:58.009Z",
- "updated_at": "2024-09-05T10:52:58.009Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:53.535Z",
+ "updated_at": "2024-04-16T12:20:53.535Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x928/c6ead652fb/layout-section-bold-background.png"
+ "image": "//a.storyblok.com/f/284989/1440x928/cda951a1af/layout-section-bold-background.png"
},
{
"id": 0,
"name": "ColorfulGradient",
"preset": {
- "_uid": "35c3f7ad-4216-4c47-a6ab-c7a687775fdd",
+ "_uid": "abbdf415-4948-4d44-ac5b-29faf8fb139c",
"type": "section",
"component": "section",
"width": "default",
@@ -2484,23 +2341,23 @@
"content_width": "unset",
"content_align": "center",
"content_gutter": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:52:59.162Z",
- "updated_at": "2024-09-05T10:52:59.162Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:54.641Z",
+ "updated_at": "2024-04-16T12:20:54.641Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x928/152b0f3f78/layout-section-colorful-gradient.png"
+ "image": "//a.storyblok.com/f/284989/1440x928/03d5b5bb92/layout-section-colorful-gradient.png"
},
{
"id": 0,
"name": "WithButtons",
"preset": {
- "_uid": "af81c28c-be3f-45a6-9edf-04721cd90ba8",
+ "_uid": "f54f8d7d-d19c-4700-a9eb-f4b031644f1f",
"type": "section",
"component": "section",
"width": "default",
@@ -2518,7 +2375,7 @@
"size": "medium",
"disabled": false,
"icon": "arrow-right",
- "_uid": "a849abf3-a83a-4b2b-a34e-ce8f21ee7e2a",
+ "_uid": "c04415ba-2633-4c8f-a1dc-585b4d3f079c",
"type": "buttons",
"component": "buttons"
},
@@ -2528,7 +2385,7 @@
"size": "medium",
"disabled": false,
"icon": "date",
- "_uid": "9ab1fdb2-c913-4275-bf04-e5dfac26656f",
+ "_uid": "ecc58446-f390-49ef-a5a7-2f263ba65b5f",
"type": "buttons",
"component": "buttons"
}
@@ -2541,23 +2398,23 @@
"content_width": "unset",
"content_align": "center",
"content_gutter": "default",
- "content_mode": "list",
+ "content_mode": "default",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:00.466Z",
- "updated_at": "2024-09-05T10:53:00.466Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:55.751Z",
+ "updated_at": "2024-04-16T12:20:55.751Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x1016/7a4244285d/layout-section-with-buttons.png"
+ "image": "//a.storyblok.com/f/284989/1440x1016/e639d3b6f8/layout-section-with-buttons.png"
},
{
"id": 0,
"name": "TileLayout",
"preset": {
- "_uid": "7dc255c1-525d-4a84-8d5b-36a97641921b",
+ "_uid": "fa59aba8-ab59-4bef-b0d3-dfdb27b5147a",
"type": "section",
"component": "section",
"width": "max",
@@ -2580,20 +2437,20 @@
"content_mode": "tile",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:01.765Z",
- "updated_at": "2024-09-05T10:53:01.765Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:56.671Z",
+ "updated_at": "2024-04-16T12:20:56.671Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x445/b1bc0e559f/layout-section-tile-layout.png"
+ "image": "//a.storyblok.com/f/284989/1440x445/704dee82a1/layout-section-tile-layout.png"
},
{
"id": 0,
"name": "FlexLayout",
"preset": {
- "_uid": "659efecc-c659-48cb-8a47-f0791a80001f",
+ "_uid": "e00f6214-2989-4926-8bea-4851e31c2add",
"type": "section",
"component": "section",
"width": "max",
@@ -2613,23 +2470,23 @@
"content_width": "unset",
"content_align": "center",
"content_gutter": "default",
- "content_mode": "list",
+ "content_mode": "default",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:02.514Z",
- "updated_at": "2024-09-05T10:53:02.514Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:57.544Z",
+ "updated_at": "2024-04-16T12:20:57.544Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x928/453e6f32fe/layout-section-flex-layout.png"
+ "image": "//a.storyblok.com/f/284989/1440x928/3eab24cdee/layout-section-flex-layout.png"
},
{
"id": 0,
"name": "ListLayout",
"preset": {
- "_uid": "72b3f5cf-6735-43a4-9ebc-f7a4de39d48d",
+ "_uid": "e1f728af-3c80-4038-86b6-f03bd1024b7a",
"type": "section",
"component": "section",
"width": "default",
@@ -2652,20 +2509,20 @@
"content_mode": "list",
"content_tileWidth": "default"
},
- "component_id": 44,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:03.813Z",
- "updated_at": "2024-09-05T10:53:03.813Z",
+ "component_id": 45,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:58.659Z",
+ "updated_at": "2024-04-16T12:20:58.659Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1440x1658/abd99fdaf3/layout-section-list-layout.png"
+ "image": "//a.storyblok.com/f/284989/1440x1658/be4c8a4ed9/layout-section-list-layout.png"
},
{
"id": 0,
"name": "WithArrows",
"preset": {
- "_uid": "fb8b08d7-590e-4e64-be1a-be0e71303c92",
+ "_uid": "81dd85f6-803e-4b60-861c-4a896f64d152",
"type": "slider",
"component": "slider",
"autoplay": false,
@@ -2676,20 +2533,20 @@
"arrows": true,
"typeProp": "carousel"
},
- "component_id": 37,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:05.356Z",
- "updated_at": "2024-09-05T10:53:05.356Z",
+ "component_id": 38,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:20:59.705Z",
+ "updated_at": "2024-04-16T12:20:59.705Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1110x400/8aa668f893/layout-slider-with-arrows.png"
+ "image": "//a.storyblok.com/f/284989/1110x400/ca131ffa2f/layout-slider-with-arrows.png"
},
{
"id": 0,
"name": "WithTeasedNeighbours",
"preset": {
- "_uid": "5018aeac-e1ed-4288-97fa-cd35ef3bf83f",
+ "_uid": "05938e6f-88e7-4182-bd9e-c31a416350bc",
"type": "slider",
"component": "slider",
"autoplay": false,
@@ -2700,20 +2557,20 @@
"arrows": true,
"typeProp": "carousel"
},
- "component_id": 37,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:06.577Z",
- "updated_at": "2024-09-05T10:53:06.577Z",
+ "component_id": 38,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:00.467Z",
+ "updated_at": "2024-04-16T12:21:00.467Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1110x400/aa59dbbcd5/layout-slider-with-teased-neighbours.png"
+ "image": "//a.storyblok.com/f/284989/1110x400/905bf82610/layout-slider-with-teased-neighbours.png"
},
{
"id": 0,
"name": "WithNav",
"preset": {
- "_uid": "7aa2bccc-6885-4fe9-9630-0a50b8686b99",
+ "_uid": "ee548d1a-17eb-47b1-860c-79f73a3ef3c9",
"type": "slider",
"component": "slider",
"autoplay": false,
@@ -2724,20 +2581,20 @@
"arrows": true,
"typeProp": "carousel"
},
- "component_id": 37,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:07.437Z",
- "updated_at": "2024-09-05T10:53:07.437Z",
+ "component_id": 38,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:01.248Z",
+ "updated_at": "2024-04-16T12:21:01.248Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1110x400/5ecc170620/layout-slider-with-nav.png"
+ "image": "//a.storyblok.com/f/284989/1110x400/eddb1133ae/layout-slider-with-nav.png"
},
{
"id": 0,
"name": "WithAutoplay",
"preset": {
- "_uid": "8aaeeafa-2989-4491-9cc0-0f55d08073f1",
+ "_uid": "694d9e41-e45a-4f3d-bc0a-02423f91187b",
"type": "slider",
"component": "slider",
"autoplay": true,
@@ -2748,20 +2605,20 @@
"arrows": true,
"typeProp": "carousel"
},
- "component_id": 37,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:08.673Z",
- "updated_at": "2024-09-05T10:53:08.673Z",
+ "component_id": 38,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:02.055Z",
+ "updated_at": "2024-04-16T12:21:02.055Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1110x400/162d960ffd/layout-slider-with-autoplay.png"
+ "image": "//a.storyblok.com/f/284989/1110x400/089dfcfe28/layout-slider-with-autoplay.png"
},
{
"id": 0,
"name": "CountUpWithIcons",
"preset": {
- "_uid": "7f070e34-cd9e-4de9-b5d2-84587b97da67",
+ "_uid": "3412555a-cd20-401b-abd5-0cea31c427a4",
"type": "stats",
"component": "stats",
"stat": [
@@ -2769,7 +2626,7 @@
"number": 1500,
"title": "Users",
"icon": "person",
- "_uid": "b89feea9-f5e4-4ac8-b6ec-7c9093c68433",
+ "_uid": "4ce70103-e552-4902-a5ac-b3f3de94adee",
"type": "stat",
"component": "stat"
},
@@ -2777,7 +2634,7 @@
"number": 350,
"title": "Subscribers",
"icon": "star",
- "_uid": "f8b1b38f-86dd-428e-b1ee-a69fad5c078e",
+ "_uid": "4f9d9348-10a1-48a6-9945-6ceefbcb248d",
"type": "stat",
"component": "stat"
},
@@ -2785,26 +2642,26 @@
"number": 125,
"title": "Locations",
"icon": "map",
- "_uid": "178f7c39-756e-4cbf-ab53-ed77e65431b0",
+ "_uid": "67479532-1d25-4d22-9431-0c7e0f29cbe6",
"type": "stat",
"component": "stat"
}
]
},
- "component_id": 21,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:09.584Z",
- "updated_at": "2024-09-05T10:53:09.584Z",
+ "component_id": 39,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:02.809Z",
+ "updated_at": "2024-04-16T12:21:02.809Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/790x480/093157157d/components-stats-count-up-with-icons.png"
+ "image": "//a.storyblok.com/f/284989/790x480/f1f920ed7d/components-stats-count-up-with-icons.png"
},
{
"id": 0,
"name": "CountUpWithDescription",
"preset": {
- "_uid": "90540b19-843c-4ddb-8dbe-56481925452a",
+ "_uid": "28d96929-6ad6-4f80-b3c6-01d8d29e1f55",
"type": "stats",
"component": "stats",
"stat": [
@@ -2812,7 +2669,7 @@
"number": 1500,
"title": "Users",
"description": "Experience the power of our platform, embraced by a vast community of users. Our user base is diverse and dynamic, including both active and inactive members. Join us and become part of this ever-growing community.",
- "_uid": "17477753-2c45-4c5c-aed9-eabbaeaa6760",
+ "_uid": "e2d6c683-8318-44d3-b331-8389181a97bc",
"type": "stat",
"component": "stat"
},
@@ -2820,78 +2677,78 @@
"number": 350,
"title": "Subscribers",
"description": "Stay ahead with our regular updates and newsletters. Our subscribers are always in the loop, receiving the latest news and features. Subscribe now and never miss an update from us.",
- "_uid": "a9fba512-c270-4939-ac05-9c356f9b5575",
+ "_uid": "6db483a8-e3d8-4ebc-932c-1add0e1dfd55",
"type": "stat",
"component": "stat"
}
]
},
- "component_id": 21,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:10.313Z",
- "updated_at": "2024-09-05T10:53:10.313Z",
+ "component_id": 39,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:03.448Z",
+ "updated_at": "2024-04-16T12:21:03.448Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/700x480/179df4ceed/components-stats-count-up-with-description.png"
+ "image": "//a.storyblok.com/f/284989/700x480/c7bc9ab7ab/components-stats-count-up-with-description.png"
},
{
"id": 0,
"name": "ProductTiles",
"preset": {
- "_uid": "292d6de5-b753-4ce6-9a24-1c625849674f",
+ "_uid": "51fb87d7-c718-4221-a946-db74373acb80",
"type": "teaser-card",
"component": "teaser-card",
"layout": "stack",
"imageRatio": "wide",
"headline": "Castaway",
"text": "Transforming Ideas into Code",
- "image": "//a.storyblok.com/f/303819/500x500/1714f3b84f/castaway.svg",
+ "image": "//a.storyblok.com/f/284989/500x500/b38d7aaa83/castaway.svg",
"target": "#",
"button_chevron": false,
"button_hidden": true,
"button_label": "Go to page"
},
- "component_id": 22,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:10.908Z",
- "updated_at": "2024-09-05T10:53:10.908Z",
+ "component_id": 40,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:03.990Z",
+ "updated_at": "2024-04-16T12:21:03.990Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/650x653/bd51864d6d/components-teaser-card-product-tiles.png"
+ "image": "//a.storyblok.com/f/284989/650x653/e4ce5d4513/components-teaser-card-product-tiles.png"
},
{
"id": 0,
"name": "PageNavigation",
"preset": {
- "_uid": "4b775f4c-4c18-46a6-a00c-b86949f41529",
+ "_uid": "b900e949-6b7a-4908-8d92-6f62f7485bfb",
"type": "teaser-card",
"component": "teaser-card",
"layout": "stack",
"imageRatio": "landscape",
"headline": "Design System Services",
"text": "Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.",
- "image": "//a.storyblok.com/f/303819/1024x1024/4375b3969a/02.jpg",
+ "image": "//a.storyblok.com/f/284989/1024x1024/e7e8d96354/02.jpg",
"target": "#",
"button_chevron": false,
"button_hidden": false,
"button_label": "Read more"
},
- "component_id": 22,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:11.825Z",
- "updated_at": "2024-09-05T10:53:11.825Z",
+ "component_id": 40,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:04.925Z",
+ "updated_at": "2024-04-16T12:21:04.925Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/650x678/756a8dd5d6/components-teaser-card-page-navigation.png"
+ "image": "//a.storyblok.com/f/284989/650x678/48a9c93ba8/components-teaser-card-page-navigation.png"
},
{
"id": 0,
"name": "ShowcasePreview",
"preset": {
- "_uid": "d5200a80-f372-427a-8f21-4afa3e919ff3",
+ "_uid": "d7145832-bea9-4a74-af62-4b0e0803f798",
"type": "teaser-card",
"component": "teaser-card",
"layout": "row",
@@ -2899,26 +2756,26 @@
"label": "Tech",
"headline": "Transformation Love Story",
"text": "See how we saved TechFusions a year's worth of development time",
- "image": "//a.storyblok.com/f/303819/4170x2000/2930ae5d82/comp_tfe01.jpg",
+ "image": "//a.storyblok.com/f/284989/4170x2000/ce202dec0a/comp_tfe01.jpg",
"target": "#",
"button_chevron": false,
"button_hidden": false,
"button_label": "View showcase"
},
- "component_id": 22,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:13.210Z",
- "updated_at": "2024-09-05T10:53:13.210Z",
+ "component_id": 40,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:05.904Z",
+ "updated_at": "2024-04-16T12:21:05.904Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/650x750/0057d9edba/components-teaser-card-showcase-preview.png"
+ "image": "//a.storyblok.com/f/284989/650x750/bb77c7f1a4/components-teaser-card-showcase-preview.png"
},
{
"id": 0,
"name": "Simple",
"preset": {
- "_uid": "f9579bc7-94c3-46ab-8949-475c9f7a10f1",
+ "_uid": "bf71f12d-9edc-45a8-a3ee-304d8a01e10f",
"type": "testimonials",
"component": "testimonials",
"layout": "slider",
@@ -2926,28 +2783,28 @@
{
"quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
"name": "Emily Johnson",
- "_uid": "066caf28-5f00-44df-b0b4-67c9a45fc5a1",
+ "_uid": "6ff42252-a86b-4d54-97b9-263ff58ad49c",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/cd9c7c180f/author-emily.png",
"image_alt": "Alt Text Customer 1"
}
]
},
- "component_id": 23,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:14.218Z",
- "updated_at": "2024-09-05T10:53:14.218Z",
+ "component_id": 41,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:06.725Z",
+ "updated_at": "2024-04-16T12:21:06.725Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x409/9e3083f521/components-testimonials-simple.png"
+ "image": "//a.storyblok.com/f/284989/1000x409/f7ba3b5a0e/components-testimonials-simple.png"
},
{
"id": 0,
"name": "WithTitle",
"preset": {
- "_uid": "89869e7a-eaa0-43fa-b960-fab3cf7b8f1f",
+ "_uid": "3f135bb5-0e3b-47a5-9d0f-2f20c0709dad",
"type": "testimonials",
"component": "testimonials",
"layout": "slider",
@@ -2956,28 +2813,28 @@
"quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
"name": "Emily Johnson",
"title": "Chief Marketing Officer at TechFusion Enterprises",
- "_uid": "14991da1-3d4d-4223-bc82-f9a73857d70d",
+ "_uid": "6339057c-d35e-4014-8f20-b3b8879bbf4c",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/cd9c7c180f/author-emily.png",
"image_alt": "Alt Text Customer 1"
}
]
},
- "component_id": 23,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:15.179Z",
- "updated_at": "2024-09-05T10:53:15.179Z",
+ "component_id": 41,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:07.623Z",
+ "updated_at": "2024-04-16T12:21:07.623Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x409/b89186ab9a/components-testimonials-with-title.png"
+ "image": "//a.storyblok.com/f/284989/1000x409/c45c8a0803/components-testimonials-with-title.png"
},
{
"id": 0,
"name": "ListLayout",
"preset": {
- "_uid": "1bdcc9f9-f045-43ce-8344-acf0ae120440",
+ "_uid": "ebd7c0fa-1144-4872-a379-dba2125a53f7",
"type": "testimonials",
"component": "testimonials",
"layout": "list",
@@ -2987,10 +2844,10 @@
"name": "Emily Johnson",
"title": "Chief Marketing Officer at TechFusion Enterprises",
"rating": 5,
- "_uid": "63cd50aa-a3f3-4630-8180-d55b0c714500",
+ "_uid": "b7ff4371-dc43-425a-94d9-0807ae33e338",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/cd9c7c180f/author-emily.png",
"image_alt": "Alt Text Customer 1"
},
{
@@ -2998,10 +2855,10 @@
"name": "John Smith",
"title": "Director of Digital Strategy at EcoTech Solutions",
"rating": 4,
- "_uid": "16bee64d-8c8f-48ed-ba84-997351a24276",
+ "_uid": "0bd84ca7-39be-4671-b2fe-cd605e4a4880",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/777040b161/author-john.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/ad4bd7bf2a/author-john.png",
"image_alt": "Alt Text Customer 2"
},
{
@@ -3009,28 +2866,28 @@
"name": "Alex Chen",
"title": "CEO of LaunchPad Innovations",
"rating": 5,
- "_uid": "09c591b5-6b94-455e-a1e0-43ec98304777",
+ "_uid": "045772f7-9614-4ff1-86b4-8e6c3c062834",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/cdacfff2f6/author-alex.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/401f5a99fd/author-alex.png",
"image_alt": "Alt Text Customer 3"
}
]
},
- "component_id": 23,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:16.117Z",
- "updated_at": "2024-09-05T10:53:16.117Z",
+ "component_id": 41,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:08.493Z",
+ "updated_at": "2024-04-16T12:21:08.493Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x1080/4c9921d814/components-testimonials-list-layout.png"
+ "image": "//a.storyblok.com/f/284989/1000x1080/dbb5d615a3/components-testimonials-list-layout.png"
},
{
"id": 0,
"name": "SliderLayout",
"preset": {
- "_uid": "11688ed0-c5fe-474c-9409-3befe39aa889",
+ "_uid": "fd355d7f-5e71-4b30-8fdb-c0d4b40e7877",
"type": "testimonials",
"component": "testimonials",
"layout": "slider",
@@ -3039,48 +2896,48 @@
"quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
"name": "Emily Johnson",
"title": "Chief Marketing Officer at TechFusion Enterprises",
- "_uid": "f0212330-82ee-4d21-af1c-52be9c5c1885",
+ "_uid": "6d623e1f-561c-4949-8e7c-8cac564df8b4",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/cd9c7c180f/author-emily.png",
"image_alt": "Alt Text Customer 1"
},
{
"quote": "Systemics's design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand's credibility. It's a partnership that continues to pay dividends.",
"name": "John Smith",
"title": "Director of Digital Strategy at EcoTech Solutions",
- "_uid": "c8d62c2b-f960-4e77-8d4b-c6a801077805",
+ "_uid": "67d95060-8528-469a-aa37-252775127728",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/777040b161/author-john.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/ad4bd7bf2a/author-john.png",
"image_alt": "Alt Text Customer 2"
},
{
"quote": "As a startup, we needed to hit the ground running. Systemics's approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.",
"name": "Alex Chen",
"title": "CEO of LaunchPad Innovations",
- "_uid": "dc3bb7eb-b127-4272-9af8-59bc0376a62a",
+ "_uid": "309e2e65-156c-45f1-a196-e34010d805a9",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/cdacfff2f6/author-alex.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/401f5a99fd/author-alex.png",
"image_alt": "Alt Text Customer 3"
}
]
},
- "component_id": 23,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:17.255Z",
- "updated_at": "2024-09-05T10:53:17.255Z",
+ "component_id": 41,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:09.552Z",
+ "updated_at": "2024-04-16T12:21:09.552Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x1080/e2d6740906/components-testimonials-slider-layout.png"
+ "image": "//a.storyblok.com/f/284989/1000x1080/4aae10e072/components-testimonials-slider-layout.png"
},
{
"id": 0,
"name": "WithRating",
"preset": {
- "_uid": "a0f31f57-0965-4307-93f0-e5dac355ec76",
+ "_uid": "6f38692b-d5bd-4c2d-b987-4542479958ec",
"type": "testimonials",
"component": "testimonials",
"layout": "slider",
@@ -3090,10 +2947,10 @@
"name": "Emily Johnson",
"title": "Chief Marketing Officer at TechFusion Enterprises",
"rating": 5,
- "_uid": "9c965e55-8d5a-403b-8c8f-009ed11c4861",
+ "_uid": "aa59ab9b-1e8c-4f42-ae80-fc47f6f14e23",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/cd9c7c180f/author-emily.png",
"image_alt": "Alt Text Customer 1"
},
{
@@ -3101,10 +2958,10 @@
"name": "John Smith",
"title": "Director of Digital Strategy at EcoTech Solutions",
"rating": 4,
- "_uid": "28252c92-92c0-40fe-a791-dfe764210e6c",
+ "_uid": "b1a15f69-bbcf-4167-816c-be3e1845d471",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/777040b161/author-john.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/ad4bd7bf2a/author-john.png",
"image_alt": "Alt Text Customer 2"
},
{
@@ -3112,28 +2969,28 @@
"name": "Alex Chen",
"title": "CEO of LaunchPad Innovations",
"rating": 5,
- "_uid": "1add2753-5a10-4969-a7a2-a58339d2e5c0",
+ "_uid": "f6782359-c288-4e39-b05b-e54c2edafe1a",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/cdacfff2f6/author-alex.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/401f5a99fd/author-alex.png",
"image_alt": "Alt Text Customer 3"
}
]
},
- "component_id": 23,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:18.568Z",
- "updated_at": "2024-09-05T10:53:18.568Z",
+ "component_id": 41,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:10.447Z",
+ "updated_at": "2024-04-16T12:21:10.447Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x1080/2475869f35/components-testimonials-with-rating.png"
+ "image": "//a.storyblok.com/f/284989/1000x1080/a2ede9740e/components-testimonials-with-rating.png"
},
{
"id": 0,
"name": "AlternatingLayout",
"preset": {
- "_uid": "6c019a25-8285-4678-922b-17f12a2e0eb5",
+ "_uid": "755b3ac1-ea9b-46c7-83fc-951b05898e70",
"type": "testimonials",
"component": "testimonials",
"layout": "alternating",
@@ -3143,10 +3000,10 @@
"name": "Emily Johnson",
"title": "Chief Marketing Officer at TechFusion Enterprises",
"rating": 5,
- "_uid": "034b59af-14c5-4113-8f7f-3e481022c507",
+ "_uid": "4c61e7a2-80c0-477c-8308-5df4836eeb06",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/cd9c7c180f/author-emily.png",
"image_alt": "Alt Text Customer 1"
},
{
@@ -3154,10 +3011,10 @@
"name": "John Smith",
"title": "Director of Digital Strategy at EcoTech Solutions",
"rating": 4,
- "_uid": "62a27f3e-a8f4-43b8-8abc-e4d697920b7c",
+ "_uid": "fdd8a43f-a7e5-43d0-aa5a-cfa5787efe5e",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/777040b161/author-john.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/ad4bd7bf2a/author-john.png",
"image_alt": "Alt Text Customer 2"
},
{
@@ -3165,28 +3022,28 @@
"name": "Alex Chen",
"title": "CEO of LaunchPad Innovations",
"rating": 5,
- "_uid": "c400168a-d1a4-4f4f-85d5-519f0bcec326",
+ "_uid": "46df96c2-2430-46a7-9e92-aea39620af5f",
"type": "testimonial",
"component": "testimonial",
- "image_src": "//a.storyblok.com/f/303819/250x250/cdacfff2f6/author-alex.png",
+ "image_src": "//a.storyblok.com/f/284989/250x250/401f5a99fd/author-alex.png",
"image_alt": "Alt Text Customer 3"
}
]
},
- "component_id": 23,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:19.685Z",
- "updated_at": "2024-09-05T10:53:19.685Z",
+ "component_id": 41,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:11.400Z",
+ "updated_at": "2024-04-16T12:21:11.400Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x1080/7d0b12bf32/components-testimonials-alternating-layout.png"
+ "image": "//a.storyblok.com/f/284989/1000x1080/fc72346b9c/components-testimonials-alternating-layout.png"
},
{
"id": 0,
"name": "SingleColumn",
"preset": {
- "_uid": "43364742-9eaa-4f08-b09d-b4f1ac843127",
+ "_uid": "57e762d7-a4d9-441e-93c2-2164ff9bef80",
"type": "text",
"component": "text",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
@@ -3194,20 +3051,20 @@
"align": "left",
"highlightText": false
},
- "component_id": 24,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:21.733Z",
- "updated_at": "2024-09-05T10:53:21.733Z",
+ "component_id": 42,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:12.323Z",
+ "updated_at": "2024-04-16T12:21:12.323Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x407/15f7209661/components-text-single-column.png"
+ "image": "//a.storyblok.com/f/284989/1000x407/f68474f548/components-text-single-column.png"
},
{
"id": 0,
"name": "Centered",
"preset": {
- "_uid": "bd4ee2ef-fcb3-43c1-85e1-c3648f099e8d",
+ "_uid": "082a03b9-d4cd-495c-88e3-8d1d9cf58e18",
"type": "text",
"component": "text",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
@@ -3215,20 +3072,20 @@
"align": "center",
"highlightText": false
},
- "component_id": 24,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:22.849Z",
- "updated_at": "2024-09-05T10:53:22.849Z",
+ "component_id": 42,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:12.975Z",
+ "updated_at": "2024-04-16T12:21:12.975Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x407/525c81f2dc/components-text-centered.png"
+ "image": "//a.storyblok.com/f/284989/1000x407/65a649f597/components-text-centered.png"
},
{
"id": 0,
"name": "MultiColumn",
"preset": {
- "_uid": "7551796e-10fc-4b0c-9bc6-f69dc319369a",
+ "_uid": "bb50b478-a702-4246-94e0-669e8d8f9ea0",
"type": "text",
"component": "text",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n_Experience the power of streamlined development and see the difference it can make in your projects._",
@@ -3236,20 +3093,20 @@
"align": "left",
"highlightText": false
},
- "component_id": 24,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:23.581Z",
- "updated_at": "2024-09-05T10:53:23.581Z",
+ "component_id": 42,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:13.624Z",
+ "updated_at": "2024-04-16T12:21:13.624Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x330/7c9274a317/components-text-multi-column.png"
+ "image": "//a.storyblok.com/f/284989/1000x330/cf02f6c34c/components-text-multi-column.png"
},
{
"id": 0,
"name": "Highlight",
"preset": {
- "_uid": "116f78fe-dff6-4648-9dcf-c58d627de118",
+ "_uid": "dae82368-6042-4411-89f7-1c2ea02f05da",
"type": "text",
"component": "text",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
@@ -3257,20 +3114,20 @@
"align": "left",
"highlightText": true
},
- "component_id": 24,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:24.415Z",
- "updated_at": "2024-09-05T10:53:24.415Z",
+ "component_id": 42,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:14.317Z",
+ "updated_at": "2024-04-16T12:21:14.317Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1000x482/f14aaca036/components-text-highlight.png"
+ "image": "//a.storyblok.com/f/284989/1000x482/c1181609c3/components-text-highlight.png"
},
{
"id": 0,
"name": "AtmosphericVideoWithOverlay",
"preset": {
- "_uid": "87824181-fbd2-4149-abb4-e4eec936daa2",
+ "_uid": "ce871ab8-d253-4e41-80e0-d41a2576dad7",
"type": "video-curtain",
"component": "video-curtain",
"highlightText": false,
@@ -3278,7 +3135,7 @@
"buttons": [
{
"label": "Explore More",
- "_uid": "d83141ff-278b-4b8b-8b02-9ab14e3fbdde",
+ "_uid": "84a56d1c-c84a-4cfc-851c-992921a17b20",
"type": "buttons",
"component": "buttons"
}
@@ -3288,24 +3145,24 @@
"headline": "Step into Our Innovative Workspace",
"sub": "Where Creativity Meets Technology",
"text": "Experience the fusion of creativity and technology in our state-of-the-art office.",
- "video_srcMobile": "//a.storyblok.com/f/303819/1280x720/96dea5c0be/video-720.mp4",
- "video_srcTablet": "//a.storyblok.com/f/303819/1280x720/96dea5c0be/video-720.mp4",
- "video_srcDesktop": "//a.storyblok.com/f/303819/1280x720/96dea5c0be/video-720.mp4"
+ "video_srcMobile": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
+ "video_srcTablet": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
+ "video_srcDesktop": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png"
},
- "component_id": 42,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:25.444Z",
- "updated_at": "2024-09-05T10:53:25.444Z",
+ "component_id": 43,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:14.954Z",
+ "updated_at": "2024-04-16T12:21:14.954Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1559x720/6c966bf236/components-video-curtain-atmospheric-video-with-overlay.png"
+ "image": "//a.storyblok.com/f/284989/1559x720/ba5cd3f321/components-video-curtain-atmospheric-video-with-overlay.png"
},
{
"id": 0,
"name": "ColorNeutralText",
"preset": {
- "_uid": "ba054261-19e3-4291-ac03-eb03d45acf38",
+ "_uid": "8c751fa8-b2c0-4221-bdd7-cdfd1c61ce9c",
"type": "video-curtain",
"component": "video-curtain",
"highlightText": true,
@@ -3313,7 +3170,7 @@
"buttons": [
{
"label": "Join Us",
- "_uid": "844e6232-3cf6-4605-ac22-2f780140ea58",
+ "_uid": "7a3b698f-ec8e-4c20-a83b-ba7346653bac",
"type": "buttons",
"component": "buttons"
}
@@ -3323,24 +3180,24 @@
"headline": "Join Our Creative Journey",
"sub": "Where Every Idea Matters",
"text": "Be part of a creative journey where every idea is valued and innovation is celebrated.",
- "video_srcMobile": "//a.storyblok.com/f/303819/1920x1080/5186e0bebd/video-agency.mp4",
- "video_srcTablet": "//a.storyblok.com/f/303819/1920x1080/5186e0bebd/video-agency.mp4",
- "video_srcDesktop": "//a.storyblok.com/f/303819/1920x1080/5186e0bebd/video-agency.mp4"
+ "video_srcMobile": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
+ "video_srcTablet": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
+ "video_srcDesktop": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png"
},
- "component_id": 42,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:26.341Z",
- "updated_at": "2024-09-05T10:53:26.341Z",
+ "component_id": 43,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:15.874Z",
+ "updated_at": "2024-04-16T12:21:15.874Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1559x720/b78a8c3700/components-video-curtain-color-neutral-text.png"
+ "image": "//a.storyblok.com/f/284989/1559x720/c17b7655bd/components-video-curtain-color-neutral-text.png"
},
{
"id": 0,
"name": "ColorNeutralVideo",
"preset": {
- "_uid": "e497896e-f41a-4b02-9d78-2373c38d1208",
+ "_uid": "e59247c8-791d-46c7-8612-d67aae2c4e43",
"type": "video-curtain",
"component": "video-curtain",
"highlightText": true,
@@ -3348,7 +3205,7 @@
"buttons": [
{
"label": "Discover More",
- "_uid": "68ded6c3-d0d0-4fef-893f-4d2d9118308d",
+ "_uid": "b1a901c8-141d-4207-8797-adecd5c63aa2",
"type": "buttons",
"component": "buttons"
}
@@ -3358,18 +3215,18 @@
"headline": "Welcome to Our Collaborative Space",
"sub": "Where Ideas Come to Life",
"text": "Experience the synergy of creativity and teamwork in our modern office environment.",
- "video_srcMobile": "//a.storyblok.com/f/303819/1920x1080/95a5cdea18/handshake-bw.mp4",
- "video_srcTablet": "//a.storyblok.com/f/303819/1920x1080/95a5cdea18/handshake-bw.mp4",
- "video_srcDesktop": "//a.storyblok.com/f/303819/1920x1080/95a5cdea18/handshake-bw.mp4"
+ "video_srcMobile": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
+ "video_srcTablet": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png",
+ "video_srcDesktop": "//a.storyblok.com/f/284989/1920x800/fe23a5a6f7/colleagues-work-office-using-computers-looking-aside.png"
},
- "component_id": 42,
- "space_id": "303819",
- "created_at": "2024-09-05T10:53:27.078Z",
- "updated_at": "2024-09-05T10:53:27.078Z",
+ "component_id": 43,
+ "space_id": "284989",
+ "created_at": "2024-04-16T12:21:16.788Z",
+ "updated_at": "2024-04-16T12:21:16.788Z",
"color": "",
"icon": "",
"description": "",
- "image": "//a.storyblok.com/f/303819/1559x720/834a78153a/components-video-curtain-color-neutral-video.png"
+ "image": "//a.storyblok.com/f/284989/1559x720/0eddbb9afa/components-video-curtain-color-neutral-video.png"
}
]
}
\ No newline at end of file
diff --git a/components/button/button.scss b/components/button/button.scss
index 845f8c8..baad5d2 100644
--- a/components/button/button.scss
+++ b/components/button/button.scss
@@ -3,9 +3,8 @@
--dsa-button_primary--color_hover: var(--ks-text-color-default-inverted);
--dsa-button_primary--color_active: var(--ks-text-color-default-inverted);
- display: inline-block;
-
span {
- vertical-align: bottom;
+ transform: translateY(3%);
+ line-height: var(--c-button--icon-size);
}
}
diff --git a/components/global.scss b/components/global.scss
new file mode 100644
index 0000000..e69de29
diff --git a/components/header/header.scss b/components/header/header.scss
index e69de29..31ad9bd 100644
--- a/components/header/header.scss
+++ b/components/header/header.scss
@@ -0,0 +1,23 @@
+:root {
+ .dsa-header {
+ --dsa-logo--height: 2.35rem;
+ --dsa-header--spacing-vertical: var(--ks-spacing-l);
+ --dsa-header--spacing-horizontal: var(--ks-spacing-l);
+
+ z-index: 2;
+ @media (min-width: "36rem") {
+ --dsa-header--spacing-vertical: var(--ks-spacing-m);
+ }
+
+ button.nav-toggle {
+ --nav-toggle__icon-bar--offset: 17px;
+ }
+
+ @media (min-width: "36rem") {
+ --dsa-logo--height: 2.5rem;
+ button.nav-toggle {
+ --nav-toggle__icon-bar--offset: 18px;
+ }
+ }
+ }
+}
diff --git a/components/nav-main/nav-main.scss b/components/nav-main/nav-main.scss
index 2866c74..b511c25 100644
--- a/components/nav-main/nav-main.scss
+++ b/components/nav-main/nav-main.scss
@@ -3,7 +3,16 @@
--dsa-nav-main__link--font-weight_active: var(--ks-font-weight-bold);
--dsa-nav-main__link--font: var(--ks-font-interface-s);
+ button.nav-toggle {
+ --nav-toggle__icon-bar--offset: 17px;
+ @media (min-width: "36rem") {
+ --nav-toggle__icon-bar--offset: 18px;
+ }
+ }
+
.nav-main__link {
text-transform: uppercase;
}
+
+ padding: 0 var(--dsa-section__content--padding);
}
diff --git a/fonts.scss b/fonts.scss
deleted file mode 100644
index fcf3e02..0000000
--- a/fonts.scss
+++ /dev/null
@@ -1,89 +0,0 @@
-@font-face {
- font-family: "Fredoka";
- src:
- url("./token/fonts/Fredoka-Regular.woff") format("woff2"),
- url("./token/fonts/Fredoka-Regular.woff") format("woff");
- font-weight: 400;
- font-style: normal;
- font-display: swap;
-}
-
-@font-face {
- font-family: "Fredoka";
- src:
- url("./token/fonts/Fredoka-SemiBold.woff2") format("woff2"),
- url("./token/fonts/Fredoka-SemiBold.woff") format("woff");
- font-weight: 600;
- font-style: normal;
- font-display: swap;
-}
-
-@font-face {
- font-family: "Fredoka";
- src:
- url("./token/fonts/Fredoka-Medium.woff2") format("woff2"),
- url("./token/fonts/Fredoka-Medium.woff") format("woff");
- font-weight: 500;
- font-style: normal;
- font-display: swap;
-}
-
-@font-face {
- font-family: "Fredoka";
- src:
- url("./token/fonts/Fredoka-Light.woff2") format("woff2"),
- url("./token/fonts/Fredoka-Light.woff") format("woff");
- font-weight: 300;
- font-style: normal;
- font-display: swap;
-}
-
-@font-face {
- font-family: "Fredoka";
- src:
- url("./token/fonts/Fredoka-Bold.woff2") format("woff2"),
- url("./token/fonts/Fredoka-Bold.woff") format("woff");
- font-weight: bold;
- font-style: normal;
- font-display: swap;
-}
-
-@font-face {
- font-family: "Mulish";
- font-style: normal;
- font-weight: 400;
- font-display: swap;
- src:
- url("./token/fonts/Mulish-Regular.woff2") format("woff2"),
- url("./token/fonts/Mulish-Regular.woff") format("woff");
-}
-@font-face {
- font-family: "Mulish";
- font-style: normal;
- font-weight: 600;
- font-display: swap;
- src:
- /* IE6-IE8 */
- url("./token/fonts/Mulish-600.woff2") format("woff2"),
- url("./token/fonts/Mulish-600.woff") format("woff"); /* Legacy iOS */
-}
-@font-face {
- font-family: "Mulish";
- font-style: normal;
- font-weight: 800;
- font-display: swap;
- src:
- /* IE6-IE8 */
- url("./token/fonts/Mulish-800.woff2") format("woff2"),
- url("./token/fonts/Mulish-800.woff") format("woff");
-}
-@font-face {
- font-family: "Mulish";
- font-style: normal;
- font-weight: 300;
- font-display: swap;
- src:
- /* IE6-IE8 */
- url("./token/fonts/Mulish-300.woff2") format("woff2"),
- url("./token/fonts/Mulish-300.woff") format("woff");
-}
diff --git a/helpers/fonts.ts b/helpers/fonts.ts
index 4a440b4..11228bc 100644
--- a/helpers/fonts.ts
+++ b/helpers/fonts.ts
@@ -3,55 +3,10 @@ import localFont from "next/font/local";
const displayFont = localFont({
src: [
{
- path: "../token/fonts/Fredoka-Regular.woff2",
+ path: "../token/fonts/novelpro-regular.woff2",
weight: "400",
style: "normal",
},
- {
- path: "../token/fonts/Fredoka-Regular.woff",
- weight: "400",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-SemiBold.woff2",
- weight: "600",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-SemiBold.woff",
- weight: "600",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Medium.woff2",
- weight: "500",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Medium.woff",
- weight: "500",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Light.woff2",
- weight: "300",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Light.woff",
- weight: "300",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Bold.woff2",
- weight: "700",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Bold.woff",
- weight: "700",
- style: "normal",
- },
],
preload: true,
display: "swap",
@@ -69,33 +24,15 @@ const displayFont = localFont({
const copyFont = localFont({
src: [
{
- path: "../token/fonts/Mulish-Regular.woff2",
+ path: "../token/fonts/novelsanspro-regular.woff2",
weight: "400",
style: "normal",
},
{
- path: "../token/fonts/Mulish-Regular.woff",
- weight: "400",
- style: "normal",
- },
- {
- path: "../token/fonts/Mulish-600.woff2",
- weight: "600",
- style: "normal",
- },
- { path: "../token/fonts/Mulish-600.woff", weight: "600", style: "normal" },
- {
- path: "../token/fonts/Mulish-800.woff2",
- weight: "800",
- style: "normal",
- },
- { path: "../token/fonts/Mulish-800.woff", weight: "800", style: "normal" },
- {
- path: "../token/fonts/Mulish-300.woff2",
- weight: "300",
+ path: "../token/fonts/novelsanspro-bold.woff2",
+ weight: "700",
style: "normal",
},
- { path: "../token/fonts/Mulish-300.woff", weight: "300", style: "normal" },
],
preload: true,
display: "swap",
@@ -107,33 +44,15 @@ const copyFont = localFont({
const interfaceFont = localFont({
src: [
{
- path: "../token/fonts/Mulish-Regular.woff2",
+ path: "../token/fonts/novelsanspro-regular.woff2",
weight: "400",
style: "normal",
},
{
- path: "../token/fonts/Mulish-Regular.woff",
- weight: "400",
- style: "normal",
- },
- {
- path: "../token/fonts/Mulish-600.woff2",
- weight: "600",
- style: "normal",
- },
- { path: "../token/fonts/Mulish-600.woff", weight: "600", style: "normal" },
- {
- path: "../token/fonts/Mulish-800.woff2",
- weight: "800",
- style: "normal",
- },
- { path: "../token/fonts/Mulish-800.woff", weight: "800", style: "normal" },
- {
- path: "../token/fonts/Mulish-300.woff2",
- weight: "300",
+ path: "../token/fonts/novelsanspro-bold.woff2",
+ weight: "700",
style: "normal",
},
- { path: "../token/fonts/Mulish-300.woff", weight: "300", style: "normal" },
],
preload: true,
display: "optional",
@@ -166,55 +85,10 @@ const interfaceFont = localFont({
const displayFontPreview = localFont({
src: [
{
- path: "../token/fonts/Fredoka-Regular.woff2",
+ path: "../token/fonts/novelpro-regular.woff2",
weight: "400",
style: "normal",
},
- {
- path: "../token/fonts/Fredoka-Regular.woff",
- weight: "400",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-SemiBold.woff2",
- weight: "600",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-SemiBold.woff",
- weight: "600",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Medium.woff2",
- weight: "500",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Medium.woff",
- weight: "500",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Light.woff2",
- weight: "300",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Light.woff",
- weight: "300",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Bold.woff2",
- weight: "700",
- style: "normal",
- },
- {
- path: "../token/fonts/Fredoka-Bold.woff",
- weight: "700",
- style: "normal",
- },
],
preload: false,
display: "auto",
@@ -232,33 +106,15 @@ const displayFontPreview = localFont({
const copyFontPreview = localFont({
src: [
{
- path: "../token/fonts/Mulish-Regular.woff2",
+ path: "../token/fonts/novelsanspro-regular.woff2",
weight: "400",
style: "normal",
},
{
- path: "../token/fonts/Mulish-Regular.woff",
- weight: "400",
- style: "normal",
- },
- {
- path: "../token/fonts/Mulish-600.woff2",
- weight: "600",
- style: "normal",
- },
- { path: "../token/fonts/Mulish-600.woff", weight: "600", style: "normal" },
- {
- path: "../token/fonts/Mulish-800.woff2",
- weight: "800",
- style: "normal",
- },
- { path: "../token/fonts/Mulish-800.woff", weight: "800", style: "normal" },
- {
- path: "../token/fonts/Mulish-300.woff2",
- weight: "300",
+ path: "../token/fonts/novelsanspro-bold.woff2",
+ weight: "700",
style: "normal",
},
- { path: "../token/fonts/Mulish-300.woff", weight: "300", style: "normal" },
],
preload: false,
display: "auto",
@@ -270,33 +126,15 @@ const copyFontPreview = localFont({
const interfaceFontPreview = localFont({
src: [
{
- path: "../token/fonts/Mulish-Regular.woff2",
+ path: "../token/fonts/novelsanspro-regular.woff2",
weight: "400",
style: "normal",
},
{
- path: "../token/fonts/Mulish-Regular.woff",
- weight: "400",
- style: "normal",
- },
- {
- path: "../token/fonts/Mulish-600.woff2",
- weight: "600",
- style: "normal",
- },
- { path: "../token/fonts/Mulish-600.woff", weight: "600", style: "normal" },
- {
- path: "../token/fonts/Mulish-800.woff2",
- weight: "800",
- style: "normal",
- },
- { path: "../token/fonts/Mulish-800.woff", weight: "800", style: "normal" },
- {
- path: "../token/fonts/Mulish-300.woff2",
- weight: "300",
+ path: "../token/fonts/novelsanspro-bold.woff2",
+ weight: "700",
style: "normal",
},
- { path: "../token/fonts/Mulish-300.woff", weight: "300", style: "normal" },
],
preload: false,
display: "auto",
diff --git a/index.scss b/index.scss
index e69de29..9b62221 100644
--- a/index.scss
+++ b/index.scss
@@ -0,0 +1,7 @@
+@import "components/global.scss";
+@import "components/button/button.scss";
+@import "components/cta/cta.scss";
+@import "components/headline/headline.scss";
+@import "components/header/header.scss";
+@import "components/nav-main/nav-main.scss";
+@import "components/stats/stats.scss";
diff --git a/netlify.toml b/netlify.toml
index a024c23..7128a9f 100644
--- a/netlify.toml
+++ b/netlify.toml
@@ -9,7 +9,7 @@
STORYBLOK_REGION = "Add the region you used on Storyblok for the newly created Space here"
[build]
- command = "(npm run netlify-init && npm run build) || npm run build"
+ command = "npm run build"
publish = ".next"
[[plugins]]
diff --git a/package-lock.json b/package-lock.json
index f7029bc..0b65102 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -50,7 +50,6 @@
"ffprobe": "^1.1.2",
"ffprobe-static": "^3.1.0",
"form-data": "^4.0.0",
- "image-size": "^1.1.1",
"import-meta-resolve": "~3.0.0",
"json-schema-typed": "~8.0.1",
"jsonpointer": "^5.0.1",
@@ -831,6 +830,7 @@
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
"integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
+ "dev": true,
"engines": {
"node": ">=0.1.90"
}
@@ -908,6 +908,7 @@
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz",
"integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==",
+ "dev": true,
"dependencies": {
"colorspace": "1.1.x",
"enabled": "2.0.x",
@@ -915,23 +916,19 @@
}
},
"node_modules/@dotenvx/dotenvx": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.7.0.tgz",
- "integrity": "sha512-WPkSNS060+GwNoWHHBRjJxBR9KhsWyoNyevD8I2x8LffWPdbVvRJqJI72fF1H+KYpDWGBQ4xdX++xO2GS37XUQ==",
+ "version": "1.20.0",
+ "resolved": "https://registry.npmjs.org/@dotenvx/dotenvx/-/dotenvx-1.20.0.tgz",
+ "integrity": "sha512-Zepr4dxvbTw1PKVa5i0HFP59wy1L6LXD+I9HcXnvugDevLOIA8mwwIH1ZqKDF6TrwRS4AHZy2lP9hKLBqib1EQ==",
"dependencies": {
- "chalk": "^4.1.2",
"commander": "^11.1.0",
- "diff": "^5.2.0",
"dotenv": "^16.4.5",
"eciesjs": "^0.4.6",
"execa": "^5.1.1",
- "fdir": "^6.1.1",
+ "fdir": "^6.2.0",
"ignore": "^5.3.0",
"object-treeify": "1.1.33",
- "picomatch": "^3.0.1",
- "which": "^4.0.0",
- "winston": "^3.11.0",
- "xxhashjs": "^0.2.2"
+ "picomatch": "^4.0.2",
+ "which": "^4.0.0"
},
"bin": {
"dotenvx": "src/cli/dotenvx.js",
@@ -941,51 +938,6 @@
"url": "https://dotenvx.com"
}
},
- "node_modules/@dotenvx/dotenvx/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/@dotenvx/dotenvx/node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
- },
"node_modules/@dotenvx/dotenvx/node_modules/commander": {
"version": "11.1.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz",
@@ -994,14 +946,6 @@
"node": ">=16"
}
},
- "node_modules/@dotenvx/dotenvx/node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@dotenvx/dotenvx/node_modules/isexe": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
@@ -1011,27 +955,16 @@
}
},
"node_modules/@dotenvx/dotenvx/node_modules/picomatch": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz",
- "integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
+ "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
"engines": {
- "node": ">=10"
+ "node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/jonschlinkert"
}
},
- "node_modules/@dotenvx/dotenvx/node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@dotenvx/dotenvx/node_modules/which": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz",
@@ -1046,6 +979,19 @@
"node": "^16.13.0 || >=18.0.0"
}
},
+ "node_modules/@ecies/ciphers": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/@ecies/ciphers/-/ciphers-0.2.0.tgz",
+ "integrity": "sha512-dqQk3HbyuXSdflgRMrXjEcCohKeBZQl2rm0lOcYnEC4Oue90irVMwVJ0GiM/nhjP0zzGimH8mVFF/pOzQcv+Lg==",
+ "engines": {
+ "bun": ">=1",
+ "deno": ">=2",
+ "node": ">=16"
+ },
+ "peerDependencies": {
+ "@noble/ciphers": "^1.0.0"
+ }
+ },
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
@@ -1513,9 +1459,9 @@
}
},
"node_modules/@kickstartds/ds-agency-premium": {
- "version": "1.5.16",
- "resolved": "https://registry.npmjs.org/@kickstartds/ds-agency-premium/-/ds-agency-premium-1.5.16.tgz",
- "integrity": "sha512-5hTJlcpSjMJUb+YuxEGHsJtNGxeO728oVc2oM2sQOqFOJYW5r7X2bb5zfqujR73Sw8DqiTAa08Ka+n1HKYTVIQ==",
+ "version": "1.5.35",
+ "resolved": "https://registry.npmjs.org/@kickstartds/ds-agency-premium/-/ds-agency-premium-1.5.35.tgz",
+ "integrity": "sha512-Sxx08DuhJ+UYEjuJhG1OA6Hk2wgQn2FFyT3KpMHBDqiK0xzWG7uvY3hNSY2mUWVSLYpP1xNQvoVX3dD++nPzXg==",
"dependencies": {
"@bedrock-layout/primitives": "^3.0.23",
"@bedrock-layout/spacing-constants": "^3.2.5",
@@ -1574,9 +1520,9 @@
}
},
"node_modules/@kickstartds/jsonschema-utils": {
- "version": "3.4.0",
- "resolved": "https://registry.npmjs.org/@kickstartds/jsonschema-utils/-/jsonschema-utils-3.4.0.tgz",
- "integrity": "sha512-diB2K910EjtLWPvOw7m3BdmSQfNBXQ9DzKubybuEf5crVsYlZ7GdjiwiaSGh/12a9aAdBS3vMRDjj7AnCHAqqA==",
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/@kickstartds/jsonschema-utils/-/jsonschema-utils-3.4.2.tgz",
+ "integrity": "sha512-Iu35LxN+RCLGY7H5cwamWFS7RF4YMbW6oYuIWVATV5REbSCAQyhTZe6dcCPTJHbWV92DeguFF7quJPvgHfTqOA==",
"dev": true,
"dependencies": {
"@bcherny/json-schema-ref-parser": "10.0.5-fork",
@@ -1599,12 +1545,12 @@
}
},
"node_modules/@kickstartds/jsonschema2storyblok": {
- "version": "1.5.34",
- "resolved": "https://registry.npmjs.org/@kickstartds/jsonschema2storyblok/-/jsonschema2storyblok-1.5.34.tgz",
- "integrity": "sha512-8mOQFPNUebp5DGlOKynnCR/TZf7yl7iNodQwJyIMUti9OBIaqpPDJMGs5SKKsZmw2Q1zNXSCyfbU8w3PFxxsuQ==",
+ "version": "1.5.38",
+ "resolved": "https://registry.npmjs.org/@kickstartds/jsonschema2storyblok/-/jsonschema2storyblok-1.5.38.tgz",
+ "integrity": "sha512-Aqm/VND3AWB6C2bWicj2gxDOxBdq5yr4dkPh987NoLn1/YYVgVTIf3h43l+aSzhkFZqPL1zW75x9yem4nOCPBA==",
"dev": true,
"dependencies": {
- "@kickstartds/jsonschema-utils": "3.4.0",
+ "@kickstartds/jsonschema-utils": "3.4.2",
"ajv": "^8.12.0",
"object-traversal": "^1.0.1",
"uuid": "~9.0.0"
@@ -1614,13 +1560,13 @@
}
},
"node_modules/@kickstartds/jsonschema2types": {
- "version": "1.1.51",
- "resolved": "https://registry.npmjs.org/@kickstartds/jsonschema2types/-/jsonschema2types-1.1.51.tgz",
- "integrity": "sha512-Zgbn12i2//IUyFWN1ATBvnuQPlxQ5Y9HdensuTwBYQ2Upqec6llra+UB4zH++OXI1YkHBj1xZG+FHszkOwovlA==",
+ "version": "1.1.53",
+ "resolved": "https://registry.npmjs.org/@kickstartds/jsonschema2types/-/jsonschema2types-1.1.53.tgz",
+ "integrity": "sha512-1KlDIXmCludz7J8G+v2JAYK/dGMr+9/nVepcQcnhMUul/iGy3lh/1/QQeAkHI1d0P1isWiKZLhPV9CQkaiBe4A==",
"dev": true,
"dependencies": {
"@kickstartds/json-schema-to-typescript": "~13.1.20",
- "@kickstartds/jsonschema-utils": "3.4.0",
+ "@kickstartds/jsonschema-utils": "3.4.2",
"ajv": "^8.12.0",
"object-traversal": "^1.0.1"
},
@@ -1778,86 +1724,6 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@next/swc-darwin-arm64": {
- "version": "13.5.6",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.6.tgz",
- "integrity": "sha512-5nvXMzKtZfvcu4BhtV0KH1oGv4XEW+B+jOfmBdpFI3C7FrB/MfujRpWYSBBO64+qbW8pkZiSyQv9eiwnn5VIQA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-darwin-x64": {
- "version": "13.5.6",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.5.6.tgz",
- "integrity": "sha512-6cgBfxg98oOCSr4BckWjLLgiVwlL3vlLj8hXg2b+nDgm4bC/qVXXLfpLB9FHdoDu4057hzywbxKvmYGmi7yUzA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm64-gnu": {
- "version": "13.5.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.5.6.tgz",
- "integrity": "sha512-txagBbj1e1w47YQjcKgSU4rRVQ7uF29YpnlHV5xuVUsgCUf2FmyfJ3CPjZUvpIeXCJAoMCFAoGnbtX86BK7+sg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm64-musl": {
- "version": "13.5.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.5.6.tgz",
- "integrity": "sha512-cGd+H8amifT86ZldVJtAKDxUqeFyLWW+v2NlBULnLAdWsiuuN8TuhVBt8ZNpCqcAuoruoSWynvMWixTFcroq+Q==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-x64-gnu": {
- "version": "13.5.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.5.6.tgz",
- "integrity": "sha512-Mc2b4xiIWKXIhBy2NBTwOxGD3nHLmq4keFk+d4/WL5fMsB8XdJRdtUlL87SqVCTSaf1BRuQQf1HvXZcy+rq3Nw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
"node_modules/@next/swc-linux-x64-musl": {
"version": "13.5.6",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.5.6.tgz",
@@ -1874,79 +1740,37 @@
"node": ">= 10"
}
},
- "node_modules/@next/swc-win32-arm64-msvc": {
- "version": "13.5.6",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.5.6.tgz",
- "integrity": "sha512-aFv1ejfkbS7PUa1qVPwzDHjQWQtknzAZWGTKYIAaS4NMtBlk3VyA6AYn593pqNanlicewqyl2jUhQAaFV/qXsg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-win32-ia32-msvc": {
- "version": "13.5.6",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.5.6.tgz",
- "integrity": "sha512-XqqpHgEIlBHvzwG8sp/JXMFkLAfGLqkbVsyN+/Ih1mR8INb6YCc2x/Mbwi6hsAgUnqQztz8cvEbHJUbSl7RHDg==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-win32-x64-msvc": {
- "version": "13.5.6",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.5.6.tgz",
- "integrity": "sha512-Cqfe1YmOS7k+5mGu92nl5ULkzpKuxJrP3+4AEuPmrpFZ3BHxTY3TnHmU1On3bFmFFs6FbTcdF58CCUProGpIGQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
"node_modules/@noble/ciphers": {
- "version": "0.5.3",
- "resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-0.5.3.tgz",
- "integrity": "sha512-B0+6IIHiqEs3BPMT0hcRmHvEj2QHOLu+uwt+tqDDeVd0oyVzh7BPrDcPjRnV1PV/5LaknXJJQvOuRGR0zQJz+w==",
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.0.0.tgz",
+ "integrity": "sha512-wH5EHOmLi0rEazphPbecAzmjd12I6/Yv/SiHdkA9LSycsQk7RuuTp7am5/o62qYr0RScE7Pc9icXGBbsr6cesA==",
+ "engines": {
+ "node": "^14.21.3 || >=16"
+ },
"funding": {
"url": "https://paulmillr.com/funding/"
}
},
"node_modules/@noble/curves": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.5.0.tgz",
- "integrity": "sha512-J5EKamIHnKPyClwVrzmaf5wSdQXgdHcPZIZLu3bwnbeCx8/7NPK5q2ZBWF+5FvYGByjiQQsJYX6jfgB2wDPn3A==",
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.6.0.tgz",
+ "integrity": "sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==",
"dependencies": {
- "@noble/hashes": "1.4.0"
+ "@noble/hashes": "1.5.0"
+ },
+ "engines": {
+ "node": "^14.21.3 || >=16"
},
"funding": {
"url": "https://paulmillr.com/funding/"
}
},
"node_modules/@noble/hashes": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz",
- "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==",
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.5.0.tgz",
+ "integrity": "sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==",
"engines": {
- "node": ">= 16"
+ "node": "^14.21.3 || >=16"
},
"funding": {
"url": "https://paulmillr.com/funding/"
@@ -2256,7 +2080,8 @@
"node_modules/@types/triple-beam": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz",
- "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw=="
+ "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==",
+ "dev": true
},
"node_modules/@typescript-eslint/parser": {
"version": "5.62.0",
@@ -2776,7 +2601,8 @@
"node_modules/async": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz",
- "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg=="
+ "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==",
+ "dev": true
},
"node_modules/asynciterator.prototype": {
"version": "1.0.0",
@@ -3846,6 +3672,7 @@
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz",
"integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==",
+ "dev": true,
"dependencies": {
"color-convert": "^1.9.3",
"color-string": "^1.6.0"
@@ -3855,6 +3682,7 @@
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
"dependencies": {
"color-name": "1.1.3"
}
@@ -3862,12 +3690,14 @@
"node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true
},
"node_modules/color-string": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
+ "dev": true,
"dependencies": {
"color-name": "^1.0.0",
"simple-swizzle": "^0.2.2"
@@ -3883,6 +3713,7 @@
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz",
"integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==",
+ "dev": true,
"dependencies": {
"color": "^3.1.3",
"text-hex": "1.0.x"
@@ -4187,11 +4018,6 @@
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
"dev": true
},
- "node_modules/cuint": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz",
- "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw=="
- },
"node_modules/custom-property-extract": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/custom-property-extract/-/custom-property-extract-1.2.1.tgz",
@@ -4219,9 +4045,9 @@
"dev": true
},
"node_modules/data-structure-typed": {
- "version": "1.52.1",
- "resolved": "https://registry.npmjs.org/data-structure-typed/-/data-structure-typed-1.52.1.tgz",
- "integrity": "sha512-zxUm13JNMnSAH97N0DrDiidZRpvZpWMfppx5zlvJCY7p/yRMZ6Uzv6HS6traQdYxelwN11S8tTAirvVacEiaMg==",
+ "version": "1.52.4",
+ "resolved": "https://registry.npmjs.org/data-structure-typed/-/data-structure-typed-1.52.4.tgz",
+ "integrity": "sha512-Wagwv7JPArW4HXxZYCOAawp0CiDeExmeNhB45OA1B1oQ9ExnlYdYndaMbkr/w23aLf7YFoD0S7ueqCy6VrhbyA==",
"dev": true
},
"node_modules/date-fns": {
@@ -4450,14 +4276,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/diff": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz",
- "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==",
- "engines": {
- "node": ">=0.3.1"
- }
- },
"node_modules/dir-glob": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
@@ -4470,12 +4288,12 @@
}
},
"node_modules/directed-graph-typed": {
- "version": "1.52.1",
- "resolved": "https://registry.npmjs.org/directed-graph-typed/-/directed-graph-typed-1.52.1.tgz",
- "integrity": "sha512-lYrOIhdWDiaHj/dLrgyRrAf6qFO99xNlrLe5ai+8vTg/NrCafdEiVji9f7dAnZDYKq4R72L+XN1JjscFKXAcww==",
+ "version": "1.52.4",
+ "resolved": "https://registry.npmjs.org/directed-graph-typed/-/directed-graph-typed-1.52.4.tgz",
+ "integrity": "sha512-TSXiKcJXVqWBx09dTaES+q/WTcAmuT+h2iXnDt4MMyegM9Svo/bCtvQBCRWpe6HLt1UKbJ9bMmWFvEzv/6rfnQ==",
"dev": true,
"dependencies": {
- "data-structure-typed": "^1.52.1"
+ "data-structure-typed": "^1.52.4"
}
},
"node_modules/docker-modem": {
@@ -4565,13 +4383,14 @@
"dev": true
},
"node_modules/eciesjs": {
- "version": "0.4.7",
- "resolved": "https://registry.npmjs.org/eciesjs/-/eciesjs-0.4.7.tgz",
- "integrity": "sha512-4JQahOkBdDy27jjW4q3FJQigHlcwZXx28sCtBQkBamF2XUdcNXrInpgrr8h205MtVIS0CMHufyIKGVjtjxQ2ZA==",
+ "version": "0.4.10",
+ "resolved": "https://registry.npmjs.org/eciesjs/-/eciesjs-0.4.10.tgz",
+ "integrity": "sha512-dYAgdXAC7/d9fEC0w6kpRWj5vHah2BQgMM639g78JI0FUUffMN2Mq60HEHPkyH8ah+FX+cQd6ouDK4kWiatzyw==",
"dependencies": {
- "@noble/ciphers": "^0.5.3",
- "@noble/curves": "^1.4.0",
- "@noble/hashes": "^1.4.0"
+ "@ecies/ciphers": "^0.2.0",
+ "@noble/ciphers": "^1.0.0",
+ "@noble/curves": "^1.6.0",
+ "@noble/hashes": "^1.5.0"
},
"engines": {
"node": ">=16.0.0"
@@ -4592,7 +4411,8 @@
"node_modules/enabled": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz",
- "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ=="
+ "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==",
+ "dev": true
},
"node_modules/end-of-stream": {
"version": "1.4.4",
@@ -5333,9 +5153,9 @@
}
},
"node_modules/esniff/node_modules/type": {
- "version": "2.7.3",
- "resolved": "https://registry.npmjs.org/type/-/type-2.7.3.tgz",
- "integrity": "sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==",
+ "version": "2.7.2",
+ "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz",
+ "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==",
"dev": true
},
"node_modules/espree": {
@@ -5548,9 +5368,9 @@
}
},
"node_modules/fdir": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.2.0.tgz",
- "integrity": "sha512-9XaWcDl0riOX5j2kYfy0kKdg7skw3IY6kA4LFT8Tk2yF9UdrADUy8D6AJuBLtf7ISm/MksumwAHE3WVbMRyCLw==",
+ "version": "6.4.2",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.2.tgz",
+ "integrity": "sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==",
"peerDependencies": {
"picomatch": "^3 || ^4"
},
@@ -5563,7 +5383,8 @@
"node_modules/fecha": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz",
- "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw=="
+ "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==",
+ "dev": true
},
"node_modules/ffprobe": {
"version": "1.1.2",
@@ -5778,7 +5599,8 @@
"node_modules/fn.name": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz",
- "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="
+ "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==",
+ "dev": true
},
"node_modules/focus-visible": {
"version": "5.2.0",
@@ -5907,19 +5729,6 @@
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
},
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "hasInstallScript": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
"node_modules/function-bind": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
@@ -6532,21 +6341,6 @@
"node": ">= 4"
}
},
- "node_modules/image-size": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz",
- "integrity": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==",
- "dev": true,
- "dependencies": {
- "queue": "6.0.2"
- },
- "bin": {
- "image-size": "bin/image-size.js"
- },
- "engines": {
- "node": ">=16.x"
- }
- },
"node_modules/immutable": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz",
@@ -7601,9 +7395,9 @@
}
},
"node_modules/kickstartds": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/kickstartds/-/kickstartds-3.1.0.tgz",
- "integrity": "sha512-druEsCoAmGHaB9d3HIxSE8fkTd0Z8XM3Oa8A3lg3Q8v9fXdpjV+OPrX4E5Y7EhcCzUEQ3PC7s4lOpPxUm9NJQg==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/kickstartds/-/kickstartds-3.2.0.tgz",
+ "integrity": "sha512-OUh1x4NWnTVtzQLdsUqUgqhfypfUhffLUUfqZ8bZJTvJ0JgTfe7NCH6riHilmyAaFUseYjsWVew8lHzu0tOpzw==",
"dev": true,
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
@@ -7758,7 +7552,8 @@
"node_modules/kuler": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz",
- "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A=="
+ "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==",
+ "dev": true
},
"node_modules/language-subtag-registry": {
"version": "0.3.22",
@@ -8109,6 +7904,7 @@
"version": "2.6.0",
"resolved": "https://registry.npmjs.org/logform/-/logform-2.6.0.tgz",
"integrity": "sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==",
+ "dev": true,
"dependencies": {
"@colors/colors": "1.6.0",
"@types/triple-beam": "^1.3.2",
@@ -8550,7 +8346,8 @@
"node_modules/ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
},
"node_modules/mute-stream": {
"version": "0.0.8",
@@ -9452,6 +9249,7 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz",
"integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==",
+ "dev": true,
"dependencies": {
"fn.name": "1.x.x"
}
@@ -10467,15 +10265,6 @@
"node": ">=8"
}
},
- "node_modules/queue": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz",
- "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==",
- "dev": true,
- "dependencies": {
- "inherits": "~2.0.3"
- }
- },
"node_modules/queue-microtask": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
@@ -10611,6 +10400,7 @@
"version": "3.6.2",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+ "dev": true,
"dependencies": {
"inherits": "^2.0.3",
"string_decoder": "^1.1.1",
@@ -10982,6 +10772,7 @@
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true,
"funding": [
{
"type": "github",
@@ -11018,6 +10809,7 @@
"version": "2.4.3",
"resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz",
"integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==",
+ "dev": true,
"engines": {
"node": ">=10"
}
@@ -11243,6 +11035,7 @@
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
+ "dev": true,
"dependencies": {
"is-arrayish": "^0.3.1"
}
@@ -11250,7 +11043,8 @@
"node_modules/simple-swizzle/node_modules/is-arrayish": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
- "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
+ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
+ "dev": true
},
"node_modules/simple-uuid": {
"version": "0.0.1",
@@ -11368,6 +11162,7 @@
"version": "0.0.10",
"resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
"integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==",
+ "dev": true,
"engines": {
"node": "*"
}
@@ -11663,6 +11458,7 @@
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "dev": true,
"dependencies": {
"safe-buffer": "~5.2.0"
}
@@ -12300,7 +12096,8 @@
"node_modules/text-hex": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz",
- "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg=="
+ "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==",
+ "dev": true
},
"node_modules/text-table": {
"version": "0.2.0",
@@ -12435,6 +12232,7 @@
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz",
"integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==",
+ "dev": true,
"engines": {
"node": ">= 14.0.0"
}
@@ -13123,7 +12921,8 @@
"node_modules/util-deprecate": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "dev": true
},
"node_modules/util/node_modules/inherits": {
"version": "2.0.3",
@@ -13225,9 +13024,9 @@
}
},
"node_modules/wait-on/node_modules/axios": {
- "version": "1.7.2",
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz",
- "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==",
+ "version": "1.7.7",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz",
+ "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==",
"dev": true,
"dependencies": {
"follow-redirects": "^1.15.6",
@@ -13380,6 +13179,7 @@
"version": "3.11.0",
"resolved": "https://registry.npmjs.org/winston/-/winston-3.11.0.tgz",
"integrity": "sha512-L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g==",
+ "dev": true,
"dependencies": {
"@colors/colors": "^1.6.0",
"@dabh/diagnostics": "^2.0.2",
@@ -13401,6 +13201,7 @@
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.6.0.tgz",
"integrity": "sha512-wbBA9PbPAHxKiygo7ub7BYRiKxms0tpfU2ljtWzb3SjRjv5yl6Ozuy/TkXf00HTAt+Uylo3gSkNwzc4ME0wiIg==",
+ "dev": true,
"dependencies": {
"logform": "^2.3.2",
"readable-stream": "^3.6.0",
@@ -13583,14 +13384,6 @@
"node": ">=0.4"
}
},
- "node_modules/xxhashjs": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz",
- "integrity": "sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==",
- "dependencies": {
- "cuint": "^0.2.2"
- }
- },
"node_modules/yallist": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
diff --git a/package.json b/package.json
index 9d4add1..ed56c67 100644
--- a/package.json
+++ b/package.json
@@ -78,7 +78,6 @@
"ffprobe": "^1.1.2",
"ffprobe-static": "^3.1.0",
"form-data": "^4.0.0",
- "image-size": "^1.1.1",
"import-meta-resolve": "~3.0.0",
"json-schema-typed": "~8.0.1",
"jsonpointer": "^5.0.1",
diff --git a/pages/400.js b/pages/400.js
deleted file mode 100644
index cad1702..0000000
--- a/pages/400.js
+++ /dev/null
@@ -1,3 +0,0 @@
-export default function Custom404() {
- return
404 - Page Not Found
;
-}
diff --git a/pages/404.js b/pages/404.js
new file mode 100644
index 0000000..8750161
--- /dev/null
+++ b/pages/404.js
@@ -0,0 +1,74 @@
+import { StoryblokComponent } from "@storyblok/react";
+import { Cache } from "file-system-cache";
+import { traverse } from "object-traversal";
+import { isImgUrl } from "@/helpers/apiUtils";
+import { fetchPageProps } from "@/helpers/storyblok";
+import { fontClassNames } from "@/helpers/fonts";
+import { HeadlineLevelProvider } from "@/components/headline/HeadlineLevelContext";
+import { Headline } from "@kickstartds/ds-agency-premium/components/headline/index.js";
+import { Page } from "@kickstartds/ds-agency-premium/components/page/index.js";
+import { Section } from "@kickstartds/ds-agency-premium/components/section/index.js";
+import { Text } from "@kickstartds/ds-agency-premium/components/text/index.js";
+
+export default function Custom404({ story }) {
+ if (story && story.content) {
+ return (
+
+
+
+ );
+ } else {
+ return (
+
+
+
+ );
+ }
+}
+
+export const getStaticProps = async () => {
+ try {
+ const { pageData, settingsData } = await fetchPageProps("not-found");
+
+ const storyImages = [];
+ traverse(pageData, ({ value }) => {
+ if (isImgUrl(value)) {
+ storyImages.push(value.startsWith("//a") ? `https:${value}` : value);
+ }
+ });
+
+ const blurHashes = {};
+
+ const cache = new Cache({ basePath: "./public/blurhashes" });
+ await cache.load();
+
+ for (const imageUrl of storyImages) {
+ blurHashes[imageUrl] ||= cache.getSync(imageUrl) || null;
+ }
+
+ const settingsIndex = settingsData.stories.findIndex(
+ (story) => !story.full_slug.startsWith("en/")
+ );
+
+ return {
+ props: {
+ ...pageData,
+ blurHashes,
+ fontClassNames,
+ settings: settingsData.stories[settingsIndex]?.content || null,
+ key: pageData.story.id,
+ language: "de",
+ },
+ };
+ } catch (e) {
+ return {
+ props: {},
+ };
+ }
+};
diff --git a/pages/[[...slug]].tsx b/pages/[[...slug]].tsx
index 49a6084..54a5c85 100644
--- a/pages/[[...slug]].tsx
+++ b/pages/[[...slug]].tsx
@@ -25,14 +25,18 @@ const Page: NextPage = ({ story }) => {
export default Page;
export const getStaticPaths = (async () => {
+ const exclude = ["not-found"];
+
return {
- paths: (await fetchPaths()).map((path) => {
- return {
- params: {
- slug: path.params.slug,
- },
- };
- }),
+ paths: (await fetchPaths())
+ .filter((path) => !exclude.includes(path.params.slug.join("/")))
+ .map((path) => {
+ return {
+ params: {
+ slug: path.params.slug,
+ },
+ };
+ }),
fallback: "blocking",
};
}) satisfies GetStaticPaths;
diff --git a/pages/_preview/[[...slug]].tsx b/pages/_preview/[[...slug]].tsx
index fd3a5f4..ac9a2c2 100644
--- a/pages/_preview/[[...slug]].tsx
+++ b/pages/_preview/[[...slug]].tsx
@@ -35,14 +35,18 @@ const Page: NextPage = ({ story: initialStory }) => {
export default Page;
export const getStaticPaths = (async () => {
+ const exclude = ["not-found"];
+
return {
- paths: (await fetchPaths()).map((path) => {
- return {
- params: {
- slug: path.params.slug,
- },
- };
- }),
+ paths: (await fetchPaths())
+ .filter((path) => !exclude.includes(path.params.slug.join("/")))
+ .map((path) => {
+ return {
+ params: {
+ slug: path.params.slug,
+ },
+ };
+ }),
fallback: "blocking",
};
}) satisfies GetStaticPaths;
diff --git a/pages/server-sitemap.xml/index.tsx b/pages/server-sitemap.xml/index.tsx
index 77a448d..33815b4 100644
--- a/pages/server-sitemap.xml/index.tsx
+++ b/pages/server-sitemap.xml/index.tsx
@@ -3,18 +3,21 @@ import { GetServerSideProps } from "next";
import { fetchPaths } from "@/helpers/storyblok";
export const getServerSideProps: GetServerSideProps = async (ctx) => {
+ const exclude = ["not-found"];
const paths = await fetchPaths();
return getServerSideSitemapLegacy(
ctx,
- paths.map((path) => {
- return {
- loc: `${process.env.NEXT_PUBLIC_SITE_URL}/${path.params.slug.join(
- "/"
- )}`,
- lastmod: path.params.updated_at || new Date().toISOString(),
- };
- })
+ paths
+ .filter((path) => !exclude.includes(path.params.slug.join("/")))
+ .map((path) => {
+ return {
+ loc: `${process.env.NEXT_PUBLIC_SITE_URL}/${path.params.slug.join(
+ "/"
+ )}`,
+ lastmod: path.params.updated_at || new Date().toISOString(),
+ };
+ })
);
};
diff --git a/public/blurhashes/00552247933fccd3b1fcec8ef7375f567c1df06b b/public/blurhashes/00552247933fccd3b1fcec8ef7375f567c1df06b
new file mode 100644
index 0000000..183c25c
--- /dev/null
+++ b/public/blurhashes/00552247933fccd3b1fcec8ef7375f567c1df06b
@@ -0,0 +1 @@
+{"value":"UII;ho%Mi[-40;9Gn2IU_N^*NFNG4nE2xuxu","type":"String","created":"2024-05-07T09:42:12.167Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/0440d6a0fb5176d1ec60b46ec94014075b38ab08 b/public/blurhashes/0440d6a0fb5176d1ec60b46ec94014075b38ab08
new file mode 100644
index 0000000..8ea4bf1
--- /dev/null
+++ b/public/blurhashes/0440d6a0fb5176d1ec60b46ec94014075b38ab08
@@ -0,0 +1 @@
+{"value":"ULLDof.TM_Dh=|tl%1RjNbSiIVx^4:jEozNG","type":"String","created":"2024-05-07T09:44:05.001Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/077d1b9c2e8cd251f6412f8adb988c81e5519a42 b/public/blurhashes/077d1b9c2e8cd251f6412f8adb988c81e5519a42
new file mode 100644
index 0000000..a751454
--- /dev/null
+++ b/public/blurhashes/077d1b9c2e8cd251f6412f8adb988c81e5519a42
@@ -0,0 +1 @@
+{"value":"UFBO7uay00oLEZj[$oWV8*ay.fj[-GjuI+ay","type":"String","created":"2024-05-07T09:44:09.890Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/0b561ffee983bdcd819aec4b773633755c085ac4 b/public/blurhashes/0b561ffee983bdcd819aec4b773633755c085ac4
new file mode 100644
index 0000000..a924d90
--- /dev/null
+++ b/public/blurhashes/0b561ffee983bdcd819aec4b773633755c085ac4
@@ -0,0 +1 @@
+{"value":"UDBEXPjt00azX8azn$oL00ay?^j[aJj@bvWW","type":"String","created":"2024-05-07T09:43:55.980Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/0cc6e17d3c0156f45bb08af298d1a8023b5268a2 b/public/blurhashes/0cc6e17d3c0156f45bb08af298d1a8023b5268a2
new file mode 100644
index 0000000..a498c2b
--- /dev/null
+++ b/public/blurhashes/0cc6e17d3c0156f45bb08af298d1a8023b5268a2
@@ -0,0 +1 @@
+{"value":"UWD-B*%3%No#?IbIt7ad%2WBx^o#.AogWBV?","type":"String","created":"2024-07-19T06:57:38.672Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/1259caae61402660083195f850fa342564f7019c b/public/blurhashes/1259caae61402660083195f850fa342564f7019c
new file mode 100644
index 0000000..ebacea0
--- /dev/null
+++ b/public/blurhashes/1259caae61402660083195f850fa342564f7019c
@@ -0,0 +1 @@
+{"value":"UIEwwP0z0L~BK$wKIpoy4.xu-pR5nmWAs.S$","type":"String","created":"2024-05-07T09:43:27.918Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/12f8124a4f0067980494fad7d8c37124d3c4d909 b/public/blurhashes/12f8124a4f0067980494fad7d8c37124d3c4d909
new file mode 100644
index 0000000..13d1a3e
--- /dev/null
+++ b/public/blurhashes/12f8124a4f0067980494fad7d8c37124d3c4d909
@@ -0,0 +1 @@
+{"value":"U9D0T64:8^%0t8tRa}ae00?G.ANKIUIToct7","type":"String","created":"2024-05-07T09:44:09.581Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/14f220d5f00a1b890fa200b8c9476a47a32e6349 b/public/blurhashes/14f220d5f00a1b890fa200b8c9476a47a32e6349
new file mode 100644
index 0000000..c5fa59f
--- /dev/null
+++ b/public/blurhashes/14f220d5f00a1b890fa200b8c9476a47a32e6349
@@ -0,0 +1 @@
+{"value":"UCATi+00xu?bofWBa}j[00~qM{D%Rkogjsax","type":"String","created":"2024-05-07T09:43:55.021Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/1562299b20f543bba33099f3c7916f19e3453c9b b/public/blurhashes/1562299b20f543bba33099f3c7916f19e3453c9b
new file mode 100644
index 0000000..acf9804
--- /dev/null
+++ b/public/blurhashes/1562299b20f543bba33099f3c7916f19e3453c9b
@@ -0,0 +1 @@
+{"value":"U7D9e;-r00?w00kA5rIS4,IT%3ogKSof=^og","type":"String","created":"2024-05-07T09:43:15.880Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/16598614b7dfa6a9298d61334fc2527b99b7bae0 b/public/blurhashes/16598614b7dfa6a9298d61334fc2527b99b7bae0
new file mode 100644
index 0000000..eb77aeb
--- /dev/null
+++ b/public/blurhashes/16598614b7dfa6a9298d61334fc2527b99b7bae0
@@ -0,0 +1 @@
+{"value":"UDIN]a]cIp^j0@00~VI]~qRP5TW;M_Rhx[%1","type":"String","created":"2024-05-07T09:42:28.265Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/168d02c41c7c812d712be364a8b454163f343db7 b/public/blurhashes/168d02c41c7c812d712be364a8b454163f343db7
new file mode 100644
index 0000000..e110310
--- /dev/null
+++ b/public/blurhashes/168d02c41c7c812d712be364a8b454163f343db7
@@ -0,0 +1 @@
+{"value":"UHKT%,$_04~S0FIrtcM,D,N2-it3-{%Ir_R%","type":"String","created":"2024-05-07T09:43:34.484Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/1a492bd466444570721b8f39ed6664ec65ca2cfb b/public/blurhashes/1a492bd466444570721b8f39ed6664ec65ca2cfb
new file mode 100644
index 0000000..b1611b1
--- /dev/null
+++ b/public/blurhashes/1a492bd466444570721b8f39ed6664ec65ca2cfb
@@ -0,0 +1 @@
+{"value":"UMF2sH|2nii^;kw|WUoLn3adkWkDsDjZj[bH","type":"String","created":"2024-05-15T12:13:25.857Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/24dc948168205ffb2d85e03efad82ccf39fb40eb b/public/blurhashes/24dc948168205ffb2d85e03efad82ccf39fb40eb
new file mode 100644
index 0000000..e8bf455
--- /dev/null
+++ b/public/blurhashes/24dc948168205ffb2d85e03efad82ccf39fb40eb
@@ -0,0 +1 @@
+{"value":"UHL{|;~99Zt5~B4:xakq%MNHxDaKJB-;Ios8","type":"String","created":"2024-05-07T09:42:35.503Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/2698311e1f21b6ca2c0d92fd36e01ec766085c89 b/public/blurhashes/2698311e1f21b6ca2c0d92fd36e01ec766085c89
new file mode 100644
index 0000000..9e273e7
--- /dev/null
+++ b/public/blurhashes/2698311e1f21b6ca2c0d92fd36e01ec766085c89
@@ -0,0 +1 @@
+{"value":"UMIgu}~RNGDj02IUENoI-mNLNLoIE2xYxaR.","type":"String","created":"2024-05-07T09:44:07.848Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/270bdb378b845b72fa8c63aa912daff939f127bf b/public/blurhashes/270bdb378b845b72fa8c63aa912daff939f127bf
new file mode 100644
index 0000000..43b2ce1
--- /dev/null
+++ b/public/blurhashes/270bdb378b845b72fa8c63aa912daff939f127bf
@@ -0,0 +1 @@
+{"value":"UDIN]a]cIp^j0@00~VI]~qRP5TW;M_Rhx[%1","type":"String","created":"2024-05-07T09:42:25.513Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/311906ee0081706e72e7822ef353279353179417 b/public/blurhashes/311906ee0081706e72e7822ef353279353179417
new file mode 100644
index 0000000..5b91ae8
--- /dev/null
+++ b/public/blurhashes/311906ee0081706e72e7822ef353279353179417
@@ -0,0 +1 @@
+{"value":"U100ejf,Zee,fQfQfQfQZxfkgRe-fRfQfPfQ","type":"String","created":"2024-05-07T09:44:10.103Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/335f9ac507fdd0d22d64d86fe7bf4e691eaa633b b/public/blurhashes/335f9ac507fdd0d22d64d86fe7bf4e691eaa633b
new file mode 100644
index 0000000..dbde555
--- /dev/null
+++ b/public/blurhashes/335f9ac507fdd0d22d64d86fe7bf4e691eaa633b
@@ -0,0 +1 @@
+{"value":"URH21c~B010zros:S5M{9vJUa0s9IURjtRkD","type":"String","created":"2024-07-19T06:57:38.332Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/3738c1dc597e4c913f8f8003a69fd1713af77bf0 b/public/blurhashes/3738c1dc597e4c913f8f8003a69fd1713af77bf0
new file mode 100644
index 0000000..aec8b5c
--- /dev/null
+++ b/public/blurhashes/3738c1dc597e4c913f8f8003a69fd1713af77bf0
@@ -0,0 +1 @@
+{"value":"UTDvD-Or~VEL01a0E1$*-;%MR*jZIUM{oeof","type":"String","created":"2024-07-19T06:57:35.526Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/4388b599875de21eb3542a4470276a73f1f6ad23 b/public/blurhashes/4388b599875de21eb3542a4470276a73f1f6ad23
new file mode 100644
index 0000000..5437f42
--- /dev/null
+++ b/public/blurhashes/4388b599875de21eb3542a4470276a73f1f6ad23
@@ -0,0 +1 @@
+{"value":"UODl+uNGEk-p~WozOFxZ9Yt7s:RjE1adZ~R+","type":"String","created":"2024-05-07T09:43:47.722Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/470e5ab180fce23b49c4711d3f1321ed0dff66e6 b/public/blurhashes/470e5ab180fce23b49c4711d3f1321ed0dff66e6
new file mode 100644
index 0000000..e4fcf22
--- /dev/null
+++ b/public/blurhashes/470e5ab180fce23b49c4711d3f1321ed0dff66e6
@@ -0,0 +1 @@
+{"value":"UODvNBRkRi9G~pIpIoMx%KWYIps*xBs-WEbb","type":"String","created":"2024-07-19T06:57:39.431Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/47a7de562684429a1081a39c736001c62ca13ea6 b/public/blurhashes/47a7de562684429a1081a39c736001c62ca13ea6
new file mode 100644
index 0000000..2b0f824
--- /dev/null
+++ b/public/blurhashes/47a7de562684429a1081a39c736001c62ca13ea6
@@ -0,0 +1 @@
+{"value":"U66aMHRz0gs+=:oi9tog9Zay-TWB0gav}[R*","type":"String","created":"2024-05-07T09:42:57.330Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/4e6943e6f0459e0664c5a2eba6e2d159ff22d051 b/public/blurhashes/4e6943e6f0459e0664c5a2eba6e2d159ff22d051
new file mode 100644
index 0000000..88ef998
--- /dev/null
+++ b/public/blurhashes/4e6943e6f0459e0664c5a2eba6e2d159ff22d051
@@ -0,0 +1 @@
+{"value":"U99ZiwIU01xt~Bs;0MxtIpNG-oxZ0fxa=|Rj","type":"String","created":"2024-05-07T09:43:53.371Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/4f7389fda54eff72609a29ab8723c8049fbc70f2 b/public/blurhashes/4f7389fda54eff72609a29ab8723c8049fbc70f2
new file mode 100644
index 0000000..c58b899
--- /dev/null
+++ b/public/blurhashes/4f7389fda54eff72609a29ab8723c8049fbc70f2
@@ -0,0 +1 @@
+{"value":"UECjhG-o000gEzr=-BOt4TRj?]%2=fS5Ed$d","type":"String","created":"2024-05-07T09:44:10.547Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/5143f176bf939843641b0675ccc0d6a3b9151b18 b/public/blurhashes/5143f176bf939843641b0675ccc0d6a3b9151b18
new file mode 100644
index 0000000..f38e407
--- /dev/null
+++ b/public/blurhashes/5143f176bf939843641b0675ccc0d6a3b9151b18
@@ -0,0 +1 @@
+{"value":"UJJ%wYxBtROY~pn3%LI=_2%2IpRQ=so}IWs.","type":"String","created":"2024-05-07T09:42:32.625Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/5150b2a418ce715e24ec624e86195a40b43b4add b/public/blurhashes/5150b2a418ce715e24ec624e86195a40b43b4add
new file mode 100644
index 0000000..efe922c
--- /dev/null
+++ b/public/blurhashes/5150b2a418ce715e24ec624e86195a40b43b4add
@@ -0,0 +1 @@
+{"value":"UTDJM0t8Swof~pozbxkCt6aeRja}E1aynhax","type":"String","created":"2024-05-07T09:43:40.943Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/6230edd0675a8e8b93cd62eec6f060f45ca843f0 b/public/blurhashes/6230edd0675a8e8b93cd62eec6f060f45ca843f0
new file mode 100644
index 0000000..45aff03
--- /dev/null
+++ b/public/blurhashes/6230edd0675a8e8b93cd62eec6f060f45ca843f0
@@ -0,0 +1 @@
+{"value":"UE9Q]kj[4TayIAfQoffP00fP_4j[_NfQM{a|","type":"String","created":"2024-05-07T09:43:56.292Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/679f46137e8dbeb9a75e74efb7ea08758ade420e b/public/blurhashes/679f46137e8dbeb9a75e74efb7ea08758ade420e
new file mode 100644
index 0000000..dff6e69
--- /dev/null
+++ b/public/blurhashes/679f46137e8dbeb9a75e74efb7ea08758ade420e
@@ -0,0 +1 @@
+{"value":"UFHeB~8w9]4nqZ_NS%RlRiM{t8kWyER5VstQ","type":"String","created":"2024-05-07T09:42:09.167Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/7262571e7e28004d270cfde8f0ce38d6e3213d64 b/public/blurhashes/7262571e7e28004d270cfde8f0ce38d6e3213d64
new file mode 100644
index 0000000..be3d016
--- /dev/null
+++ b/public/blurhashes/7262571e7e28004d270cfde8f0ce38d6e3213d64
@@ -0,0 +1 @@
+{"value":"UCF3iJ1b0L}Y3:;}vNK4ACw{$jJRrDJS%LwJ","type":"String","created":"2024-05-07T09:42:52.251Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/76e9fd871c3d7324c294678f3f3aa8c509847268 b/public/blurhashes/76e9fd871c3d7324c294678f3f3aa8c509847268
new file mode 100644
index 0000000..2bd3c76
--- /dev/null
+++ b/public/blurhashes/76e9fd871c3d7324c294678f3f3aa8c509847268
@@ -0,0 +1 @@
+{"value":"UNHUd?s;4nR+00ad-=Wo~pbcs7$%D*adR-WE","type":"String","created":"2024-05-07T09:42:15.011Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/82091950b2766182897d898f3ba10552f8391380 b/public/blurhashes/82091950b2766182897d898f3ba10552f8391380
new file mode 100644
index 0000000..c934b2a
--- /dev/null
+++ b/public/blurhashes/82091950b2766182897d898f3ba10552f8391380
@@ -0,0 +1 @@
+{"value":"UCCZFTjY00W?v^fQK9ay0Mf8~Tj?cIa#rToc","type":"String","created":"2024-05-07T09:43:53.731Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/86ff351cda7af771c771352285f0cb90aaa5c246 b/public/blurhashes/86ff351cda7af771c771352285f0cb90aaa5c246
new file mode 100644
index 0000000..fe2b846
--- /dev/null
+++ b/public/blurhashes/86ff351cda7af771c771352285f0cb90aaa5c246
@@ -0,0 +1 @@
+{"value":"UB6i~m}Z=LayayayayfQ1H5+Ezj[kCkCj[fk","type":"String","created":"2024-05-07T09:43:55.453Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/906aaa2372965afb31a68f7b5b8b40fb7d77b2aa b/public/blurhashes/906aaa2372965afb31a68f7b5b8b40fb7d77b2aa
new file mode 100644
index 0000000..371232d
--- /dev/null
+++ b/public/blurhashes/906aaa2372965afb31a68f7b5b8b40fb7d77b2aa
@@ -0,0 +1 @@
+{"value":"UB9@S400Io~qofaxazj]00_4xa9EWCogj?ad","type":"String","created":"2024-05-07T09:44:09.091Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/9293528e26d3efb26ffb00454cde6e2d0f9cf113 b/public/blurhashes/9293528e26d3efb26ffb00454cde6e2d0f9cf113
new file mode 100644
index 0000000..555c356
--- /dev/null
+++ b/public/blurhashes/9293528e26d3efb26ffb00454cde6e2d0f9cf113
@@ -0,0 +1 @@
+{"value":"UJIE*D9G4:-o00x]NwxuNaMxslNG.Txu-VNG","type":"String","created":"2024-05-07T09:43:09.362Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/a3ef9321a7db497b772fa9503b21a1413523a402 b/public/blurhashes/a3ef9321a7db497b772fa9503b21a1413523a402
new file mode 100644
index 0000000..bd8d62c
--- /dev/null
+++ b/public/blurhashes/a3ef9321a7db497b772fa9503b21a1413523a402
@@ -0,0 +1 @@
+{"value":"U7Gk:;8^0000l:56yF~B00-?:#~U00-=_3R%","type":"String","created":"2024-07-19T06:57:35.169Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/a43fbd6dd8c65c9aca6ff262d8ea1bed2d6ccbb8 b/public/blurhashes/a43fbd6dd8c65c9aca6ff262d8ea1bed2d6ccbb8
new file mode 100644
index 0000000..f5d61ff
--- /dev/null
+++ b/public/blurhashes/a43fbd6dd8c65c9aca6ff262d8ea1bed2d6ccbb8
@@ -0,0 +1 @@
+{"value":"UEF~U7D$00~W00X9TKVr4.t7?bt7%#slwHEL","type":"String","created":"2024-05-07T09:42:46.760Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/a4616bdbde7a3678a09b4396a0ca490c22c5453f b/public/blurhashes/a4616bdbde7a3678a09b4396a0ca490c22c5453f
new file mode 100644
index 0000000..72af475
--- /dev/null
+++ b/public/blurhashes/a4616bdbde7a3678a09b4396a0ca490c22c5453f
@@ -0,0 +1 @@
+{"value":"UgPjlY~CE1WB-;RjayoLR6NGofoLxuofayfj","type":"String","created":"2024-05-07T09:43:58.604Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/ae387abaa8548dddc0ca6a9d57455d045ce3fa60 b/public/blurhashes/ae387abaa8548dddc0ca6a9d57455d045ce3fa60
new file mode 100644
index 0000000..d7bd829
--- /dev/null
+++ b/public/blurhashes/ae387abaa8548dddc0ca6a9d57455d045ce3fa60
@@ -0,0 +1 @@
+{"value":"UcLVYX58J0R7^nIBotR~DkXLtSt8Ibx@nhbb","type":"String","created":"2024-05-07T09:42:19.530Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/b4328a0a6fa73b7d00daec398ca76d3f19e3a1a2 b/public/blurhashes/b4328a0a6fa73b7d00daec398ca76d3f19e3a1a2
new file mode 100644
index 0000000..d2b8e7e
--- /dev/null
+++ b/public/blurhashes/b4328a0a6fa73b7d00daec398ca76d3f19e3a1a2
@@ -0,0 +1 @@
+{"value":"U2EV.|0L4:D*%MWBWBfP00_2?a-:4nt7t7a}","type":"String","created":"2024-05-07T09:44:08.396Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/b577c3c8c265fca808a05754722499307ad75408 b/public/blurhashes/b577c3c8c265fca808a05754722499307ad75408
new file mode 100644
index 0000000..76fa904
--- /dev/null
+++ b/public/blurhashes/b577c3c8c265fca808a05754722499307ad75408
@@ -0,0 +1 @@
+{"value":"UAAw6foI00WGwXfRNjfP02a#~oj?tpa#ePoJ","type":"String","created":"2024-05-07T09:44:08.687Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/bc40222d02b68731943501b10df8bc8aac4db30a b/public/blurhashes/bc40222d02b68731943501b10df8bc8aac4db30a
new file mode 100644
index 0000000..5b5471c
--- /dev/null
+++ b/public/blurhashes/bc40222d02b68731943501b10df8bc8aac4db30a
@@ -0,0 +1 @@
+{"value":"U45sA^vL4nEyQq*JRPH@D$a1%#X8_3rrE1NG","type":"String","created":"2024-05-07T09:44:02.072Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/bf2bb54ba0102d621c13aa2ace713869e88fbc1f b/public/blurhashes/bf2bb54ba0102d621c13aa2ace713869e88fbc1f
new file mode 100644
index 0000000..13b8ccc
--- /dev/null
+++ b/public/blurhashes/bf2bb54ba0102d621c13aa2ace713869e88fbc1f
@@ -0,0 +1 @@
+{"value":"UGID{l5G9aE106?b~Vnh?aX8I]kXWB?GNxkW","type":"String","created":"2024-05-07T09:42:22.416Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/c711d6f710de699e17fecbd5a6001911ae1147eb b/public/blurhashes/c711d6f710de699e17fecbd5a6001911ae1147eb
new file mode 100644
index 0000000..2facbc5
--- /dev/null
+++ b/public/blurhashes/c711d6f710de699e17fecbd5a6001911ae1147eb
@@ -0,0 +1 @@
+{"value":"U5BUn4AC00^6D1#.8{KN62W;;iV[M1bu.7Vt","type":"String","created":"2024-05-07T09:42:40.309Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/c7a97b72fa435d784e2429ed6f6a13976ba55d8b b/public/blurhashes/c7a97b72fa435d784e2429ed6f6a13976ba55d8b
new file mode 100644
index 0000000..bd6ed06
--- /dev/null
+++ b/public/blurhashes/c7a97b72fa435d784e2429ed6f6a13976ba55d8b
@@ -0,0 +1 @@
+{"value":"U62?aIV;tAacyGk8o$awR3o#o~awV?kDo#ax","type":"String","created":"2024-07-19T06:57:38.838Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/ca27f30bd4dbfbb12d39dc46131f0ddbd969e54b b/public/blurhashes/ca27f30bd4dbfbb12d39dc46131f0ddbd969e54b
new file mode 100644
index 0000000..c290e76
--- /dev/null
+++ b/public/blurhashes/ca27f30bd4dbfbb12d39dc46131f0ddbd969e54b
@@ -0,0 +1 @@
+{"value":"UMIOb0aK00o#-;aeM{kC00bc~qaK9Yoz%MV@","type":"String","created":"2024-05-07T09:44:08.217Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/d0a434fa464ad24d34603d28bd3234ffaefca396 b/public/blurhashes/d0a434fa464ad24d34603d28bd3234ffaefca396
new file mode 100644
index 0000000..a41a509
--- /dev/null
+++ b/public/blurhashes/d0a434fa464ad24d34603d28bd3234ffaefca396
@@ -0,0 +1 @@
+{"value":"UrJ8IotRR*IU~qWAM{IUf+RjWAfkRjj[RPs:","type":"String","created":"2024-05-07T09:44:15.490Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/d0c03092431f6ce57961fa6f8433394160533ba9 b/public/blurhashes/d0c03092431f6ce57961fa6f8433394160533ba9
new file mode 100644
index 0000000..bd24b96
--- /dev/null
+++ b/public/blurhashes/d0c03092431f6ce57961fa6f8433394160533ba9
@@ -0,0 +1 @@
+{"value":"U45E4{}S#lNxR+WXazoL0g1hK5w]xZsmoKR+","type":"String","created":"2024-05-07T09:43:55.639Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/d2d1d2d82737d867d752d891ae354261a421a584 b/public/blurhashes/d2d1d2d82737d867d752d891ae354261a421a584
new file mode 100644
index 0000000..50f9051
--- /dev/null
+++ b/public/blurhashes/d2d1d2d82737d867d752d891ae354261a421a584
@@ -0,0 +1 @@
+{"value":"UCG,2~+F002v1u+s=~5rnTV?Khrs~DIp9?-U","type":"String","created":"2024-05-07T09:43:54.275Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/d47cdb3dd19f857a4a8544a0f3ed1d970fa072c1 b/public/blurhashes/d47cdb3dd19f857a4a8544a0f3ed1d970fa072c1
new file mode 100644
index 0000000..b0fdb6c
--- /dev/null
+++ b/public/blurhashes/d47cdb3dd19f857a4a8544a0f3ed1d970fa072c1
@@ -0,0 +1 @@
+{"value":"UbJ@,moa4@jZ#gfRE8ax9bjbs+bIyGWExXof","type":"String","created":"2024-07-19T06:57:39.216Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/d7fd7af348c203c80de2eed8d836bfac40d6865d b/public/blurhashes/d7fd7af348c203c80de2eed8d836bfac40d6865d
new file mode 100644
index 0000000..0c19031
--- /dev/null
+++ b/public/blurhashes/d7fd7af348c203c80de2eed8d836bfac40d6865d
@@ -0,0 +1 @@
+{"value":"UAK1:x}q000$E2^jRj0f00T0~W#*^*EONG=s","type":"String","created":"2024-05-07T09:44:09.360Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/dbc56cbd4dad0d30c58c16f8713fa35d10b4ae05 b/public/blurhashes/dbc56cbd4dad0d30c58c16f8713fa35d10b4ae05
new file mode 100644
index 0000000..bbcdd40
--- /dev/null
+++ b/public/blurhashes/dbc56cbd4dad0d30c58c16f8713fa35d10b4ae05
@@ -0,0 +1 @@
+{"value":"UaK-tb~q4mM{S%%Lt7WC00Mx-:t7-qNGRPxu","type":"String","created":"2024-07-19T06:57:39.684Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/e0358d0e52ea0bd89d81bd451a6b60e673bd2a45 b/public/blurhashes/e0358d0e52ea0bd89d81bd451a6b60e673bd2a45
new file mode 100644
index 0000000..fb5bd6d
--- /dev/null
+++ b/public/blurhashes/e0358d0e52ea0bd89d81bd451a6b60e673bd2a45
@@ -0,0 +1 @@
+{"value":"UkPa4.~C9tW;kpxaWBWVRPNGofj[x]jZbHay","type":"String","created":"2024-05-07T09:44:00.736Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/f1e9400cf6651779536f3556d9a1d2de72f88c4d b/public/blurhashes/f1e9400cf6651779536f3556d9a1d2de72f88c4d
new file mode 100644
index 0000000..cfbfa57
--- /dev/null
+++ b/public/blurhashes/f1e9400cf6651779536f3556d9a1d2de72f88c4d
@@ -0,0 +1 @@
+{"value":"U9Gv6J0J00Sbt8WFR+ag00^,_4sEITxVxskS","type":"String","created":"2024-05-07T09:44:10.321Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/f8e84e0fc313b39d2bfd86a5c456aa374e6524e1 b/public/blurhashes/f8e84e0fc313b39d2bfd86a5c456aa374e6524e1
new file mode 100644
index 0000000..86881f9
--- /dev/null
+++ b/public/blurhashes/f8e84e0fc313b39d2bfd86a5c456aa374e6524e1
@@ -0,0 +1 @@
+{"value":"UCCPbR9a57~BR5NLE2={aJj?R*t7Ipad-oIo","type":"String","created":"2024-05-07T09:43:22.499Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/fb9cdad0791780a7b0fc90da4fb1ffde0149b6f3 b/public/blurhashes/fb9cdad0791780a7b0fc90da4fb1ffde0149b6f3
new file mode 100644
index 0000000..76585eb
--- /dev/null
+++ b/public/blurhashes/fb9cdad0791780a7b0fc90da4fb1ffde0149b6f3
@@ -0,0 +1 @@
+{"value":"UAA]]O9F00~q,n-;58IA9FRi^,M{F3V@v|x]","type":"String","created":"2024-05-07T09:43:02.883Z","ttl":0}
\ No newline at end of file
diff --git a/public/blurhashes/fc41715dc3ff176061e876f0ae53cb6d21e0d899 b/public/blurhashes/fc41715dc3ff176061e876f0ae53cb6d21e0d899
new file mode 100644
index 0000000..55620ba
--- /dev/null
+++ b/public/blurhashes/fc41715dc3ff176061e876f0ae53cb6d21e0d899
@@ -0,0 +1 @@
+{"value":"U10KR$ksZfgNlBf-e-f+Ubf4lBeSY+aIg5em","type":"String","created":"2024-05-07T09:43:55.263Z","ttl":0}
\ No newline at end of file
diff --git a/public/favicon/android-chrome-192x192.png b/public/favicon/android-chrome-192x192.png
index d77c04e..2170383 100644
Binary files a/public/favicon/android-chrome-192x192.png and b/public/favicon/android-chrome-192x192.png differ
diff --git a/public/favicon/android-chrome-512x512.png b/public/favicon/android-chrome-512x512.png
index 07e3d5b..03bdfb8 100644
Binary files a/public/favicon/android-chrome-512x512.png and b/public/favicon/android-chrome-512x512.png differ
diff --git a/public/favicon/apple-touch-icon.png b/public/favicon/apple-touch-icon.png
index 250c119..c5df11a 100644
Binary files a/public/favicon/apple-touch-icon.png and b/public/favicon/apple-touch-icon.png differ
diff --git a/public/favicon/browserconfig.xml b/public/favicon/browserconfig.xml
index 2203e23..b3930d0 100644
--- a/public/favicon/browserconfig.xml
+++ b/public/favicon/browserconfig.xml
@@ -3,7 +3,7 @@
- #4d25ef
+ #da532c
diff --git a/public/favicon/favicon-16x16.png b/public/favicon/favicon-16x16.png
index eca475d..bb9d28f 100644
Binary files a/public/favicon/favicon-16x16.png and b/public/favicon/favicon-16x16.png differ
diff --git a/public/favicon/favicon-32x32.png b/public/favicon/favicon-32x32.png
index bda1044..db61d7d 100644
Binary files a/public/favicon/favicon-32x32.png and b/public/favicon/favicon-32x32.png differ
diff --git a/public/favicon/favicon.ico b/public/favicon/favicon.ico
index 01f5121..9cccf51 100644
Binary files a/public/favicon/favicon.ico and b/public/favicon/favicon.ico differ
diff --git a/public/favicon/mstile-144x144.png b/public/favicon/mstile-144x144.png
index a3a0259..dcad0e6 100644
Binary files a/public/favicon/mstile-144x144.png and b/public/favicon/mstile-144x144.png differ
diff --git a/public/favicon/mstile-150x150.png b/public/favicon/mstile-150x150.png
index 0673b5b..b236b52 100644
Binary files a/public/favicon/mstile-150x150.png and b/public/favicon/mstile-150x150.png differ
diff --git a/public/favicon/mstile-310x150.png b/public/favicon/mstile-310x150.png
index 19125d7..c44e49d 100644
Binary files a/public/favicon/mstile-310x150.png and b/public/favicon/mstile-310x150.png differ
diff --git a/public/favicon/mstile-310x310.png b/public/favicon/mstile-310x310.png
index 762e4fa..aea40e9 100644
Binary files a/public/favicon/mstile-310x310.png and b/public/favicon/mstile-310x310.png differ
diff --git a/public/favicon/mstile-70x70.png b/public/favicon/mstile-70x70.png
index 2633c42..3610119 100644
Binary files a/public/favicon/mstile-70x70.png and b/public/favicon/mstile-70x70.png differ
diff --git a/public/favicon/safari-pinned-tab.svg b/public/favicon/safari-pinned-tab.svg
index 0078384..c89af0b 100644
--- a/public/favicon/safari-pinned-tab.svg
+++ b/public/favicon/safari-pinned-tab.svg
@@ -9,26 +9,30 @@ Created by potrace 1.14, written by Peter Selinger 2001-2017
-
+
diff --git a/scripts/prepareProject.js b/scripts/prepareProject.js
index b94b37e..dd5f341 100644
--- a/scripts/prepareProject.js
+++ b/scripts/prepareProject.js
@@ -7,6 +7,8 @@ const StoryblokClient = require("storyblok-js-client");
const { v4: uuidv4 } = require("uuid");
const jsonpointer = require("jsonpointer");
const designSystemPresets = require("@kickstartds/ds-agency-premium/presets.json");
+const ffprobe = require("ffprobe");
+const ffprobeStatic = require("ffprobe-static");
const generatedComponents = require("../cms/components.123456.json");
const initialStory = require("../resources/story.json");
const ffprobe = require("ffprobe");
@@ -73,6 +75,7 @@ const signedUpload = async (fileName, assetFolderId) => {
asset_folder_id: assetFolderId || null,
}
);
+
await upload(
assetResponse.data,
"./node_modules/@kickstartds/ds-agency-premium/dist/static/" + fileName
diff --git a/token/branding-token.json b/token/branding-token.json
index bfa5002..4afc603 100644
--- a/token/branding-token.json
+++ b/token/branding-token.json
@@ -1,15 +1,15 @@
{
"color": {
- "primary": "#e21879",
- "primary-inverted": "#4d25ef",
- "secondary": "#4d25ef",
- "secondary-inverted": "#e21879",
- "background": "#06081F",
- "background-inverted": "#f1f1f3",
- "foreground": "#fff",
- "foreground-inverted": "#06081f",
- "link": "#B7A5FF",
- "link-inverted": "#6642F6",
+ "primary": "#028093",
+ "primary-inverted": "#6FD2D2",
+ "secondary": "#6FD2D2",
+ "secondary-inverted": "#028093",
+ "background": "#fff",
+ "background-inverted": "#003259",
+ "foreground": "#023668",
+ "foreground-inverted": "#fff",
+ "link": "#023668",
+ "link-inverted": "#fff",
"positive": "#6EDB64",
"positive-inverted": "#23831B",
"informative": "#64C2DB",
@@ -21,39 +21,37 @@
},
"font": {
"display": {
- "family": "Fredoka, Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif",
- "font-size": 20,
- "line-height": 1.15,
- "scale-ratio": 1.225,
+ "family": "'NovelPro', Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif",
+ "font-size": 18,
+ "line-height": 1.25,
+ "scale-ratio": 1.275,
"bp-factor": {
- "phone": 1.125,
- "tablet": 1.25,
- "laptop": 1.5,
- "desktop": 1.75
+ "phone": 1.25,
+ "tablet": 1.35
}
},
"copy": {
- "family": "Mulish, 'Helvetica Neue', Helvetica, Arial, sans-serif",
+ "family": "'NovelSansPro', 'Helvetica Neue', Helvetica, Arial, sans-serif",
"font-size": 18,
- "line-height": 1.5,
+ "line-height": 1.35,
"scale-ratio": 1.225,
"bp-factor": {
"tablet": 1.125
}
},
"interface": {
- "family": "Mulish, system-ui, -apple-system, BlinkMacSystemFont, 'Avenir Next', 'Avenir', 'Segoe UI', 'Lucida Grande', 'Helvetica Neue', 'Helvetica', 'Fira Sans', 'Roboto', 'Noto', 'Droid Sans', 'Cantarell', 'Oxygen', 'Ubuntu', 'Franklin Gothic Medium', 'Century Gothic', 'Liberation Sans', sans-serif",
+ "family": "'NovelSansPro', system-ui, -apple-system, BlinkMacSystemFont, 'Avenir Next', 'Avenir', 'Segoe UI', 'Lucida Grande', 'Helvetica Neue', 'Helvetica', 'Fira Sans', 'Roboto', 'Noto', 'Droid Sans', 'Cantarell', 'Oxygen', 'Ubuntu', 'Franklin Gothic Medium', 'Century Gothic', 'Liberation Sans', sans-serif",
"font-size": 16,
- "line-height": 1.5,
- "scale-ratio": 1.225,
+ "line-height": 1.35,
+ "scale-ratio": 1.125,
"bp-factor": {
"tablet": 1.125
}
},
"mono": {
"family": "ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace",
- "font-size": 18,
- "line-height": 1.5,
+ "font-size": 16,
+ "line-height": 1.35,
"scale-ratio": 1.225,
"bp-factor": {
"tablet": 1.125
@@ -63,15 +61,15 @@
"font-weight": {
"light": 300,
"regular": 400,
- "semi-bold": 600,
+ "semi-bold": 500,
"bold": 700
},
"spacing": {
- "base": 12,
- "scale-ratio": 1.45,
- "bp-ratio": 1.25
+ "base": 8,
+ "scale-ratio": 1.5,
+ "bp-ratio": 1.35
},
- "border-radius": "16px",
+ "border-radius": "4px",
"box-shadow": {
"blur": "2.75px"
},
diff --git a/token/dictionary/background-color.json b/token/dictionary/background-color.json
index 43ff4e1..58396e0 100644
--- a/token/dictionary/background-color.json
+++ b/token/dictionary/background-color.json
@@ -229,7 +229,7 @@
},
"hover": {
"base": {
- "value": "{ks.color.fg.alpha.6.base}",
+ "value": "{ks.color.fg.alpha.7.base}",
"attributes": {
"category": "color"
},
@@ -301,7 +301,7 @@
},
"hover": {
"base": {
- "value": "{ks.color.fg-inverted.alpha.6.base}",
+ "value": "{ks.color.fg-inverted.alpha.7.base}",
"attributes": {
"category": "color"
},
diff --git a/token/dictionary/border-color.json b/token/dictionary/border-color.json
index ccab5bb..5d41581 100644
--- a/token/dictionary/border-color.json
+++ b/token/dictionary/border-color.json
@@ -326,7 +326,7 @@
},
"interactive": {
"base": {
- "value": "{ks.color.fg.alpha.9.base}",
+ "value": "{ks.color.fg.alpha.7.base}",
"attributes": {
"category": "color"
},
@@ -349,7 +349,7 @@
},
"hover": {
"base": {
- "value": "{ks.color.fg.alpha.7.base}",
+ "value": "{ks.color.fg.alpha.5.base}",
"attributes": {
"category": "color"
},
@@ -361,7 +361,7 @@
},
"active": {
"base": {
- "value": "{ks.color.fg.alpha.7.base}",
+ "value": "{ks.color.fg.alpha.3.base}",
"attributes": {
"category": "color"
},
@@ -398,7 +398,7 @@
},
"interactive": {
"base": {
- "value": "{ks.color.fg-inverted.alpha.9.base}",
+ "value": "{ks.color.fg-inverted.alpha.5.base}",
"attributes": {
"category": "color"
},
@@ -421,7 +421,7 @@
},
"hover": {
"base": {
- "value": "{ks.color.fg-inverted.alpha.7.base}",
+ "value": "{ks.color.fg-inverted.alpha.3.base}",
"attributes": {
"category": "color"
},
@@ -433,7 +433,7 @@
},
"active": {
"base": {
- "value": "{ks.color.fg-inverted.alpha.7.base}",
+ "value": "{ks.color.fg-inverted.alpha.1.base}",
"attributes": {
"category": "color"
},
@@ -1323,4 +1323,4 @@
}
}
}
-}
+}
\ No newline at end of file
diff --git a/token/dictionary/border.json b/token/dictionary/border.json
index 4b04357..aa63633 100644
--- a/token/dictionary/border.json
+++ b/token/dictionary/border.json
@@ -10,21 +10,21 @@
},
"border-radius": {
"control": {
- "value": "16px",
+ "value": "4px",
"token": {
"category": "Border Radius",
"presenter": "BorderRadius"
}
},
"card": {
- "value": "16px",
+ "value": "8px",
"token": {
"category": "Border Radius",
"presenter": "BorderRadius"
}
},
"surface": {
- "value": "32px",
+ "value": "16px",
"token": {
"category": "Border Radius",
"presenter": "BorderRadius"
@@ -46,4 +46,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/token/dictionary/box-shadow.json b/token/dictionary/box-shadow.json
index db5706d..3224f67 100644
--- a/token/dictionary/box-shadow.json
+++ b/token/dictionary/box-shadow.json
@@ -54,50 +54,50 @@
"color": {
"control": {
"_": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.control._})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.control._})"
},
"hover": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.control.hover})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.control.hover})"
}
},
"control-inverted": {
"_": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.control-inverted._})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.control-inverted._})"
},
"hover": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.control-inverted.hover})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.control-inverted.hover})"
}
},
"card": {
"_": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.card._})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.card._})"
},
"hover": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.card.hover})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.card.hover})"
}
},
"card-inverted": {
"_": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.card-inverted._})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.card-inverted._})"
},
"hover": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.card-inverted.hover})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.card-inverted.hover})"
}
},
"surface": {
"_": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.surface._})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.surface._})"
},
"hover": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.surface.hover})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.surface.hover})"
}
},
"surface-inverted": {
"_": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.surface-inverted._})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.surface-inverted._})"
},
"hover": {
- "value": "rgba(255,255,255,{ks.box-shadow.opacity.surface-inverted.hover})"
+ "value": "rgba(2,54,104,{ks.box-shadow.opacity.surface-inverted.hover})"
}
}
},
diff --git a/token/dictionary/color.json b/token/dictionary/color.json
index 12cf7f5..a90fb27 100644
--- a/token/dictionary/color.json
+++ b/token/dictionary/color.json
@@ -4,9 +4,9 @@
"fg": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -21,9 +21,9 @@
"1": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.95
},
"attributes": {
@@ -38,9 +38,9 @@
"2": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.87
},
"attributes": {
@@ -55,9 +55,9 @@
"3": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.76
},
"attributes": {
@@ -72,9 +72,9 @@
"4": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.63
},
"attributes": {
@@ -89,9 +89,9 @@
"5": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.5
},
"attributes": {
@@ -106,9 +106,9 @@
"6": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.37
},
"attributes": {
@@ -123,9 +123,9 @@
"7": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.24
},
"attributes": {
@@ -140,9 +140,9 @@
"8": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.13
},
"attributes": {
@@ -157,9 +157,9 @@
"9": {
"base": {
"value": {
- "r": 255,
- "g": 255,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.05
},
"attributes": {
@@ -176,9 +176,9 @@
"1": {
"base": {
"value": {
- "r": 243,
- "g": 243,
- "b": 244,
+ "r": 15,
+ "g": 64,
+ "b": 112,
"a": 1
},
"attributes": {
@@ -193,9 +193,9 @@
"2": {
"base": {
"value": {
- "r": 223,
- "g": 223,
- "b": 226,
+ "r": 35,
+ "g": 80,
+ "b": 124,
"a": 1
},
"attributes": {
@@ -210,9 +210,9 @@
"3": {
"base": {
"value": {
- "r": 195,
- "g": 196,
- "b": 201,
+ "r": 63,
+ "g": 102,
+ "b": 140,
"a": 1
},
"attributes": {
@@ -227,9 +227,9 @@
"4": {
"base": {
"value": {
- "r": 163,
- "g": 164,
- "b": 172,
+ "r": 96,
+ "g": 128,
+ "b": 160,
"a": 1
},
"attributes": {
@@ -244,9 +244,9 @@
"5": {
"base": {
"value": {
- "r": 131,
- "g": 132,
- "b": 143,
+ "r": 129,
+ "g": 155,
+ "b": 180,
"a": 1
},
"attributes": {
@@ -261,9 +261,9 @@
"6": {
"base": {
"value": {
- "r": 98,
- "g": 99,
- "b": 114,
+ "r": 161,
+ "g": 181,
+ "b": 199,
"a": 1
},
"attributes": {
@@ -278,9 +278,9 @@
"7": {
"base": {
"value": {
- "r": 66,
- "g": 67,
- "b": 85,
+ "r": 194,
+ "g": 207,
+ "b": 219,
"a": 1
},
"attributes": {
@@ -295,9 +295,9 @@
"8": {
"base": {
"value": {
- "r": 38,
- "g": 40,
- "b": 60,
+ "r": 222,
+ "g": 229,
+ "b": 235,
"a": 1
},
"attributes": {
@@ -312,9 +312,9 @@
"9": {
"base": {
"value": {
- "r": 18,
- "g": 20,
- "b": 42,
+ "r": 242,
+ "g": 245,
+ "b": 247,
"a": 1
},
"attributes": {
@@ -331,9 +331,9 @@
"fg-inverted": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -348,9 +348,9 @@
"1": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.95
},
"attributes": {
@@ -365,9 +365,9 @@
"2": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.87
},
"attributes": {
@@ -382,9 +382,9 @@
"3": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.76
},
"attributes": {
@@ -399,9 +399,9 @@
"4": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.63
},
"attributes": {
@@ -416,9 +416,9 @@
"5": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.5
},
"attributes": {
@@ -433,9 +433,9 @@
"6": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.37
},
"attributes": {
@@ -450,9 +450,9 @@
"7": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.24
},
"attributes": {
@@ -467,9 +467,9 @@
"8": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.13
},
"attributes": {
@@ -484,9 +484,9 @@
"9": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.05
},
"attributes": {
@@ -503,9 +503,9 @@
"1": {
"base": {
"value": {
- "r": 18,
- "g": 20,
- "b": 42,
+ "r": 242,
+ "g": 245,
+ "b": 247,
"a": 1
},
"attributes": {
@@ -520,9 +520,9 @@
"2": {
"base": {
"value": {
- "r": 37,
- "g": 38,
- "b": 59,
+ "r": 222,
+ "g": 228,
+ "b": 233,
"a": 1
},
"attributes": {
@@ -537,9 +537,9 @@
"3": {
"base": {
"value": {
- "r": 62,
- "g": 64,
- "b": 82,
+ "r": 194,
+ "g": 206,
+ "b": 215,
"a": 1
},
"attributes": {
@@ -554,9 +554,9 @@
"4": {
"base": {
"value": {
- "r": 93,
- "g": 94,
- "b": 109,
+ "r": 161,
+ "g": 179,
+ "b": 194,
"a": 1
},
"attributes": {
@@ -571,9 +571,9 @@
"5": {
"base": {
"value": {
- "r": 124,
- "g": 125,
- "b": 137,
+ "r": 128,
+ "g": 153,
+ "b": 172,
"a": 1
},
"attributes": {
@@ -588,9 +588,9 @@
"6": {
"base": {
"value": {
- "r": 154,
- "g": 155,
- "b": 165,
+ "r": 94,
+ "g": 126,
+ "b": 150,
"a": 1
},
"attributes": {
@@ -605,9 +605,9 @@
"7": {
"base": {
"value": {
- "r": 185,
- "g": 185,
- "b": 192,
+ "r": 61,
+ "g": 99,
+ "b": 129,
"a": 1
},
"attributes": {
@@ -622,9 +622,9 @@
"8": {
"base": {
"value": {
- "r": 210,
- "g": 211,
- "b": 215,
+ "r": 33,
+ "g": 77,
+ "b": 111,
"a": 1
},
"attributes": {
@@ -639,9 +639,9 @@
"9": {
"base": {
"value": {
- "r": 229,
- "g": 229,
- "b": 232,
+ "r": 13,
+ "g": 60,
+ "b": 97,
"a": 1
},
"attributes": {
@@ -658,9 +658,9 @@
"bg": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -675,9 +675,9 @@
"1": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.95
},
"attributes": {
@@ -692,9 +692,9 @@
"2": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.87
},
"attributes": {
@@ -709,9 +709,9 @@
"3": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.76
},
"attributes": {
@@ -726,9 +726,9 @@
"4": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.63
},
"attributes": {
@@ -743,9 +743,9 @@
"5": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.5
},
"attributes": {
@@ -760,9 +760,9 @@
"6": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.37
},
"attributes": {
@@ -777,9 +777,9 @@
"7": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.24
},
"attributes": {
@@ -794,9 +794,9 @@
"8": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.13
},
"attributes": {
@@ -811,9 +811,9 @@
"9": {
"base": {
"value": {
- "r": 6,
- "g": 8,
- "b": 31,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.05
},
"attributes": {
@@ -830,9 +830,9 @@
"1": {
"base": {
"value": {
- "r": 18,
- "g": 20,
- "b": 42,
+ "r": 242,
+ "g": 245,
+ "b": 247,
"a": 1
},
"attributes": {
@@ -847,9 +847,9 @@
"2": {
"base": {
"value": {
- "r": 38,
- "g": 40,
- "b": 60,
+ "r": 222,
+ "g": 229,
+ "b": 235,
"a": 1
},
"attributes": {
@@ -864,9 +864,9 @@
"3": {
"base": {
"value": {
- "r": 66,
- "g": 67,
- "b": 85,
+ "r": 194,
+ "g": 207,
+ "b": 219,
"a": 1
},
"attributes": {
@@ -881,9 +881,9 @@
"4": {
"base": {
"value": {
- "r": 98,
- "g": 99,
- "b": 114,
+ "r": 161,
+ "g": 181,
+ "b": 199,
"a": 1
},
"attributes": {
@@ -898,9 +898,9 @@
"5": {
"base": {
"value": {
- "r": 131,
- "g": 132,
- "b": 143,
+ "r": 129,
+ "g": 155,
+ "b": 180,
"a": 1
},
"attributes": {
@@ -915,9 +915,9 @@
"6": {
"base": {
"value": {
- "r": 163,
- "g": 164,
- "b": 172,
+ "r": 96,
+ "g": 128,
+ "b": 160,
"a": 1
},
"attributes": {
@@ -932,9 +932,9 @@
"7": {
"base": {
"value": {
- "r": 195,
- "g": 196,
- "b": 201,
+ "r": 63,
+ "g": 102,
+ "b": 140,
"a": 1
},
"attributes": {
@@ -949,9 +949,9 @@
"8": {
"base": {
"value": {
- "r": 223,
- "g": 223,
- "b": 226,
+ "r": 35,
+ "g": 80,
+ "b": 124,
"a": 1
},
"attributes": {
@@ -966,9 +966,9 @@
"9": {
"base": {
"value": {
- "r": 243,
- "g": 243,
- "b": 244,
+ "r": 15,
+ "g": 64,
+ "b": 112,
"a": 1
},
"attributes": {
@@ -985,9 +985,9 @@
"bg-inverted": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 1
},
"attributes": {
@@ -1002,9 +1002,9 @@
"1": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 0.95
},
"attributes": {
@@ -1019,9 +1019,9 @@
"2": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 0.87
},
"attributes": {
@@ -1036,9 +1036,9 @@
"3": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 0.76
},
"attributes": {
@@ -1053,9 +1053,9 @@
"4": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 0.63
},
"attributes": {
@@ -1070,9 +1070,9 @@
"5": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 0.5
},
"attributes": {
@@ -1087,9 +1087,9 @@
"6": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 0.37
},
"attributes": {
@@ -1104,9 +1104,9 @@
"7": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 0.24
},
"attributes": {
@@ -1121,9 +1121,9 @@
"8": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 0.13
},
"attributes": {
@@ -1138,9 +1138,9 @@
"9": {
"base": {
"value": {
- "r": 241,
- "g": 241,
- "b": 243,
+ "r": 0,
+ "g": 50,
+ "b": 89,
"a": 0.05
},
"attributes": {
@@ -1157,9 +1157,9 @@
"1": {
"base": {
"value": {
- "r": 229,
- "g": 229,
- "b": 232,
+ "r": 13,
+ "g": 60,
+ "b": 97,
"a": 1
},
"attributes": {
@@ -1174,9 +1174,9 @@
"2": {
"base": {
"value": {
- "r": 210,
- "g": 211,
- "b": 215,
+ "r": 33,
+ "g": 77,
+ "b": 111,
"a": 1
},
"attributes": {
@@ -1191,9 +1191,9 @@
"3": {
"base": {
"value": {
- "r": 185,
- "g": 185,
- "b": 192,
+ "r": 61,
+ "g": 99,
+ "b": 129,
"a": 1
},
"attributes": {
@@ -1208,9 +1208,9 @@
"4": {
"base": {
"value": {
- "r": 154,
- "g": 155,
- "b": 165,
+ "r": 94,
+ "g": 126,
+ "b": 150,
"a": 1
},
"attributes": {
@@ -1225,9 +1225,9 @@
"5": {
"base": {
"value": {
- "r": 124,
- "g": 125,
- "b": 137,
+ "r": 128,
+ "g": 153,
+ "b": 172,
"a": 1
},
"attributes": {
@@ -1242,9 +1242,9 @@
"6": {
"base": {
"value": {
- "r": 93,
- "g": 94,
- "b": 109,
+ "r": 161,
+ "g": 179,
+ "b": 194,
"a": 1
},
"attributes": {
@@ -1259,9 +1259,9 @@
"7": {
"base": {
"value": {
- "r": 62,
- "g": 64,
- "b": 82,
+ "r": 194,
+ "g": 206,
+ "b": 215,
"a": 1
},
"attributes": {
@@ -1276,9 +1276,9 @@
"8": {
"base": {
"value": {
- "r": 37,
- "g": 38,
- "b": 59,
+ "r": 222,
+ "g": 228,
+ "b": 233,
"a": 1
},
"attributes": {
@@ -1293,9 +1293,9 @@
"9": {
"base": {
"value": {
- "r": 18,
- "g": 20,
- "b": 42,
+ "r": 242,
+ "g": 245,
+ "b": 247,
"a": 1
},
"attributes": {
@@ -1329,9 +1329,9 @@
"primary": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 1
},
"attributes": {
@@ -1346,9 +1346,9 @@
"1": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.95
},
"attributes": {
@@ -1363,9 +1363,9 @@
"2": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.87
},
"attributes": {
@@ -1380,9 +1380,9 @@
"3": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.76
},
"attributes": {
@@ -1397,9 +1397,9 @@
"4": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.63
},
"attributes": {
@@ -1414,9 +1414,9 @@
"5": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.5
},
"attributes": {
@@ -1431,9 +1431,9 @@
"6": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.37
},
"attributes": {
@@ -1448,9 +1448,9 @@
"7": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.24
},
"attributes": {
@@ -1465,9 +1465,9 @@
"8": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.13
},
"attributes": {
@@ -1482,9 +1482,9 @@
"9": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.05
},
"attributes": {
@@ -1501,9 +1501,9 @@
"1": {
"base": {
"value": {
- "r": 215,
- "g": 23,
- "b": 117,
+ "r": 15,
+ "g": 134,
+ "b": 152,
"a": 1
},
"attributes": {
@@ -1518,9 +1518,9 @@
"2": {
"base": {
"value": {
- "r": 197,
- "g": 22,
- "b": 109,
+ "r": 35,
+ "g": 145,
+ "b": 161,
"a": 1
},
"attributes": {
@@ -1535,9 +1535,9 @@
"3": {
"base": {
"value": {
- "r": 173,
- "g": 20,
- "b": 99,
+ "r": 63,
+ "g": 158,
+ "b": 173,
"a": 1
},
"attributes": {
@@ -1552,9 +1552,9 @@
"4": {
"base": {
"value": {
- "r": 145,
- "g": 18,
- "b": 88,
+ "r": 96,
+ "g": 175,
+ "b": 187,
"a": 1
},
"attributes": {
@@ -1569,9 +1569,9 @@
"5": {
"base": {
"value": {
- "r": 116,
- "g": 16,
- "b": 76,
+ "r": 129,
+ "g": 192,
+ "b": 201,
"a": 1
},
"attributes": {
@@ -1586,9 +1586,9 @@
"6": {
"base": {
"value": {
- "r": 87,
- "g": 14,
- "b": 64,
+ "r": 161,
+ "g": 208,
+ "b": 215,
"a": 1
},
"attributes": {
@@ -1603,9 +1603,9 @@
"7": {
"base": {
"value": {
- "r": 59,
- "g": 12,
- "b": 53,
+ "r": 194,
+ "g": 225,
+ "b": 229,
"a": 1
},
"attributes": {
@@ -1620,9 +1620,9 @@
"8": {
"base": {
"value": {
- "r": 35,
- "g": 10,
- "b": 43,
+ "r": 222,
+ "g": 238,
+ "b": 241,
"a": 1
},
"attributes": {
@@ -1637,9 +1637,9 @@
"9": {
"base": {
"value": {
- "r": 17,
- "g": 9,
- "b": 36,
+ "r": 242,
+ "g": 249,
+ "b": 250,
"a": 1
},
"attributes": {
@@ -1656,9 +1656,9 @@
"1": {
"base": {
"value": {
- "r": 227,
- "g": 36,
- "b": 128,
+ "r": 2,
+ "g": 124,
+ "b": 145,
"a": 1
},
"attributes": {
@@ -1673,9 +1673,9 @@
"2": {
"base": {
"value": {
- "r": 230,
- "g": 54,
- "b": 138,
+ "r": 2,
+ "g": 118,
+ "b": 141,
"a": 1
},
"attributes": {
@@ -1690,9 +1690,9 @@
"3": {
"base": {
"value": {
- "r": 233,
- "g": 79,
- "b": 153,
+ "r": 2,
+ "g": 110,
+ "b": 137,
"a": 1
},
"attributes": {
@@ -1707,9 +1707,9 @@
"4": {
"base": {
"value": {
- "r": 237,
- "g": 109,
- "b": 171,
+ "r": 2,
+ "g": 101,
+ "b": 131,
"a": 1
},
"attributes": {
@@ -1724,9 +1724,9 @@
"5": {
"base": {
"value": {
- "r": 241,
- "g": 140,
- "b": 188,
+ "r": 2,
+ "g": 91,
+ "b": 126,
"a": 1
},
"attributes": {
@@ -1741,9 +1741,9 @@
"6": {
"base": {
"value": {
- "r": 244,
- "g": 170,
- "b": 205,
+ "r": 2,
+ "g": 81,
+ "b": 120,
"a": 1
},
"attributes": {
@@ -1758,9 +1758,9 @@
"7": {
"base": {
"value": {
- "r": 248,
- "g": 200,
- "b": 223,
+ "r": 2,
+ "g": 72,
+ "b": 114,
"a": 1
},
"attributes": {
@@ -1775,9 +1775,9 @@
"8": {
"base": {
"value": {
- "r": 251,
- "g": 225,
- "b": 238,
+ "r": 2,
+ "g": 64,
+ "b": 110,
"a": 1
},
"attributes": {
@@ -1792,9 +1792,9 @@
"9": {
"base": {
"value": {
- "r": 254,
- "g": 243,
- "b": 248,
+ "r": 2,
+ "g": 58,
+ "b": 106,
"a": 1
},
"attributes": {
@@ -1811,9 +1811,9 @@
"primary-inverted": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 1
},
"attributes": {
@@ -1828,9 +1828,9 @@
"1": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.95
},
"attributes": {
@@ -1845,9 +1845,9 @@
"2": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.87
},
"attributes": {
@@ -1862,9 +1862,9 @@
"3": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.76
},
"attributes": {
@@ -1879,9 +1879,9 @@
"4": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.63
},
"attributes": {
@@ -1896,9 +1896,9 @@
"5": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.5
},
"attributes": {
@@ -1913,9 +1913,9 @@
"6": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.37
},
"attributes": {
@@ -1930,9 +1930,9 @@
"7": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.24
},
"attributes": {
@@ -1947,9 +1947,9 @@
"8": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.13
},
"attributes": {
@@ -1964,9 +1964,9 @@
"9": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.05
},
"attributes": {
@@ -1983,9 +1983,9 @@
"1": {
"base": {
"value": {
- "r": 85,
- "g": 47,
- "b": 239,
+ "r": 105,
+ "g": 202,
+ "b": 204,
"a": 1
},
"attributes": {
@@ -2000,9 +2000,9 @@
"2": {
"base": {
"value": {
- "r": 98,
- "g": 64,
- "b": 240,
+ "r": 97,
+ "g": 189,
+ "b": 194,
"a": 1
},
"attributes": {
@@ -2017,9 +2017,9 @@
"3": {
"base": {
"value": {
- "r": 116,
- "g": 86,
- "b": 240,
+ "r": 84,
+ "g": 172,
+ "b": 181,
"a": 1
},
"attributes": {
@@ -2034,9 +2034,9 @@
"4": {
"base": {
"value": {
- "r": 138,
- "g": 112,
- "b": 240,
+ "r": 70,
+ "g": 151,
+ "b": 165,
"a": 1
},
"attributes": {
@@ -2051,9 +2051,9 @@
"5": {
"base": {
"value": {
- "r": 159,
- "g": 139,
- "b": 241,
+ "r": 56,
+ "g": 130,
+ "b": 150,
"a": 1
},
"attributes": {
@@ -2068,9 +2068,9 @@
"6": {
"base": {
"value": {
- "r": 180,
- "g": 166,
- "b": 242,
+ "r": 41,
+ "g": 109,
+ "b": 134,
"a": 1
},
"attributes": {
@@ -2085,9 +2085,9 @@
"7": {
"base": {
"value": {
- "r": 202,
- "g": 192,
- "b": 242,
+ "r": 27,
+ "g": 88,
+ "b": 118,
"a": 1
},
"attributes": {
@@ -2102,9 +2102,9 @@
"8": {
"base": {
"value": {
- "r": 220,
- "g": 214,
- "b": 242,
+ "r": 14,
+ "g": 71,
+ "b": 105,
"a": 1
},
"attributes": {
@@ -2119,9 +2119,9 @@
"9": {
"base": {
"value": {
- "r": 233,
- "g": 231,
- "b": 243,
+ "r": 6,
+ "g": 58,
+ "b": 95,
"a": 1
},
"attributes": {
@@ -2138,9 +2138,9 @@
"1": {
"base": {
"value": {
- "r": 73,
- "g": 36,
- "b": 229,
+ "r": 118,
+ "g": 212,
+ "b": 212,
"a": 1
},
"attributes": {
@@ -2155,9 +2155,9 @@
"2": {
"base": {
"value": {
- "r": 68,
- "g": 33,
- "b": 212,
+ "r": 130,
+ "g": 216,
+ "b": 216,
"a": 1
},
"attributes": {
@@ -2172,9 +2172,9 @@
"3": {
"base": {
"value": {
- "r": 60,
- "g": 30,
- "b": 189,
+ "r": 146,
+ "g": 221,
+ "b": 221,
"a": 1
},
"attributes": {
@@ -2189,9 +2189,9 @@
"4": {
"base": {
"value": {
- "r": 51,
- "g": 26,
- "b": 162,
+ "r": 164,
+ "g": 227,
+ "b": 227,
"a": 1
},
"attributes": {
@@ -2206,9 +2206,9 @@
"5": {
"base": {
"value": {
- "r": 42,
- "g": 23,
- "b": 135,
+ "r": 183,
+ "g": 233,
+ "b": 233,
"a": 1
},
"attributes": {
@@ -2223,9 +2223,9 @@
"6": {
"base": {
"value": {
- "r": 32,
- "g": 19,
- "b": 108,
+ "r": 202,
+ "g": 238,
+ "b": 238,
"a": 1
},
"attributes": {
@@ -2240,9 +2240,9 @@
"7": {
"base": {
"value": {
- "r": 23,
- "g": 15,
- "b": 81,
+ "r": 220,
+ "g": 244,
+ "b": 244,
"a": 1
},
"attributes": {
@@ -2257,9 +2257,9 @@
"8": {
"base": {
"value": {
- "r": 15,
- "g": 12,
- "b": 58,
+ "r": 236,
+ "g": 249,
+ "b": 249,
"a": 1
},
"attributes": {
@@ -2274,9 +2274,9 @@
"9": {
"base": {
"value": {
- "r": 10,
- "g": 9,
- "b": 41,
+ "r": 248,
+ "g": 253,
+ "b": 253,
"a": 1
},
"attributes": {
@@ -2293,9 +2293,9 @@
"link": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2310,9 +2310,9 @@
"1": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.95
},
"attributes": {
@@ -2327,9 +2327,9 @@
"2": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.87
},
"attributes": {
@@ -2344,9 +2344,9 @@
"3": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.76
},
"attributes": {
@@ -2361,9 +2361,9 @@
"4": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.63
},
"attributes": {
@@ -2378,9 +2378,9 @@
"5": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.5
},
"attributes": {
@@ -2395,9 +2395,9 @@
"6": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.37
},
"attributes": {
@@ -2412,9 +2412,9 @@
"7": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.24
},
"attributes": {
@@ -2429,9 +2429,9 @@
"8": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.13
},
"attributes": {
@@ -2446,9 +2446,9 @@
"9": {
"base": {
"value": {
- "r": 183,
- "g": 165,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 0.05
},
"attributes": {
@@ -2465,9 +2465,9 @@
"1": {
"base": {
"value": {
- "r": 174,
- "g": 157,
- "b": 244,
+ "r": 15,
+ "g": 64,
+ "b": 112,
"a": 1
},
"attributes": {
@@ -2482,9 +2482,9 @@
"2": {
"base": {
"value": {
- "r": 160,
- "g": 145,
- "b": 226,
+ "r": 35,
+ "g": 80,
+ "b": 124,
"a": 1
},
"attributes": {
@@ -2499,9 +2499,9 @@
"3": {
"base": {
"value": {
- "r": 141,
- "g": 127,
- "b": 201,
+ "r": 63,
+ "g": 102,
+ "b": 140,
"a": 1
},
"attributes": {
@@ -2516,9 +2516,9 @@
"4": {
"base": {
"value": {
- "r": 118,
- "g": 107,
- "b": 172,
+ "r": 96,
+ "g": 128,
+ "b": 160,
"a": 1
},
"attributes": {
@@ -2533,9 +2533,9 @@
"5": {
"base": {
"value": {
- "r": 95,
- "g": 87,
- "b": 143,
+ "r": 129,
+ "g": 155,
+ "b": 180,
"a": 1
},
"attributes": {
@@ -2550,9 +2550,9 @@
"6": {
"base": {
"value": {
- "r": 71,
- "g": 66,
- "b": 114,
+ "r": 161,
+ "g": 181,
+ "b": 199,
"a": 1
},
"attributes": {
@@ -2567,9 +2567,9 @@
"7": {
"base": {
"value": {
- "r": 48,
- "g": 46,
- "b": 85,
+ "r": 194,
+ "g": 207,
+ "b": 219,
"a": 1
},
"attributes": {
@@ -2584,9 +2584,9 @@
"8": {
"base": {
"value": {
- "r": 29,
- "g": 28,
- "b": 60,
+ "r": 222,
+ "g": 229,
+ "b": 235,
"a": 1
},
"attributes": {
@@ -2601,9 +2601,9 @@
"9": {
"base": {
"value": {
- "r": 15,
- "g": 16,
- "b": 42,
+ "r": 242,
+ "g": 245,
+ "b": 247,
"a": 1
},
"attributes": {
@@ -2620,9 +2620,9 @@
"1": {
"base": {
"value": {
- "r": 187,
- "g": 170,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2637,9 +2637,9 @@
"2": {
"base": {
"value": {
- "r": 192,
- "g": 177,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2654,9 +2654,9 @@
"3": {
"base": {
"value": {
- "r": 200,
- "g": 187,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2671,9 +2671,9 @@
"4": {
"base": {
"value": {
- "r": 210,
- "g": 198,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2688,9 +2688,9 @@
"5": {
"base": {
"value": {
- "r": 219,
- "g": 210,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2705,9 +2705,9 @@
"6": {
"base": {
"value": {
- "r": 228,
- "g": 222,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2722,9 +2722,9 @@
"7": {
"base": {
"value": {
- "r": 238,
- "g": 233,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2739,9 +2739,9 @@
"8": {
"base": {
"value": {
- "r": 246,
- "g": 243,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2756,9 +2756,9 @@
"9": {
"base": {
"value": {
- "r": 251,
- "g": 251,
- "b": 255,
+ "r": 2,
+ "g": 54,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -2775,9 +2775,9 @@
"link-inverted": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -2792,9 +2792,9 @@
"1": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.95
},
"attributes": {
@@ -2809,9 +2809,9 @@
"2": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.87
},
"attributes": {
@@ -2826,9 +2826,9 @@
"3": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.76
},
"attributes": {
@@ -2843,9 +2843,9 @@
"4": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.63
},
"attributes": {
@@ -2860,9 +2860,9 @@
"5": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.5
},
"attributes": {
@@ -2877,9 +2877,9 @@
"6": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.37
},
"attributes": {
@@ -2894,9 +2894,9 @@
"7": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.24
},
"attributes": {
@@ -2911,9 +2911,9 @@
"8": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.13
},
"attributes": {
@@ -2928,9 +2928,9 @@
"9": {
"base": {
"value": {
- "r": 102,
- "g": 66,
- "b": 246,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 0.05
},
"attributes": {
@@ -2947,9 +2947,9 @@
"1": {
"base": {
"value": {
- "r": 109,
- "g": 75,
- "b": 246,
+ "r": 242,
+ "g": 245,
+ "b": 247,
"a": 1
},
"attributes": {
@@ -2964,9 +2964,9 @@
"2": {
"base": {
"value": {
- "r": 120,
- "g": 89,
- "b": 246,
+ "r": 222,
+ "g": 228,
+ "b": 233,
"a": 1
},
"attributes": {
@@ -2981,9 +2981,9 @@
"3": {
"base": {
"value": {
- "r": 135,
- "g": 108,
- "b": 245,
+ "r": 194,
+ "g": 206,
+ "b": 215,
"a": 1
},
"attributes": {
@@ -2998,9 +2998,9 @@
"4": {
"base": {
"value": {
- "r": 153,
- "g": 131,
- "b": 245,
+ "r": 161,
+ "g": 179,
+ "b": 194,
"a": 1
},
"attributes": {
@@ -3015,9 +3015,9 @@
"5": {
"base": {
"value": {
- "r": 172,
- "g": 154,
- "b": 245,
+ "r": 128,
+ "g": 153,
+ "b": 172,
"a": 1
},
"attributes": {
@@ -3032,9 +3032,9 @@
"6": {
"base": {
"value": {
- "r": 190,
- "g": 176,
- "b": 244,
+ "r": 94,
+ "g": 126,
+ "b": 150,
"a": 1
},
"attributes": {
@@ -3049,9 +3049,9 @@
"7": {
"base": {
"value": {
- "r": 208,
- "g": 199,
- "b": 244,
+ "r": 61,
+ "g": 99,
+ "b": 129,
"a": 1
},
"attributes": {
@@ -3066,9 +3066,9 @@
"8": {
"base": {
"value": {
- "r": 223,
- "g": 218,
- "b": 243,
+ "r": 33,
+ "g": 77,
+ "b": 111,
"a": 1
},
"attributes": {
@@ -3083,9 +3083,9 @@
"9": {
"base": {
"value": {
- "r": 234,
- "g": 232,
- "b": 243,
+ "r": 13,
+ "g": 60,
+ "b": 97,
"a": 1
},
"attributes": {
@@ -3102,9 +3102,9 @@
"1": {
"base": {
"value": {
- "r": 97,
- "g": 63,
- "b": 235,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -3119,9 +3119,9 @@
"2": {
"base": {
"value": {
- "r": 90,
- "g": 58,
- "b": 218,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -3136,9 +3136,9 @@
"3": {
"base": {
"value": {
- "r": 79,
- "g": 52,
- "b": 194,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -3153,9 +3153,9 @@
"4": {
"base": {
"value": {
- "r": 66,
- "g": 45,
- "b": 166,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -3170,9 +3170,9 @@
"5": {
"base": {
"value": {
- "r": 54,
- "g": 37,
- "b": 139,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -3187,9 +3187,9 @@
"6": {
"base": {
"value": {
- "r": 42,
- "g": 29,
- "b": 111,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -3204,9 +3204,9 @@
"7": {
"base": {
"value": {
- "r": 29,
- "g": 22,
- "b": 83,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -3221,9 +3221,9 @@
"8": {
"base": {
"value": {
- "r": 18,
- "g": 16,
- "b": 59,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -3238,9 +3238,9 @@
"9": {
"base": {
"value": {
- "r": 11,
- "g": 11,
- "b": 42,
+ "r": 255,
+ "g": 255,
+ "b": 255,
"a": 1
},
"attributes": {
@@ -3429,9 +3429,9 @@
"1": {
"base": {
"value": {
- "r": 105,
- "g": 208,
- "b": 97,
+ "r": 117,
+ "g": 221,
+ "b": 108,
"a": 1
},
"attributes": {
@@ -3446,9 +3446,9 @@
"2": {
"base": {
"value": {
- "r": 96,
- "g": 192,
- "b": 91,
+ "r": 129,
+ "g": 224,
+ "b": 120,
"a": 1
},
"attributes": {
@@ -3463,9 +3463,9 @@
"3": {
"base": {
"value": {
- "r": 85,
- "g": 168,
- "b": 83,
+ "r": 145,
+ "g": 228,
+ "b": 137,
"a": 1
},
"attributes": {
@@ -3480,9 +3480,9 @@
"4": {
"base": {
"value": {
- "r": 72,
- "g": 141,
- "b": 74,
+ "r": 164,
+ "g": 232,
+ "b": 157,
"a": 1
},
"attributes": {
@@ -3497,9 +3497,9 @@
"5": {
"base": {
"value": {
- "r": 58,
- "g": 114,
- "b": 66,
+ "r": 183,
+ "g": 237,
+ "b": 178,
"a": 1
},
"attributes": {
@@ -3514,9 +3514,9 @@
"6": {
"base": {
"value": {
- "r": 44,
- "g": 86,
- "b": 57,
+ "r": 201,
+ "g": 242,
+ "b": 198,
"a": 1
},
"attributes": {
@@ -3531,9 +3531,9 @@
"7": {
"base": {
"value": {
- "r": 31,
- "g": 59,
- "b": 48,
+ "r": 220,
+ "g": 246,
+ "b": 218,
"a": 1
},
"attributes": {
@@ -3548,9 +3548,9 @@
"8": {
"base": {
"value": {
- "r": 20,
- "g": 35,
- "b": 40,
+ "r": 236,
+ "g": 250,
+ "b": 235,
"a": 1
},
"attributes": {
@@ -3565,9 +3565,9 @@
"9": {
"base": {
"value": {
- "r": 11,
- "g": 19,
- "b": 34,
+ "r": 248,
+ "g": 253,
+ "b": 247,
"a": 1
},
"attributes": {
@@ -3584,9 +3584,9 @@
"1": {
"base": {
"value": {
- "r": 117,
- "g": 221,
- "b": 108,
+ "r": 105,
+ "g": 211,
+ "b": 100,
"a": 1
},
"attributes": {
@@ -3601,9 +3601,9 @@
"2": {
"base": {
"value": {
- "r": 129,
- "g": 224,
- "b": 120,
+ "r": 96,
+ "g": 198,
+ "b": 101,
"a": 1
},
"attributes": {
@@ -3618,9 +3618,9 @@
"3": {
"base": {
"value": {
- "r": 145,
- "g": 228,
- "b": 137,
+ "r": 84,
+ "g": 179,
+ "b": 101,
"a": 1
},
"attributes": {
@@ -3635,9 +3635,9 @@
"4": {
"base": {
"value": {
- "r": 164,
- "g": 232,
- "b": 157,
+ "r": 70,
+ "g": 158,
+ "b": 101,
"a": 1
},
"attributes": {
@@ -3652,9 +3652,9 @@
"5": {
"base": {
"value": {
- "r": 183,
- "g": 237,
- "b": 178,
+ "r": 56,
+ "g": 137,
+ "b": 102,
"a": 1
},
"attributes": {
@@ -3669,9 +3669,9 @@
"6": {
"base": {
"value": {
- "r": 201,
- "g": 242,
- "b": 198,
+ "r": 42,
+ "g": 115,
+ "b": 103,
"a": 1
},
"attributes": {
@@ -3686,9 +3686,9 @@
"7": {
"base": {
"value": {
- "r": 220,
- "g": 246,
- "b": 218,
+ "r": 28,
+ "g": 94,
+ "b": 103,
"a": 1
},
"attributes": {
@@ -3703,9 +3703,9 @@
"8": {
"base": {
"value": {
- "r": 236,
- "g": 250,
- "b": 235,
+ "r": 16,
+ "g": 75,
+ "b": 103,
"a": 1
},
"attributes": {
@@ -3720,9 +3720,9 @@
"9": {
"base": {
"value": {
- "r": 248,
- "g": 253,
- "b": 247,
+ "r": 7,
+ "g": 62,
+ "b": 104,
"a": 1
},
"attributes": {
@@ -3911,9 +3911,9 @@
"1": {
"base": {
"value": {
- "r": 45,
- "g": 137,
- "b": 38,
+ "r": 33,
+ "g": 127,
+ "b": 30,
"a": 1
},
"attributes": {
@@ -3928,9 +3928,9 @@
"2": {
"base": {
"value": {
- "r": 62,
- "g": 145,
- "b": 55,
+ "r": 30,
+ "g": 120,
+ "b": 35,
"a": 1
},
"attributes": {
@@ -3945,9 +3945,9 @@
"3": {
"base": {
"value": {
- "r": 84,
- "g": 157,
- "b": 79,
+ "r": 27,
+ "g": 112,
+ "b": 42,
"a": 1
},
"attributes": {
@@ -3962,9 +3962,9 @@
"4": {
"base": {
"value": {
- "r": 111,
- "g": 172,
- "b": 107,
+ "r": 22,
+ "g": 101,
+ "b": 50,
"a": 1
},
"attributes": {
@@ -3979,9 +3979,9 @@
"5": {
"base": {
"value": {
- "r": 138,
- "g": 186,
- "b": 135,
+ "r": 18,
+ "g": 91,
+ "b": 58,
"a": 1
},
"attributes": {
@@ -3996,9 +3996,9 @@
"6": {
"base": {
"value": {
- "r": 165,
- "g": 200,
- "b": 163,
+ "r": 13,
+ "g": 80,
+ "b": 66,
"a": 1
},
"attributes": {
@@ -4013,9 +4013,9 @@
"7": {
"base": {
"value": {
- "r": 192,
- "g": 215,
- "b": 191,
+ "r": 8,
+ "g": 69,
+ "b": 74,
"a": 1
},
"attributes": {
@@ -4030,9 +4030,9 @@
"8": {
"base": {
"value": {
- "r": 214,
- "g": 227,
- "b": 215,
+ "r": 5,
+ "g": 61,
+ "b": 81,
"a": 1
},
"attributes": {
@@ -4047,9 +4047,9 @@
"9": {
"base": {
"value": {
- "r": 231,
- "g": 236,
- "b": 232,
+ "r": 2,
+ "g": 54,
+ "b": 86,
"a": 1
},
"attributes": {
@@ -4066,9 +4066,9 @@
"1": {
"base": {
"value": {
- "r": 34,
- "g": 125,
- "b": 27,
+ "r": 46,
+ "g": 137,
+ "b": 38,
"a": 1
},
"attributes": {
@@ -4083,9 +4083,9 @@
"2": {
"base": {
"value": {
- "r": 31,
- "g": 115,
- "b": 28,
+ "r": 64,
+ "g": 147,
+ "b": 57,
"a": 1
},
"attributes": {
@@ -4100,9 +4100,9 @@
"3": {
"base": {
"value": {
- "r": 28,
- "g": 101,
- "b": 28,
+ "r": 88,
+ "g": 161,
+ "b": 82,
"a": 1
},
"attributes": {
@@ -4117,9 +4117,9 @@
"4": {
"base": {
"value": {
- "r": 24,
- "g": 85,
- "b": 28,
+ "r": 116,
+ "g": 177,
+ "b": 111,
"a": 1
},
"attributes": {
@@ -4134,9 +4134,9 @@
"5": {
"base": {
"value": {
- "r": 21,
- "g": 70,
- "b": 29,
+ "r": 145,
+ "g": 193,
+ "b": 141,
"a": 1
},
"attributes": {
@@ -4151,9 +4151,9 @@
"6": {
"base": {
"value": {
- "r": 17,
- "g": 54,
- "b": 30,
+ "r": 174,
+ "g": 209,
+ "b": 171,
"a": 1
},
"attributes": {
@@ -4168,9 +4168,9 @@
"7": {
"base": {
"value": {
- "r": 13,
- "g": 38,
- "b": 30,
+ "r": 202,
+ "g": 225,
+ "b": 200,
"a": 1
},
"attributes": {
@@ -4185,9 +4185,9 @@
"8": {
"base": {
"value": {
- "r": 10,
- "g": 24,
- "b": 30,
+ "r": 226,
+ "g": 239,
+ "b": 225,
"a": 1
},
"attributes": {
@@ -4202,9 +4202,9 @@
"9": {
"base": {
"value": {
- "r": 7,
- "g": 14,
- "b": 31,
+ "r": 244,
+ "g": 249,
+ "b": 244,
"a": 1
},
"attributes": {
@@ -4393,9 +4393,9 @@
"1": {
"base": {
"value": {
- "r": 95,
- "g": 185,
- "b": 210,
+ "r": 108,
+ "g": 197,
+ "b": 221,
"a": 1
},
"attributes": {
@@ -4410,9 +4410,9 @@
"2": {
"base": {
"value": {
- "r": 88,
- "g": 170,
- "b": 195,
+ "r": 120,
+ "g": 202,
+ "b": 224,
"a": 1
},
"attributes": {
@@ -4427,9 +4427,9 @@
"3": {
"base": {
"value": {
- "r": 77,
- "g": 149,
- "b": 174,
+ "r": 137,
+ "g": 209,
+ "b": 228,
"a": 1
},
"attributes": {
@@ -4444,9 +4444,9 @@
"4": {
"base": {
"value": {
- "r": 65,
- "g": 125,
- "b": 149,
+ "r": 157,
+ "g": 217,
+ "b": 232,
"a": 1
},
"attributes": {
@@ -4461,9 +4461,9 @@
"5": {
"base": {
"value": {
- "r": 53,
- "g": 101,
- "b": 125,
+ "r": 178,
+ "g": 225,
+ "b": 237,
"a": 1
},
"attributes": {
@@ -4478,9 +4478,9 @@
"6": {
"base": {
"value": {
- "r": 41,
- "g": 77,
- "b": 101,
+ "r": 198,
+ "g": 232,
+ "b": 242,
"a": 1
},
"attributes": {
@@ -4495,9 +4495,9 @@
"7": {
"base": {
"value": {
- "r": 29,
- "g": 53,
- "b": 76,
+ "r": 218,
+ "g": 240,
+ "b": 246,
"a": 1
},
"attributes": {
@@ -4512,9 +4512,9 @@
"8": {
"base": {
"value": {
- "r": 18,
- "g": 32,
- "b": 55,
+ "r": 235,
+ "g": 247,
+ "b": 250,
"a": 1
},
"attributes": {
@@ -4529,9 +4529,9 @@
"9": {
"base": {
"value": {
- "r": 11,
- "g": 17,
- "b": 40,
+ "r": 247,
+ "g": 252,
+ "b": 253,
"a": 1
},
"attributes": {
@@ -4548,9 +4548,9 @@
"1": {
"base": {
"value": {
- "r": 108,
- "g": 197,
- "b": 221,
+ "r": 95,
+ "g": 187,
+ "b": 213,
"a": 1
},
"attributes": {
@@ -4565,9 +4565,9 @@
"2": {
"base": {
"value": {
- "r": 120,
- "g": 202,
- "b": 224,
+ "r": 87,
+ "g": 176,
+ "b": 204,
"a": 1
},
"attributes": {
@@ -4582,9 +4582,9 @@
"3": {
"base": {
"value": {
- "r": 137,
- "g": 209,
- "b": 228,
+ "r": 76,
+ "g": 160,
+ "b": 191,
"a": 1
},
"attributes": {
@@ -4599,9 +4599,9 @@
"4": {
"base": {
"value": {
- "r": 157,
- "g": 217,
- "b": 232,
+ "r": 64,
+ "g": 142,
+ "b": 176,
"a": 1
},
"attributes": {
@@ -4616,9 +4616,9 @@
"5": {
"base": {
"value": {
- "r": 178,
- "g": 225,
- "b": 237,
+ "r": 51,
+ "g": 124,
+ "b": 162,
"a": 1
},
"attributes": {
@@ -4633,9 +4633,9 @@
"6": {
"base": {
"value": {
- "r": 198,
- "g": 232,
- "b": 242,
+ "r": 38,
+ "g": 106,
+ "b": 147,
"a": 1
},
"attributes": {
@@ -4650,9 +4650,9 @@
"7": {
"base": {
"value": {
- "r": 218,
- "g": 240,
- "b": 246,
+ "r": 26,
+ "g": 88,
+ "b": 132,
"a": 1
},
"attributes": {
@@ -4667,9 +4667,9 @@
"8": {
"base": {
"value": {
- "r": 235,
- "g": 247,
- "b": 250,
+ "r": 15,
+ "g": 72,
+ "b": 119,
"a": 1
},
"attributes": {
@@ -4684,9 +4684,9 @@
"9": {
"base": {
"value": {
- "r": 247,
- "g": 252,
- "b": 253,
+ "r": 7,
+ "g": 61,
+ "b": 110,
"a": 1
},
"attributes": {
@@ -4875,9 +4875,9 @@
"1": {
"base": {
"value": {
- "r": 12,
- "g": 119,
- "b": 148,
+ "r": 0,
+ "g": 110,
+ "b": 140,
"a": 1
},
"attributes": {
@@ -4892,9 +4892,9 @@
"2": {
"base": {
"value": {
- "r": 31,
- "g": 130,
- "b": 156,
+ "r": 0,
+ "g": 105,
+ "b": 136,
"a": 1
},
"attributes": {
@@ -4909,9 +4909,9 @@
"3": {
"base": {
"value": {
- "r": 58,
- "g": 144,
- "b": 167,
+ "r": 0,
+ "g": 98,
+ "b": 130,
"a": 1
},
"attributes": {
@@ -4926,9 +4926,9 @@
"4": {
"base": {
"value": {
- "r": 89,
- "g": 160,
- "b": 180,
+ "r": 0,
+ "g": 90,
+ "b": 123,
"a": 1
},
"attributes": {
@@ -4943,9 +4943,9 @@
"5": {
"base": {
"value": {
- "r": 121,
- "g": 177,
- "b": 193,
+ "r": 0,
+ "g": 82,
+ "b": 116,
"a": 1
},
"attributes": {
@@ -4960,9 +4960,9 @@
"6": {
"base": {
"value": {
- "r": 152,
- "g": 194,
- "b": 206,
+ "r": 0,
+ "g": 73,
+ "b": 109,
"a": 1
},
"attributes": {
@@ -4977,9 +4977,9 @@
"7": {
"base": {
"value": {
- "r": 183,
- "g": 210,
- "b": 219,
+ "r": 0,
+ "g": 65,
+ "b": 102,
"a": 1
},
"attributes": {
@@ -4994,9 +4994,9 @@
"8": {
"base": {
"value": {
- "r": 210,
- "g": 224,
- "b": 230,
+ "r": 0,
+ "g": 58,
+ "b": 96,
"a": 1
},
"attributes": {
@@ -5011,9 +5011,9 @@
"9": {
"base": {
"value": {
- "r": 229,
- "g": 235,
- "b": 238,
+ "r": 0,
+ "g": 53,
+ "b": 92,
"a": 1
},
"attributes": {
@@ -5030,9 +5030,9 @@
"1": {
"base": {
"value": {
- "r": 0,
- "g": 108,
- "b": 137,
+ "r": 13,
+ "g": 120,
+ "b": 149,
"a": 1
},
"attributes": {
@@ -5047,9 +5047,9 @@
"2": {
"base": {
"value": {
- "r": 1,
- "g": 99,
- "b": 128,
+ "r": 33,
+ "g": 131,
+ "b": 158,
"a": 1
},
"attributes": {
@@ -5064,9 +5064,9 @@
"3": {
"base": {
"value": {
- "r": 1,
- "g": 88,
- "b": 116,
+ "r": 61,
+ "g": 147,
+ "b": 170,
"a": 1
},
"attributes": {
@@ -5081,9 +5081,9 @@
"4": {
"base": {
"value": {
- "r": 2,
- "g": 74,
- "b": 102,
+ "r": 94,
+ "g": 166,
+ "b": 184,
"a": 1
},
"attributes": {
@@ -5098,9 +5098,9 @@
"5": {
"base": {
"value": {
- "r": 3,
- "g": 61,
- "b": 87,
+ "r": 128,
+ "g": 184,
+ "b": 199,
"a": 1
},
"attributes": {
@@ -5115,9 +5115,9 @@
"6": {
"base": {
"value": {
- "r": 4,
- "g": 47,
- "b": 72,
+ "r": 161,
+ "g": 202,
+ "b": 214,
"a": 1
},
"attributes": {
@@ -5132,9 +5132,9 @@
"7": {
"base": {
"value": {
- "r": 5,
- "g": 33,
- "b": 58,
+ "r": 194,
+ "g": 221,
+ "b": 228,
"a": 1
},
"attributes": {
@@ -5149,9 +5149,9 @@
"8": {
"base": {
"value": {
- "r": 5,
- "g": 22,
- "b": 46,
+ "r": 222,
+ "g": 237,
+ "b": 240,
"a": 1
},
"attributes": {
@@ -5166,9 +5166,9 @@
"9": {
"base": {
"value": {
- "r": 6,
- "g": 13,
- "b": 37,
+ "r": 242,
+ "g": 248,
+ "b": 249,
"a": 1
},
"attributes": {
@@ -5357,9 +5357,9 @@
"1": {
"base": {
"value": {
- "r": 237,
- "g": 211,
- "b": 82,
+ "r": 249,
+ "g": 224,
+ "b": 94,
"a": 1
},
"attributes": {
@@ -5374,9 +5374,9 @@
"2": {
"base": {
"value": {
- "r": 217,
- "g": 194,
- "b": 78,
+ "r": 250,
+ "g": 226,
+ "b": 107,
"a": 1
},
"attributes": {
@@ -5391,9 +5391,9 @@
"3": {
"base": {
"value": {
- "r": 191,
- "g": 171,
- "b": 72,
+ "r": 250,
+ "g": 230,
+ "b": 126,
"a": 1
},
"attributes": {
@@ -5408,9 +5408,9 @@
"4": {
"base": {
"value": {
- "r": 159,
- "g": 143,
- "b": 65,
+ "r": 251,
+ "g": 234,
+ "b": 148,
"a": 1
},
"attributes": {
@@ -5425,9 +5425,9 @@
"5": {
"base": {
"value": {
- "r": 128,
- "g": 115,
- "b": 58,
+ "r": 252,
+ "g": 239,
+ "b": 170,
"a": 1
},
"attributes": {
@@ -5442,9 +5442,9 @@
"6": {
"base": {
"value": {
- "r": 96,
- "g": 87,
- "b": 51,
+ "r": 253,
+ "g": 243,
+ "b": 192,
"a": 1
},
"attributes": {
@@ -5459,9 +5459,9 @@
"7": {
"base": {
"value": {
- "r": 64,
- "g": 59,
- "b": 44,
+ "r": 254,
+ "g": 247,
+ "b": 214,
"a": 1
},
"attributes": {
@@ -5476,9 +5476,9 @@
"8": {
"base": {
"value": {
- "r": 38,
- "g": 36,
- "b": 38,
+ "r": 254,
+ "g": 251,
+ "b": 233,
"a": 1
},
"attributes": {
@@ -5493,9 +5493,9 @@
"9": {
"base": {
"value": {
- "r": 18,
- "g": 19,
- "b": 34,
+ "r": 255,
+ "g": 253,
+ "b": 247,
"a": 1
},
"attributes": {
@@ -5512,9 +5512,9 @@
"1": {
"base": {
"value": {
- "r": 249,
- "g": 224,
- "b": 94,
+ "r": 237,
+ "g": 214,
+ "b": 86,
"a": 1
},
"attributes": {
@@ -5529,9 +5529,9 @@
"2": {
"base": {
"value": {
- "r": 250,
- "g": 226,
- "b": 107,
+ "r": 217,
+ "g": 200,
+ "b": 87,
"a": 1
},
"attributes": {
@@ -5546,9 +5546,9 @@
"3": {
"base": {
"value": {
- "r": 250,
- "g": 230,
- "b": 126,
+ "r": 190,
+ "g": 182,
+ "b": 90,
"a": 1
},
"attributes": {
@@ -5563,9 +5563,9 @@
"4": {
"base": {
"value": {
- "r": 251,
- "g": 234,
- "b": 148,
+ "r": 158,
+ "g": 160,
+ "b": 92,
"a": 1
},
"attributes": {
@@ -5580,9 +5580,9 @@
"5": {
"base": {
"value": {
- "r": 252,
- "g": 239,
- "b": 170,
+ "r": 126,
+ "g": 138,
+ "b": 95,
"a": 1
},
"attributes": {
@@ -5597,9 +5597,9 @@
"6": {
"base": {
"value": {
- "r": 253,
- "g": 243,
- "b": 192,
+ "r": 93,
+ "g": 116,
+ "b": 97,
"a": 1
},
"attributes": {
@@ -5614,9 +5614,9 @@
"7": {
"base": {
"value": {
- "r": 254,
- "g": 247,
- "b": 214,
+ "r": 61,
+ "g": 94,
+ "b": 99,
"a": 1
},
"attributes": {
@@ -5631,9 +5631,9 @@
"8": {
"base": {
"value": {
- "r": 254,
- "g": 251,
- "b": 233,
+ "r": 34,
+ "g": 76,
+ "b": 102,
"a": 1
},
"attributes": {
@@ -5648,9 +5648,9 @@
"9": {
"base": {
"value": {
- "r": 255,
- "g": 253,
- "b": 247,
+ "r": 14,
+ "g": 62,
+ "b": 103,
"a": 1
},
"attributes": {
@@ -5839,9 +5839,9 @@
"1": {
"base": {
"value": {
- "r": 254,
- "g": 100,
- "b": 91,
+ "r": 242,
+ "g": 91,
+ "b": 83,
"a": 1
},
"attributes": {
@@ -5856,9 +5856,9 @@
"2": {
"base": {
"value": {
- "r": 253,
- "g": 112,
- "b": 104,
+ "r": 222,
+ "g": 87,
+ "b": 84,
"a": 1
},
"attributes": {
@@ -5873,9 +5873,9 @@
"3": {
"base": {
"value": {
- "r": 252,
- "g": 129,
- "b": 121,
+ "r": 194,
+ "g": 83,
+ "b": 84,
"a": 1
},
"attributes": {
@@ -5890,9 +5890,9 @@
"4": {
"base": {
"value": {
- "r": 250,
- "g": 148,
- "b": 142,
+ "r": 161,
+ "g": 77,
+ "b": 85,
"a": 1
},
"attributes": {
@@ -5907,9 +5907,9 @@
"5": {
"base": {
"value": {
- "r": 248,
- "g": 167,
- "b": 163,
+ "r": 128,
+ "g": 72,
+ "b": 86,
"a": 1
},
"attributes": {
@@ -5924,9 +5924,9 @@
"6": {
"base": {
"value": {
- "r": 246,
- "g": 186,
- "b": 184,
+ "r": 94,
+ "g": 66,
+ "b": 87,
"a": 1
},
"attributes": {
@@ -5941,9 +5941,9 @@
"7": {
"base": {
"value": {
- "r": 244,
- "g": 205,
- "b": 205,
+ "r": 61,
+ "g": 60,
+ "b": 88,
"a": 1
},
"attributes": {
@@ -5958,9 +5958,9 @@
"8": {
"base": {
"value": {
- "r": 243,
- "g": 222,
- "b": 222,
+ "r": 33,
+ "g": 56,
+ "b": 88,
"a": 1
},
"attributes": {
@@ -5975,9 +5975,9 @@
"9": {
"base": {
"value": {
- "r": 242,
- "g": 234,
- "b": 235,
+ "r": 13,
+ "g": 52,
+ "b": 89,
"a": 1
},
"attributes": {
@@ -5994,9 +5994,9 @@
"1": {
"base": {
"value": {
- "r": 243,
- "g": 89,
- "b": 80,
+ "r": 255,
+ "g": 101,
+ "b": 92,
"a": 1
},
"attributes": {
@@ -6011,9 +6011,9 @@
"2": {
"base": {
"value": {
- "r": 223,
- "g": 82,
- "b": 76,
+ "r": 255,
+ "g": 114,
+ "b": 105,
"a": 1
},
"attributes": {
@@ -6028,9 +6028,9 @@
"3": {
"base": {
"value": {
- "r": 195,
- "g": 73,
- "b": 71,
+ "r": 255,
+ "g": 132,
+ "b": 124,
"a": 1
},
"attributes": {
@@ -6045,9 +6045,9 @@
"4": {
"base": {
"value": {
- "r": 163,
- "g": 62,
- "b": 64,
+ "r": 255,
+ "g": 153,
+ "b": 147,
"a": 1
},
"attributes": {
@@ -6062,9 +6062,9 @@
"5": {
"base": {
"value": {
- "r": 131,
- "g": 51,
- "b": 57,
+ "r": 255,
+ "g": 174,
+ "b": 169,
"a": 1
},
"attributes": {
@@ -6079,9 +6079,9 @@
"6": {
"base": {
"value": {
- "r": 98,
- "g": 39,
- "b": 50,
+ "r": 255,
+ "g": 195,
+ "b": 191,
"a": 1
},
"attributes": {
@@ -6096,9 +6096,9 @@
"7": {
"base": {
"value": {
- "r": 66,
- "g": 28,
- "b": 43,
+ "r": 255,
+ "g": 216,
+ "b": 214,
"a": 1
},
"attributes": {
@@ -6113,9 +6113,9 @@
"8": {
"base": {
"value": {
- "r": 38,
- "g": 19,
- "b": 38,
+ "r": 255,
+ "g": 234,
+ "b": 233,
"a": 1
},
"attributes": {
@@ -6130,9 +6130,9 @@
"9": {
"base": {
"value": {
- "r": 18,
- "g": 12,
- "b": 34,
+ "r": 255,
+ "g": 247,
+ "b": 246,
"a": 1
},
"attributes": {
@@ -6321,9 +6321,9 @@
"1": {
"base": {
"value": {
- "r": 243,
- "g": 25,
- "b": 84,
+ "r": 255,
+ "g": 37,
+ "b": 95,
"a": 1
},
"attributes": {
@@ -6338,9 +6338,9 @@
"2": {
"base": {
"value": {
- "r": 223,
- "g": 24,
- "b": 80,
+ "r": 255,
+ "g": 56,
+ "b": 109,
"a": 1
},
"attributes": {
@@ -6355,9 +6355,9 @@
"3": {
"base": {
"value": {
- "r": 195,
- "g": 22,
- "b": 74,
+ "r": 255,
+ "g": 81,
+ "b": 127,
"a": 1
},
"attributes": {
@@ -6372,9 +6372,9 @@
"4": {
"base": {
"value": {
- "r": 163,
- "g": 19,
- "b": 66,
+ "r": 255,
+ "g": 111,
+ "b": 149,
"a": 1
},
"attributes": {
@@ -6389,9 +6389,9 @@
"5": {
"base": {
"value": {
- "r": 131,
- "g": 17,
- "b": 59,
+ "r": 255,
+ "g": 141,
+ "b": 171,
"a": 1
},
"attributes": {
@@ -6406,9 +6406,9 @@
"6": {
"base": {
"value": {
- "r": 98,
- "g": 15,
- "b": 52,
+ "r": 255,
+ "g": 170,
+ "b": 193,
"a": 1
},
"attributes": {
@@ -6423,9 +6423,9 @@
"7": {
"base": {
"value": {
- "r": 66,
- "g": 12,
- "b": 44,
+ "r": 255,
+ "g": 200,
+ "b": 215,
"a": 1
},
"attributes": {
@@ -6440,9 +6440,9 @@
"8": {
"base": {
"value": {
- "r": 38,
- "g": 10,
- "b": 38,
+ "r": 255,
+ "g": 225,
+ "b": 233,
"a": 1
},
"attributes": {
@@ -6457,9 +6457,9 @@
"9": {
"base": {
"value": {
- "r": 18,
- "g": 9,
- "b": 34,
+ "r": 255,
+ "g": 244,
+ "b": 247,
"a": 1
},
"attributes": {
@@ -6476,9 +6476,9 @@
"1": {
"base": {
"value": {
- "r": 255,
- "g": 37,
- "b": 95,
+ "r": 242,
+ "g": 27,
+ "b": 88,
"a": 1
},
"attributes": {
@@ -6493,9 +6493,9 @@
"2": {
"base": {
"value": {
- "r": 255,
- "g": 56,
- "b": 109,
+ "r": 222,
+ "g": 30,
+ "b": 89,
"a": 1
},
"attributes": {
@@ -6510,9 +6510,9 @@
"3": {
"base": {
"value": {
- "r": 255,
- "g": 81,
- "b": 127,
+ "r": 194,
+ "g": 33,
+ "b": 91,
"a": 1
},
"attributes": {
@@ -6527,9 +6527,9 @@
"4": {
"base": {
"value": {
- "r": 255,
- "g": 111,
- "b": 149,
+ "r": 161,
+ "g": 36,
+ "b": 93,
"a": 1
},
"attributes": {
@@ -6542,11 +6542,11 @@
}
},
"5": {
- "base": {
- "value": {
- "r": 255,
- "g": 141,
- "b": 171,
+ "base": {
+ "value": {
+ "r": 129,
+ "g": 40,
+ "b": 96,
"a": 1
},
"attributes": {
@@ -6561,9 +6561,9 @@
"6": {
"base": {
"value": {
- "r": 255,
- "g": 170,
- "b": 193,
+ "r": 96,
+ "g": 44,
+ "b": 98,
"a": 1
},
"attributes": {
@@ -6578,9 +6578,9 @@
"7": {
"base": {
"value": {
- "r": 255,
- "g": 200,
- "b": 215,
+ "r": 63,
+ "g": 47,
+ "b": 100,
"a": 1
},
"attributes": {
@@ -6595,9 +6595,9 @@
"8": {
"base": {
"value": {
- "r": 255,
- "g": 225,
- "b": 233,
+ "r": 35,
+ "g": 50,
+ "b": 102,
"a": 1
},
"attributes": {
@@ -6612,9 +6612,9 @@
"9": {
"base": {
"value": {
- "r": 255,
- "g": 244,
- "b": 247,
+ "r": 15,
+ "g": 53,
+ "b": 103,
"a": 1
},
"attributes": {
@@ -6803,9 +6803,9 @@
"1": {
"base": {
"value": {
- "r": 212,
- "g": 40,
- "b": 81,
+ "r": 200,
+ "g": 30,
+ "b": 73,
"a": 1
},
"attributes": {
@@ -6820,9 +6820,9 @@
"2": {
"base": {
"value": {
- "r": 214,
- "g": 57,
- "b": 94,
+ "r": 183,
+ "g": 32,
+ "b": 74,
"a": 1
},
"attributes": {
@@ -6837,9 +6837,9 @@
"3": {
"base": {
"value": {
- "r": 217,
- "g": 80,
- "b": 113,
+ "r": 160,
+ "g": 34,
+ "b": 76,
"a": 1
},
"attributes": {
@@ -6854,9 +6854,9 @@
"4": {
"base": {
"value": {
- "r": 221,
- "g": 107,
- "b": 135,
+ "r": 132,
+ "g": 37,
+ "b": 78,
"a": 1
},
"attributes": {
@@ -6871,9 +6871,9 @@
"5": {
"base": {
"value": {
- "r": 226,
- "g": 135,
- "b": 158,
+ "r": 105,
+ "g": 40,
+ "b": 81,
"a": 1
},
"attributes": {
@@ -6888,9 +6888,9 @@
"6": {
"base": {
"value": {
- "r": 230,
- "g": 163,
- "b": 180,
+ "r": 78,
+ "g": 42,
+ "b": 83,
"a": 1
},
"attributes": {
@@ -6905,9 +6905,9 @@
"7": {
"base": {
"value": {
- "r": 234,
- "g": 190,
- "b": 202,
+ "r": 50,
+ "g": 45,
+ "b": 85,
"a": 1
},
"attributes": {
@@ -6922,9 +6922,9 @@
"8": {
"base": {
"value": {
- "r": 237,
- "g": 213,
- "b": 221,
+ "r": 27,
+ "g": 47,
+ "b": 87,
"a": 1
},
"attributes": {
@@ -6939,9 +6939,9 @@
"9": {
"base": {
"value": {
- "r": 239,
- "g": 230,
- "b": 234,
+ "r": 11,
+ "g": 49,
+ "b": 88,
"a": 1
},
"attributes": {
@@ -6958,9 +6958,9 @@
"1": {
"base": {
"value": {
- "r": 200,
- "g": 28,
- "b": 70,
+ "r": 212,
+ "g": 40,
+ "b": 81,
"a": 1
},
"attributes": {
@@ -6975,9 +6975,9 @@
"2": {
"base": {
"value": {
- "r": 183,
- "g": 26,
- "b": 67,
+ "r": 216,
+ "g": 58,
+ "b": 96,
"a": 1
},
"attributes": {
@@ -6992,9 +6992,9 @@
"3": {
"base": {
"value": {
- "r": 161,
- "g": 24,
- "b": 62,
+ "r": 221,
+ "g": 83,
+ "b": 116,
"a": 1
},
"attributes": {
@@ -7009,9 +7009,9 @@
"4": {
"base": {
"value": {
- "r": 135,
- "g": 21,
- "b": 57,
+ "r": 227,
+ "g": 113,
+ "b": 140,
"a": 1
},
"attributes": {
@@ -7026,9 +7026,9 @@
"5": {
"base": {
"value": {
- "r": 108,
- "g": 19,
- "b": 52,
+ "r": 233,
+ "g": 142,
+ "b": 164,
"a": 1
},
"attributes": {
@@ -7043,9 +7043,9 @@
"6": {
"base": {
"value": {
- "r": 81,
- "g": 16,
- "b": 46,
+ "r": 238,
+ "g": 171,
+ "b": 187,
"a": 1
},
"attributes": {
@@ -7060,9 +7060,9 @@
"7": {
"base": {
"value": {
- "r": 55,
- "g": 13,
- "b": 41,
+ "r": 244,
+ "g": 201,
+ "b": 211,
"a": 1
},
"attributes": {
@@ -7077,9 +7077,9 @@
"8": {
"base": {
"value": {
- "r": 33,
- "g": 11,
- "b": 36,
+ "r": 249,
+ "g": 226,
+ "b": 231,
"a": 1
},
"attributes": {
@@ -7094,9 +7094,9 @@
"9": {
"base": {
"value": {
- "r": 16,
- "g": 9,
- "b": 33,
+ "r": 253,
+ "g": 244,
+ "b": 246,
"a": 1
},
"attributes": {
@@ -7113,9 +7113,9 @@
"secondary": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 1
},
"attributes": {
@@ -7130,9 +7130,9 @@
"1": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.95
},
"attributes": {
@@ -7147,9 +7147,9 @@
"2": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.87
},
"attributes": {
@@ -7164,9 +7164,9 @@
"3": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.76
},
"attributes": {
@@ -7181,9 +7181,9 @@
"4": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.63
},
"attributes": {
@@ -7198,9 +7198,9 @@
"5": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.5
},
"attributes": {
@@ -7215,9 +7215,9 @@
"6": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.37
},
"attributes": {
@@ -7232,9 +7232,9 @@
"7": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.24
},
"attributes": {
@@ -7249,9 +7249,9 @@
"8": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.13
},
"attributes": {
@@ -7266,9 +7266,9 @@
"9": {
"base": {
"value": {
- "r": 77,
- "g": 37,
- "b": 239,
+ "r": 111,
+ "g": 210,
+ "b": 210,
"a": 0.05
},
"attributes": {
@@ -7285,9 +7285,9 @@
"1": {
"base": {
"value": {
- "r": 73,
- "g": 36,
- "b": 229,
+ "r": 118,
+ "g": 212,
+ "b": 212,
"a": 1
},
"attributes": {
@@ -7302,9 +7302,9 @@
"2": {
"base": {
"value": {
- "r": 68,
- "g": 33,
- "b": 212,
+ "r": 130,
+ "g": 216,
+ "b": 216,
"a": 1
},
"attributes": {
@@ -7319,9 +7319,9 @@
"3": {
"base": {
"value": {
- "r": 60,
- "g": 30,
- "b": 189,
+ "r": 146,
+ "g": 221,
+ "b": 221,
"a": 1
},
"attributes": {
@@ -7336,9 +7336,9 @@
"4": {
"base": {
"value": {
- "r": 51,
- "g": 26,
- "b": 162,
+ "r": 164,
+ "g": 227,
+ "b": 227,
"a": 1
},
"attributes": {
@@ -7353,9 +7353,9 @@
"5": {
"base": {
"value": {
- "r": 42,
- "g": 23,
- "b": 135,
+ "r": 183,
+ "g": 233,
+ "b": 233,
"a": 1
},
"attributes": {
@@ -7370,9 +7370,9 @@
"6": {
"base": {
"value": {
- "r": 32,
- "g": 19,
- "b": 108,
+ "r": 202,
+ "g": 238,
+ "b": 238,
"a": 1
},
"attributes": {
@@ -7387,9 +7387,9 @@
"7": {
"base": {
"value": {
- "r": 23,
- "g": 15,
- "b": 81,
+ "r": 220,
+ "g": 244,
+ "b": 244,
"a": 1
},
"attributes": {
@@ -7404,9 +7404,9 @@
"8": {
"base": {
"value": {
- "r": 15,
- "g": 12,
- "b": 58,
+ "r": 236,
+ "g": 249,
+ "b": 249,
"a": 1
},
"attributes": {
@@ -7421,9 +7421,9 @@
"9": {
"base": {
"value": {
- "r": 10,
- "g": 9,
- "b": 41,
+ "r": 248,
+ "g": 253,
+ "b": 253,
"a": 1
},
"attributes": {
@@ -7440,9 +7440,9 @@
"1": {
"base": {
"value": {
- "r": 86,
- "g": 48,
- "b": 240,
+ "r": 106,
+ "g": 202,
+ "b": 205,
"a": 1
},
"attributes": {
@@ -7457,9 +7457,9 @@
"2": {
"base": {
"value": {
- "r": 100,
- "g": 65,
- "b": 241,
+ "r": 97,
+ "g": 190,
+ "b": 196,
"a": 1
},
"attributes": {
@@ -7474,9 +7474,9 @@
"3": {
"base": {
"value": {
- "r": 120,
- "g": 89,
- "b": 243,
+ "r": 85,
+ "g": 173,
+ "b": 185,
"a": 1
},
"attributes": {
@@ -7491,9 +7491,9 @@
"4": {
"base": {
"value": {
- "r": 143,
- "g": 118,
- "b": 245,
+ "r": 71,
+ "g": 152,
+ "b": 171,
"a": 1
},
"attributes": {
@@ -7508,9 +7508,9 @@
"5": {
"base": {
"value": {
- "r": 166,
- "g": 146,
- "b": 247,
+ "r": 57,
+ "g": 132,
+ "b": 157,
"a": 1
},
"attributes": {
@@ -7525,9 +7525,9 @@
"6": {
"base": {
"value": {
- "r": 189,
- "g": 174,
- "b": 249,
+ "r": 42,
+ "g": 112,
+ "b": 143,
"a": 1
},
"attributes": {
@@ -7542,9 +7542,9 @@
"7": {
"base": {
"value": {
- "r": 212,
- "g": 203,
- "b": 251,
+ "r": 28,
+ "g": 91,
+ "b": 129,
"a": 1
},
"attributes": {
@@ -7559,9 +7559,9 @@
"8": {
"base": {
"value": {
- "r": 232,
- "g": 227,
- "b": 253,
+ "r": 16,
+ "g": 74,
+ "b": 118,
"a": 1
},
"attributes": {
@@ -7576,9 +7576,9 @@
"9": {
"base": {
"value": {
- "r": 246,
- "g": 244,
- "b": 254,
+ "r": 7,
+ "g": 62,
+ "b": 109,
"a": 1
},
"attributes": {
@@ -7595,9 +7595,9 @@
"secondary-inverted": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 1
},
"attributes": {
@@ -7612,9 +7612,9 @@
"1": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.95
},
"attributes": {
@@ -7629,9 +7629,9 @@
"2": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.87
},
"attributes": {
@@ -7646,9 +7646,9 @@
"3": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.76
},
"attributes": {
@@ -7663,9 +7663,9 @@
"4": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.63
},
"attributes": {
@@ -7680,9 +7680,9 @@
"5": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.5
},
"attributes": {
@@ -7697,9 +7697,9 @@
"6": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.37
},
"attributes": {
@@ -7714,9 +7714,9 @@
"7": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.24
},
"attributes": {
@@ -7731,9 +7731,9 @@
"8": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.13
},
"attributes": {
@@ -7748,9 +7748,9 @@
"9": {
"base": {
"value": {
- "r": 226,
- "g": 24,
- "b": 121,
+ "r": 2,
+ "g": 128,
+ "b": 147,
"a": 0.05
},
"attributes": {
@@ -7767,9 +7767,9 @@
"1": {
"base": {
"value": {
- "r": 227,
- "g": 35,
- "b": 127,
+ "r": 2,
+ "g": 124,
+ "b": 144,
"a": 1
},
"attributes": {
@@ -7784,9 +7784,9 @@
"2": {
"base": {
"value": {
- "r": 228,
- "g": 52,
- "b": 137,
+ "r": 2,
+ "g": 118,
+ "b": 139,
"a": 1
},
"attributes": {
@@ -7801,9 +7801,9 @@
"3": {
"base": {
"value": {
- "r": 230,
- "g": 76,
- "b": 150,
+ "r": 2,
+ "g": 109,
+ "b": 133,
"a": 1
},
"attributes": {
@@ -7818,9 +7818,9 @@
"4": {
"base": {
"value": {
- "r": 232,
- "g": 104,
- "b": 166,
+ "r": 1,
+ "g": 99,
+ "b": 126,
"a": 1
},
"attributes": {
@@ -7835,9 +7835,9 @@
"5": {
"base": {
"value": {
- "r": 234,
- "g": 133,
- "b": 182,
+ "r": 1,
+ "g": 89,
+ "b": 118,
"a": 1
},
"attributes": {
@@ -7852,9 +7852,9 @@
"6": {
"base": {
"value": {
- "r": 235,
- "g": 161,
- "b": 198,
+ "r": 1,
+ "g": 79,
+ "b": 110,
"a": 1
},
"attributes": {
@@ -7869,9 +7869,9 @@
"7": {
"base": {
"value": {
- "r": 237,
- "g": 189,
- "b": 214,
+ "r": 0,
+ "g": 69,
+ "b": 103,
"a": 1
},
"attributes": {
@@ -7886,9 +7886,9 @@
"8": {
"base": {
"value": {
- "r": 239,
- "g": 213,
- "b": 227,
+ "r": 0,
+ "g": 60,
+ "b": 97,
"a": 1
},
"attributes": {
@@ -7903,9 +7903,9 @@
"9": {
"base": {
"value": {
- "r": 240,
- "g": 230,
- "b": 237,
+ "r": 0,
+ "g": 54,
+ "b": 92,
"a": 1
},
"attributes": {
@@ -7922,9 +7922,9 @@
"1": {
"base": {
"value": {
- "r": 215,
- "g": 23,
- "b": 117,
+ "r": 15,
+ "g": 134,
+ "b": 152,
"a": 1
},
"attributes": {
@@ -7939,9 +7939,9 @@
"2": {
"base": {
"value": {
- "r": 197,
- "g": 22,
- "b": 109,
+ "r": 35,
+ "g": 145,
+ "b": 161,
"a": 1
},
"attributes": {
@@ -7956,9 +7956,9 @@
"3": {
"base": {
"value": {
- "r": 173,
- "g": 20,
- "b": 99,
+ "r": 63,
+ "g": 158,
+ "b": 173,
"a": 1
},
"attributes": {
@@ -7973,9 +7973,9 @@
"4": {
"base": {
"value": {
- "r": 145,
- "g": 18,
- "b": 88,
+ "r": 96,
+ "g": 175,
+ "b": 187,
"a": 1
},
"attributes": {
@@ -7990,9 +7990,9 @@
"5": {
"base": {
"value": {
- "r": 116,
- "g": 16,
- "b": 76,
+ "r": 129,
+ "g": 192,
+ "b": 201,
"a": 1
},
"attributes": {
@@ -8007,9 +8007,9 @@
"6": {
"base": {
"value": {
- "r": 87,
- "g": 14,
- "b": 64,
+ "r": 161,
+ "g": 208,
+ "b": 215,
"a": 1
},
"attributes": {
@@ -8024,9 +8024,9 @@
"7": {
"base": {
"value": {
- "r": 59,
- "g": 12,
- "b": 53,
+ "r": 194,
+ "g": 225,
+ "b": 229,
"a": 1
},
"attributes": {
@@ -8041,9 +8041,9 @@
"8": {
"base": {
"value": {
- "r": 35,
- "g": 10,
- "b": 43,
+ "r": 222,
+ "g": 238,
+ "b": 241,
"a": 1
},
"attributes": {
@@ -8058,9 +8058,9 @@
"9": {
"base": {
"value": {
- "r": 17,
- "g": 9,
- "b": 36,
+ "r": 242,
+ "g": 249,
+ "b": 250,
"a": 1
},
"attributes": {
diff --git a/token/dictionary/icons/invert.svg b/token/dictionary/icons/invert.svg
deleted file mode 100644
index 878a4fc..0000000
--- a/token/dictionary/icons/invert.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
\ No newline at end of file
diff --git a/token/dictionary/icons/link.svg b/token/dictionary/icons/link.svg
deleted file mode 100644
index e9969d5..0000000
--- a/token/dictionary/icons/link.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/token/dictionary/icons/paint.svg b/token/dictionary/icons/paint.svg
deleted file mode 100644
index 441ad9b..0000000
--- a/token/dictionary/icons/paint.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
\ No newline at end of file
diff --git a/token/dictionary/icons/storybook.svg b/token/dictionary/icons/storybook.svg
deleted file mode 100644
index a1712c0..0000000
--- a/token/dictionary/icons/storybook.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
\ No newline at end of file
diff --git a/token/dictionary/icons/wireframe.svg b/token/dictionary/icons/wireframe.svg
deleted file mode 100644
index bc12074..0000000
--- a/token/dictionary/icons/wireframe.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
\ No newline at end of file
diff --git a/token/dictionary/spacing.json b/token/dictionary/spacing.json
index 3459d64..9cd1515 100644
--- a/token/dictionary/spacing.json
+++ b/token/dictionary/spacing.json
@@ -10,23 +10,23 @@
}
},
"base": {
- "value": "0.246",
+ "value": "0.1481",
"attributes": {
"category": "size"
}
},
"bp-factor": {
"phone": {
- "value": "1.25"
+ "value": "1.35"
},
"tablet": {
- "value": "1.5625"
+ "value": "1.8225"
},
"laptop": {
- "value": "1.9531"
+ "value": "2.4604"
},
"desktop": {
- "value": "2.4414"
+ "value": "3.3215"
}
}
},
@@ -39,23 +39,23 @@
}
},
"base": {
- "value": "0.3567",
+ "value": "0.2222",
"attributes": {
"category": "size"
}
},
"bp-factor": {
"phone": {
- "value": "1.25"
+ "value": "1.35"
},
"tablet": {
- "value": "1.5625"
+ "value": "1.8225"
},
"laptop": {
- "value": "1.9531"
+ "value": "2.4604"
},
"desktop": {
- "value": "2.4414"
+ "value": "3.3215"
}
}
},
@@ -68,23 +68,23 @@
}
},
"base": {
- "value": "0.5172",
+ "value": "0.3333",
"attributes": {
"category": "size"
}
},
"bp-factor": {
"phone": {
- "value": "1.25"
+ "value": "1.35"
},
"tablet": {
- "value": "1.5625"
+ "value": "1.8225"
},
"laptop": {
- "value": "1.9531"
+ "value": "2.4604"
},
"desktop": {
- "value": "2.4414"
+ "value": "3.3215"
}
}
},
@@ -97,23 +97,23 @@
}
},
"base": {
- "value": "0.75",
+ "value": "0.5",
"attributes": {
"category": "size"
}
},
"bp-factor": {
"phone": {
- "value": "1.25"
+ "value": "1.35"
},
"tablet": {
- "value": "1.5625"
+ "value": "1.8225"
},
"laptop": {
- "value": "1.9531"
+ "value": "2.4604"
},
"desktop": {
- "value": "2.4414"
+ "value": "3.3215"
}
}
},
@@ -126,23 +126,23 @@
}
},
"base": {
- "value": "1.0875",
+ "value": "0.75",
"attributes": {
"category": "size"
}
},
"bp-factor": {
"phone": {
- "value": "1.25"
+ "value": "1.35"
},
"tablet": {
- "value": "1.5625"
+ "value": "1.8225"
},
"laptop": {
- "value": "1.9531"
+ "value": "2.4604"
},
"desktop": {
- "value": "2.4414"
+ "value": "3.3215"
}
}
},
@@ -155,23 +155,23 @@
}
},
"base": {
- "value": "1.5769",
+ "value": "1.125",
"attributes": {
"category": "size"
}
},
"bp-factor": {
"phone": {
- "value": "1.25"
+ "value": "1.35"
},
"tablet": {
- "value": "1.5625"
+ "value": "1.8225"
},
"laptop": {
- "value": "1.9531"
+ "value": "2.4604"
},
"desktop": {
- "value": "2.4414"
+ "value": "3.3215"
}
}
},
@@ -184,23 +184,23 @@
}
},
"base": {
- "value": "2.2865",
+ "value": "1.6875",
"attributes": {
"category": "size"
}
},
"bp-factor": {
"phone": {
- "value": "1.25"
+ "value": "1.35"
},
"tablet": {
- "value": "1.5625"
+ "value": "1.8225"
},
"laptop": {
- "value": "1.9531"
+ "value": "2.4604"
},
"desktop": {
- "value": "2.4414"
+ "value": "3.3215"
}
}
},
diff --git a/token/dictionary/text-color.json b/token/dictionary/text-color.json
index 776c5cd..ba85402 100644
--- a/token/dictionary/text-color.json
+++ b/token/dictionary/text-color.json
@@ -123,7 +123,7 @@
},
"copy": {
"base": {
- "value": "{ks.color.fg.alpha.3.base}",
+ "value": "{ks.color.fg.alpha.2.base}",
"attributes": {
"category": "color"
},
@@ -183,7 +183,7 @@
},
"copy-inverted": {
"base": {
- "value": "{ks.color.fg-inverted.alpha.3.base}",
+ "value": "{ks.color.fg-inverted.alpha.2.base}",
"attributes": {
"category": "color"
},
@@ -1323,4 +1323,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/token/dictionary/typo.json b/token/dictionary/typo.json
index 406d056..2721423 100644
--- a/token/dictionary/typo.json
+++ b/token/dictionary/typo.json
@@ -2,21 +2,21 @@
"ks": {
"font-family": {
"display": {
- "value": "Fredoka, Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif",
+ "value": "'NovelPro', Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif",
"token": {
"category": "Font Families",
"presenter": "FontFamily"
}
},
"copy": {
- "value": "Mulish, 'Helvetica Neue', Helvetica, Arial, sans-serif",
+ "value": "'NovelSansPro', 'Helvetica Neue', Helvetica, Arial, sans-serif",
"token": {
"category": "Font Families",
"presenter": "FontFamily"
}
},
"interface": {
- "value": "Mulish, system-ui, -apple-system, BlinkMacSystemFont, 'Avenir Next', 'Avenir', 'Segoe UI', 'Lucida Grande', 'Helvetica Neue', 'Helvetica', 'Fira Sans', 'Roboto', 'Noto', 'Droid Sans', 'Cantarell', 'Oxygen', 'Ubuntu', 'Franklin Gothic Medium', 'Century Gothic', 'Liberation Sans', sans-serif",
+ "value": "'NovelSansPro', system-ui, -apple-system, BlinkMacSystemFont, 'Avenir Next', 'Avenir', 'Segoe UI', 'Lucida Grande', 'Helvetica Neue', 'Helvetica', 'Fira Sans', 'Roboto', 'Noto', 'Droid Sans', 'Cantarell', 'Oxygen', 'Ubuntu', 'Franklin Gothic Medium', 'Century Gothic', 'Liberation Sans', sans-serif",
"token": {
"category": "Font Families",
"presenter": "FontFamily"
@@ -45,15 +45,8 @@
"presenter": "FontWeight"
}
},
- "medium": {
- "value": 500,
- "token": {
- "category": "Font Weights",
- "presenter": "FontWeight"
- }
- },
"semi-bold": {
- "value": 600,
+ "value": 500,
"token": {
"category": "Font Weights",
"presenter": "FontWeight"
@@ -71,20 +64,14 @@
"display": {
"bp-factor": {
"phone": {
- "value": 1.125
- },
- "tablet": {
"value": 1.25
},
- "laptop": {
- "value": 1.5
- },
- "desktop": {
- "value": 1.75
+ "tablet": {
+ "value": 1.35
}
},
"xxs-base": {
- "value": "0.68rem",
+ "value": "0.5428rem",
"attributes": {
"category": "size"
},
@@ -94,7 +81,7 @@
}
},
"xs-base": {
- "value": "0.833rem",
+ "value": "0.692rem",
"attributes": {
"category": "size"
},
@@ -104,7 +91,7 @@
}
},
"s-base": {
- "value": "1.0204rem",
+ "value": "0.8824rem",
"attributes": {
"category": "size"
},
@@ -114,7 +101,7 @@
}
},
"m-base": {
- "value": "1.25rem",
+ "value": "1.125rem",
"attributes": {
"category": "size"
},
@@ -124,7 +111,7 @@
}
},
"l-base": {
- "value": "1.5313rem",
+ "value": "1.4344rem",
"attributes": {
"category": "size"
},
@@ -134,7 +121,7 @@
}
},
"xl-base": {
- "value": "1.8758rem",
+ "value": "1.8288rem",
"attributes": {
"category": "size"
},
@@ -144,7 +131,7 @@
}
},
"xxl-base": {
- "value": "2.2978rem",
+ "value": "2.3318rem",
"attributes": {
"category": "size"
},
@@ -238,7 +225,7 @@
}
},
"xxs-base": {
- "value": "0.544rem",
+ "value": "0.7023rem",
"attributes": {
"category": "size"
},
@@ -248,7 +235,7 @@
}
},
"xs-base": {
- "value": "0.6664rem",
+ "value": "0.7901rem",
"attributes": {
"category": "size"
},
@@ -258,7 +245,7 @@
}
},
"s-base": {
- "value": "0.8163rem",
+ "value": "0.8889rem",
"attributes": {
"category": "size"
},
@@ -278,7 +265,7 @@
}
},
"l-base": {
- "value": "1.225rem",
+ "value": "1.125rem",
"attributes": {
"category": "size"
},
@@ -288,7 +275,7 @@
}
},
"xl-base": {
- "value": "1.5006rem",
+ "value": "1.2656rem",
"attributes": {
"category": "size"
},
@@ -298,7 +285,7 @@
}
},
"xxl-base": {
- "value": "1.8383rem",
+ "value": "1.4238rem",
"attributes": {
"category": "size"
},
@@ -315,7 +302,7 @@
}
},
"xxs-base": {
- "value": "0.612rem",
+ "value": "0.544rem",
"attributes": {
"category": "size"
},
@@ -325,7 +312,7 @@
}
},
"xs-base": {
- "value": "0.7497rem",
+ "value": "0.6664rem",
"attributes": {
"category": "size"
},
@@ -335,7 +322,7 @@
}
},
"s-base": {
- "value": "0.9184rem",
+ "value": "0.8163rem",
"attributes": {
"category": "size"
},
@@ -345,7 +332,7 @@
}
},
"m-base": {
- "value": "1.125rem",
+ "value": "1rem",
"attributes": {
"category": "size"
},
@@ -355,7 +342,7 @@
}
},
"l-base": {
- "value": "1.3781rem",
+ "value": "1.225rem",
"attributes": {
"category": "size"
},
@@ -365,7 +352,7 @@
}
},
"xl-base": {
- "value": "1.6882rem",
+ "value": "1.5006rem",
"attributes": {
"category": "size"
},
@@ -375,7 +362,7 @@
}
},
"xxl-base": {
- "value": "2.068rem",
+ "value": "1.8383rem",
"attributes": {
"category": "size"
},
@@ -389,96 +376,96 @@
"line-height": {
"display": {
"xxs": {
- "value": 1.15
+ "value": 1.25
},
"xs": {
- "value": 1.15
+ "value": 1.25
},
"s": {
- "value": 1.15
+ "value": 1.25
},
"m": {
- "value": 1.15
+ "value": 1.25
},
"l": {
- "value": 1.15
+ "value": 1.25
},
"xl": {
- "value": 1.15
+ "value": 1.25
},
"xxl": {
- "value": 1.15
+ "value": 1.25
}
},
"copy": {
"xxs": {
- "value": 1.5
+ "value": 1.35
},
"xs": {
- "value": 1.5
+ "value": 1.35
},
"s": {
- "value": 1.5
+ "value": 1.35
},
"m": {
- "value": 1.5
+ "value": 1.35
},
"l": {
- "value": 1.5
+ "value": 1.35
},
"xl": {
- "value": 1.5
+ "value": 1.35
},
"xxl": {
- "value": 1.5
+ "value": 1.35
}
},
"interface": {
"xxs": {
- "value": 1.5
+ "value": 1.35
},
"xs": {
- "value": 1.5
+ "value": 1.35
},
"s": {
- "value": 1.5
+ "value": 1.35
},
"m": {
- "value": 1.5
+ "value": 1.35
},
"l": {
- "value": 1.5
+ "value": 1.35
},
"xl": {
- "value": 1.5
+ "value": 1.35
},
"xxl": {
- "value": 1.5
+ "value": 1.35
}
},
"mono": {
"xxs": {
- "value": 1.5
+ "value": 1.35
},
"xs": {
- "value": 1.5
+ "value": 1.35
},
"s": {
- "value": 1.5
+ "value": 1.35
},
"m": {
- "value": 1.5
+ "value": 1.35
},
"l": {
- "value": 1.5
+ "value": 1.35
},
"xl": {
- "value": 1.5
+ "value": 1.35
},
"xxl": {
- "value": 1.5
+ "value": 1.35
}
}
}
}
-}
+}
\ No newline at end of file
diff --git a/token/fonts/Fredoka-Bold.woff b/token/fonts/Fredoka-Bold.woff
deleted file mode 100644
index 6dc57b3..0000000
Binary files a/token/fonts/Fredoka-Bold.woff and /dev/null differ
diff --git a/token/fonts/Fredoka-Bold.woff2 b/token/fonts/Fredoka-Bold.woff2
deleted file mode 100644
index b7ccfc1..0000000
Binary files a/token/fonts/Fredoka-Bold.woff2 and /dev/null differ
diff --git a/token/fonts/Fredoka-Light.woff b/token/fonts/Fredoka-Light.woff
deleted file mode 100644
index 7f8cd57..0000000
Binary files a/token/fonts/Fredoka-Light.woff and /dev/null differ
diff --git a/token/fonts/Fredoka-Light.woff2 b/token/fonts/Fredoka-Light.woff2
deleted file mode 100644
index 2bc6318..0000000
Binary files a/token/fonts/Fredoka-Light.woff2 and /dev/null differ
diff --git a/token/fonts/Fredoka-Medium.woff b/token/fonts/Fredoka-Medium.woff
deleted file mode 100644
index 909cc35..0000000
Binary files a/token/fonts/Fredoka-Medium.woff and /dev/null differ
diff --git a/token/fonts/Fredoka-Medium.woff2 b/token/fonts/Fredoka-Medium.woff2
deleted file mode 100644
index 2713166..0000000
Binary files a/token/fonts/Fredoka-Medium.woff2 and /dev/null differ
diff --git a/token/fonts/Fredoka-Regular.woff b/token/fonts/Fredoka-Regular.woff
deleted file mode 100644
index 2efeb23..0000000
Binary files a/token/fonts/Fredoka-Regular.woff and /dev/null differ
diff --git a/token/fonts/Fredoka-Regular.woff2 b/token/fonts/Fredoka-Regular.woff2
deleted file mode 100644
index 208620b..0000000
Binary files a/token/fonts/Fredoka-Regular.woff2 and /dev/null differ
diff --git a/token/fonts/Fredoka-SemiBold.woff b/token/fonts/Fredoka-SemiBold.woff
deleted file mode 100644
index bf40080..0000000
Binary files a/token/fonts/Fredoka-SemiBold.woff and /dev/null differ
diff --git a/token/fonts/Fredoka-SemiBold.woff2 b/token/fonts/Fredoka-SemiBold.woff2
deleted file mode 100644
index ca0c881..0000000
Binary files a/token/fonts/Fredoka-SemiBold.woff2 and /dev/null differ
diff --git a/token/fonts/Mulish-300.woff b/token/fonts/Mulish-300.woff
deleted file mode 100644
index d00cd05..0000000
Binary files a/token/fonts/Mulish-300.woff and /dev/null differ
diff --git a/token/fonts/Mulish-300.woff2 b/token/fonts/Mulish-300.woff2
deleted file mode 100644
index f1c16ce..0000000
Binary files a/token/fonts/Mulish-300.woff2 and /dev/null differ
diff --git a/token/fonts/Mulish-600.woff b/token/fonts/Mulish-600.woff
deleted file mode 100644
index d94e5c8..0000000
Binary files a/token/fonts/Mulish-600.woff and /dev/null differ
diff --git a/token/fonts/Mulish-600.woff2 b/token/fonts/Mulish-600.woff2
deleted file mode 100644
index df30d42..0000000
Binary files a/token/fonts/Mulish-600.woff2 and /dev/null differ
diff --git a/token/fonts/Mulish-800.woff b/token/fonts/Mulish-800.woff
deleted file mode 100644
index dd3db75..0000000
Binary files a/token/fonts/Mulish-800.woff and /dev/null differ
diff --git a/token/fonts/Mulish-800.woff2 b/token/fonts/Mulish-800.woff2
deleted file mode 100644
index 81743e7..0000000
Binary files a/token/fonts/Mulish-800.woff2 and /dev/null differ
diff --git a/token/fonts/Mulish-Regular.woff b/token/fonts/Mulish-Regular.woff
deleted file mode 100644
index 0b74c13..0000000
Binary files a/token/fonts/Mulish-Regular.woff and /dev/null differ
diff --git a/token/fonts/Mulish-Regular.woff2 b/token/fonts/Mulish-Regular.woff2
deleted file mode 100644
index 1dcff5a..0000000
Binary files a/token/fonts/Mulish-Regular.woff2 and /dev/null differ
diff --git a/token/fonts/novelpro-regular.woff b/token/fonts/novelpro-regular.woff
new file mode 100644
index 0000000..c73d556
Binary files /dev/null and b/token/fonts/novelpro-regular.woff differ
diff --git a/token/fonts/novelpro-regular.woff2 b/token/fonts/novelpro-regular.woff2
new file mode 100644
index 0000000..70ff457
Binary files /dev/null and b/token/fonts/novelpro-regular.woff2 differ
diff --git a/token/fonts/novelsanspro-bold.woff b/token/fonts/novelsanspro-bold.woff
new file mode 100644
index 0000000..cb779f3
Binary files /dev/null and b/token/fonts/novelsanspro-bold.woff differ
diff --git a/token/fonts/novelsanspro-bold.woff2 b/token/fonts/novelsanspro-bold.woff2
new file mode 100644
index 0000000..d9aa472
Binary files /dev/null and b/token/fonts/novelsanspro-bold.woff2 differ
diff --git a/token/fonts/novelsanspro-regular.woff b/token/fonts/novelsanspro-regular.woff
new file mode 100644
index 0000000..90a7219
Binary files /dev/null and b/token/fonts/novelsanspro-regular.woff differ
diff --git a/token/fonts/novelsanspro-regular.woff2 b/token/fonts/novelsanspro-regular.woff2
new file mode 100644
index 0000000..6866c8c
Binary files /dev/null and b/token/fonts/novelsanspro-regular.woff2 differ
diff --git a/types/components-presets.json b/types/components-presets.json
index 08ba026..9c6d403 100644
--- a/types/components-presets.json
+++ b/types/components-presets.json
@@ -1,32 +1,32 @@
{
"presets": [
{
- "id": 2277499,
+ "id": 2131857,
"name": "AboveLayout",
"preset": {
- "_uid": "76e28cfe-aa4c-445e-985f-909eda33927f",
+ "_uid": "72a59f77-134c-4f95-a4c8-14180ea94aae",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
"type": "image-text",
"layout": "above",
"component": "image-text",
"image_alt": "Agency",
- "image_src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "image_src": "//a.storyblok.com/f/284892/1260x840/26fae8d696/close-up-young-business-team-working.png",
"highlightText": false
},
- "component_id": 6257227,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:40.984Z",
- "updated_at": "2024-09-05T10:54:40.984Z",
- "image": "//a.storyblok.com/f/303819/760x829/71f13c169c/components-image-text-above-layout.png",
+ "component_id": 5657110,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:30.701Z",
+ "updated_at": "2024-04-15T18:24:30.701Z",
+ "image": "//a.storyblok.com/f/284892/760x829/4a57ddcff7/components-image-text-above-layout.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277536,
+ "id": 2131882,
"name": "AccentBackground",
"preset": {
- "_uid": "839d6bd7-254d-49b6-ab81-461442de9ff3",
+ "_uid": "c1cc69fc-b021-4cb1-a23e-26f579f23090",
"type": "section",
"style": "default",
"width": "default",
@@ -36,7 +36,7 @@
"spotlight": false,
"spaceAfter": "default",
"spaceBefore": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"headline_sub": "We can create something shining for you too!",
"content_align": "center",
"content_width": "unset",
@@ -49,27 +49,27 @@
"backgroundColor": "accent",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:56.988Z",
- "updated_at": "2024-09-05T10:54:56.988Z",
- "image": "//a.storyblok.com/f/303819/1440x928/883092baf8/layout-section-accent-background.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:38.972Z",
+ "updated_at": "2024-04-15T18:24:38.972Z",
+ "image": "//a.storyblok.com/f/284892/1440x928/25d96e003d/layout-section-accent-background.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277485,
+ "id": 2131843,
"name": "AlignBottom",
"preset": {
"sub": "Subheadline",
- "_uid": "70652b23-3652-4cfc-bb5f-f9648ec348cb",
+ "_uid": "d6354d31-ee99-4f71-b65f-82228d635a6a",
"text": "At Systemics, we believe in the power of technology to transform businesses. Our team of experienced professionals is dedicated to providing innovative solutions that meet the unique needs of your business.\n\nWe understand that every business is different, and that's why we offer custom solutions tailored to your specific business needs and requirements.",
"type": "cta",
"width": "wide",
"buttons": [
{
- "_uid": "b39de430-f00f-454d-bcb7-cfe3b3a902f2",
+ "_uid": "c0d77bee-12b4-419a-b10a-09e0511dbacb",
"icon": "person",
"type": "buttons",
"label": "Contact us",
@@ -77,7 +77,7 @@
"component": "buttons"
},
{
- "_uid": "184bb884-1acb-4eef-aac7-c6d714676ff4",
+ "_uid": "4d16aa4a-91b5-45f8-a0e7-bc95138dc79d",
"icon": "date",
"type": "buttons",
"label": "Book a meeting",
@@ -88,36 +88,36 @@
"headline": "Custom Solutions",
"component": "cta",
"fullWidth": true,
- "image_src": "//a.storyblok.com/f/303819/1109x1325/285fbf18a5/offset-image.png",
+ "image_src": "//a.storyblok.com/f/284892/1109x1325/98a6f223c6/offset-image.png",
"textAlign": "left",
"colorNeutral": false,
"contentAlign": "bottom",
"highlightText": false,
"image_padding": true,
- "backgroundImage": "//a.storyblok.com/f/303819/1650x800/670d8f6f70/grid-bg.svg",
+ "backgroundImage": "//a.storyblok.com/f/284892/1650x800/b8f13015db/grid-bg.svg",
"order_mobileImageLast": false,
"order_desktopImageLast": false
},
- "component_id": 6257223,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:34.981Z",
- "updated_at": "2024-09-05T10:54:34.981Z",
- "image": "//a.storyblok.com/f/303819/1680x1040/9018f3436d/components-cta-align-bottom.png",
+ "component_id": 5657095,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:25.967Z",
+ "updated_at": "2024-04-15T18:24:25.967Z",
+ "image": "//a.storyblok.com/f/284892/1680x1040/1dc9063e37/components-cta-align-bottom.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277514,
+ "id": 2131872,
"name": "AlternatingLayout",
"preset": {
- "_uid": "6c019a25-8285-4678-922b-17f12a2e0eb5",
+ "_uid": "009bf990-a27a-48e9-979c-335ac1231765",
"type": "testimonials",
"layout": "alternating",
"component": "testimonials",
"testimonial": [
{
- "_uid": "034b59af-14c5-4113-8f7f-3e481022c507",
+ "_uid": "f268893f-e53b-4727-9451-5b6f715214d1",
"name": "Emily Johnson",
"type": "testimonial",
"quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
@@ -125,10 +125,10 @@
"rating": 5,
"component": "testimonial",
"image_alt": "Alt Text Customer 1",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dacacb7216/author-emily.png"
},
{
- "_uid": "62a27f3e-a8f4-43b8-8abc-e4d697920b7c",
+ "_uid": "a9293440-2d2e-4a98-bb17-3c1feddacda7",
"name": "John Smith",
"type": "testimonial",
"quote": "Systemics's design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand's credibility. It's a partnership that continues to pay dividends.",
@@ -136,10 +136,10 @@
"rating": 4,
"component": "testimonial",
"image_alt": "Alt Text Customer 2",
- "image_src": "//a.storyblok.com/f/303819/250x250/777040b161/author-john.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dcb5e18d54/author-john.png"
},
{
- "_uid": "c400168a-d1a4-4f4f-85d5-519f0bcec326",
+ "_uid": "887df1c2-c6ed-4721-a887-cc2386ed42bf",
"name": "Alex Chen",
"type": "testimonial",
"quote": "As a startup, we needed to hit the ground running. Systemics's approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.",
@@ -147,31 +147,31 @@
"rating": 5,
"component": "testimonial",
"image_alt": "Alt Text Customer 3",
- "image_src": "//a.storyblok.com/f/303819/250x250/cdacfff2f6/author-alex.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/541c60dfa1/author-alex.png"
}
]
},
- "component_id": 6257231,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:47.759Z",
- "updated_at": "2024-09-05T10:54:47.759Z",
- "image": "//a.storyblok.com/f/303819/1000x1080/7d0b12bf32/components-testimonials-alternating-layout.png",
+ "component_id": 5657116,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:35.707Z",
+ "updated_at": "2024-04-15T18:24:35.707Z",
+ "image": "//a.storyblok.com/f/284892/1000x1080/668327269e/components-testimonials-alternating-layout.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277483,
+ "id": 2131841,
"name": "AngledImage",
"preset": {
"sub": "Subheadline",
- "_uid": "4bd5cd0b-70a1-43a4-940d-b2d74765bcf7",
+ "_uid": "c67cbd8e-dd8e-4c23-8cbe-d8d56a042cb1",
"text": "We value efficiency without compromising quality. Our secret weapon? kickstartDS, a revolutionary code-first and open source framework for creating design systems.\n\nThis tool accelerates our development, saving you valuable time and helping us deliver top-notch results faster.",
"type": "cta",
"width": "wide",
"buttons": [
{
- "_uid": "64ec0d64-9f06-4486-a6dd-33ba16ca6b77",
+ "_uid": "0f890da4-da97-4364-b512-3baa9c44d12c",
"icon": "person",
"type": "buttons",
"label": "Contact us",
@@ -179,7 +179,7 @@
"component": "buttons"
},
{
- "_uid": "08e459ef-0bf9-42df-9153-eb515f78e7d0",
+ "_uid": "f3f97627-25ad-4e31-8c47-e586ca58772f",
"icon": "date",
"type": "buttons",
"label": "Book a meeting",
@@ -190,7 +190,7 @@
"headline": "Our **Approach** to Design Systems",
"component": "cta",
"fullWidth": true,
- "image_src": "//a.storyblok.com/f/303819/1363x1761/2468b00a16/angled-image.png",
+ "image_src": "//a.storyblok.com/f/284892/1363x1761/a74bddb1a6/angled-image.png",
"textAlign": "left",
"colorNeutral": false,
"contentAlign": "center",
@@ -199,61 +199,26 @@
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 6257223,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:34.746Z",
- "updated_at": "2024-09-05T10:54:34.746Z",
- "image": "//a.storyblok.com/f/303819/1670x910/46b6f7fb39/components-cta-angled-image.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277528,
- "name": "AtmosphericVideoWithOverlay",
- "preset": {
- "sub": "Where Creativity Meets Technology",
- "_uid": "87824181-fbd2-4149-abb4-e4eec936daa2",
- "text": "Experience the fusion of creativity and technology in our state-of-the-art office.",
- "type": "video-curtain",
- "buttons": [
- {
- "_uid": "d83141ff-278b-4b8b-8b02-9ab14e3fbdde",
- "type": "buttons",
- "label": "Explore More",
- "component": "buttons"
- }
- ],
- "overlay": true,
- "headline": "Step into Our Innovative Workspace",
- "component": "video-curtain",
- "colorNeutral": false,
- "textPosition": "center",
- "highlightText": false,
- "video_srcMobile": "//a.storyblok.com/f/303819/1280x720/96dea5c0be/video-720.mp4",
- "video_srcTablet": "//a.storyblok.com/f/303819/1280x720/96dea5c0be/video-720.mp4",
- "video_srcDesktop": "//a.storyblok.com/f/303819/1280x720/96dea5c0be/video-720.mp4"
- },
- "component_id": 6257237,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:53.982Z",
- "updated_at": "2024-09-05T10:54:53.982Z",
- "image": "//a.storyblok.com/f/303819/1559x720/6c966bf236/components-video-curtain-atmospheric-video-with-overlay.png",
+ "component_id": 5657095,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:25.170Z",
+ "updated_at": "2024-04-15T18:24:25.170Z",
+ "image": "//a.storyblok.com/f/284892/1670x910/b11575f242/components-cta-angled-image.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277477,
+ "id": 2131835,
"name": "Banner",
"preset": {
"sub": "Start your journey today.",
- "_uid": "303c4272-306e-433b-80f9-26dbc4d1312f",
+ "_uid": "b8a00dce-0cf1-43c3-a37a-e7f484285183",
"text": "Get started with our design system today and experience a new level of efficiency and consistency in your projects.",
"type": "cta",
"buttons": [
{
- "_uid": "2612556e-870b-4e15-8f81-65677f2693f1",
+ "_uid": "c76eff60-6bca-484f-a3e5-154c2f2b3dcc",
"icon": "person",
"type": "buttons",
"label": "Contact Us",
@@ -261,7 +226,7 @@
"component": "buttons"
},
{
- "_uid": "bef7182a-e5e8-495f-9df8-c998dd2abf25",
+ "_uid": "42fbe610-e39c-41f0-8775-088cbdaf555d",
"icon": "date",
"type": "buttons",
"label": "Learn More",
@@ -280,42 +245,42 @@
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 6257223,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:32.755Z",
- "updated_at": "2024-09-05T10:54:32.755Z",
- "image": "//a.storyblok.com/f/303819/1000x472/f1941a7bd7/components-cta-banner.png",
+ "component_id": 5657095,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:23.174Z",
+ "updated_at": "2024-04-15T18:24:23.174Z",
+ "image": "//a.storyblok.com/f/284892/1000x472/d3d5681be9/components-cta-banner.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277498,
+ "id": 2131856,
"name": "BesideRightLayout",
"preset": {
- "_uid": "8c9a8e66-cac7-4077-b94c-ba0304ad83c4",
+ "_uid": "d70ce907-a17b-4b5a-8ed1-1509dcd002c8",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
"type": "image-text",
"layout": "beside-right",
"component": "image-text",
"image_alt": "Agency",
- "image_src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "image_src": "//a.storyblok.com/f/284892/1260x840/26fae8d696/close-up-young-business-team-working.png",
"highlightText": false
},
- "component_id": 6257227,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:40.887Z",
- "updated_at": "2024-09-05T10:54:40.887Z",
- "image": "//a.storyblok.com/f/303819/1240x515/378da43f36/components-image-text-beside-right-layout.png",
+ "component_id": 5657110,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:30.224Z",
+ "updated_at": "2024-04-15T18:24:30.224Z",
+ "image": "//a.storyblok.com/f/284892/1240x515/6b4ad645ea/components-image-text-beside-right-layout.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277537,
+ "id": 2131883,
"name": "BoldBackground",
"preset": {
- "_uid": "c8c1e6fc-9084-4ded-9ca6-82baab4ca996",
+ "_uid": "65b9f9af-2975-4e9e-b050-9a0d68467f76",
"type": "section",
"style": "default",
"width": "default",
@@ -325,7 +290,7 @@
"spotlight": false,
"spaceAfter": "default",
"spaceBefore": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"headline_sub": "We can create something shining for you too!",
"content_align": "center",
"content_width": "unset",
@@ -338,20 +303,20 @@
"backgroundColor": "bold",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:57.760Z",
- "updated_at": "2024-09-05T10:54:57.760Z",
- "image": "//a.storyblok.com/f/303819/1440x928/c6ead652fb/layout-section-bold-background.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:39.225Z",
+ "updated_at": "2024-04-15T18:24:39.225Z",
+ "image": "//a.storyblok.com/f/284892/1440x928/58401dd86b/layout-section-bold-background.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277531,
+ "id": 2131877,
"name": "Cards",
"preset": {
- "_uid": "04ba7be5-3d2d-4841-8953-093c6b9b050e",
+ "_uid": "b567a4b4-a261-4202-a69c-b1d47fa79c89",
"type": "section",
"style": "default",
"width": "default",
@@ -373,20 +338,20 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:55.762Z",
- "updated_at": "2024-09-05T10:54:55.762Z",
- "image": "//a.storyblok.com/f/303819/1440x928/41f21c45ec/layout-section-cards.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:37.231Z",
+ "updated_at": "2024-04-15T18:24:37.231Z",
+ "image": "//a.storyblok.com/f/284892/1440x928/b710510df7/layout-section-cards.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277516,
+ "id": 2131874,
"name": "Centered",
"preset": {
- "_uid": "bd4ee2ef-fcb3-43c1-85e1-c3648f099e8d",
+ "_uid": "47f29c9f-c6ee-4f48-8556-bebdee8de255",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
"type": "text",
"align": "center",
@@ -394,60 +359,60 @@
"component": "text",
"highlightText": false
},
- "component_id": 6257232,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:48.753Z",
- "updated_at": "2024-09-05T10:54:48.753Z",
- "image": "//a.storyblok.com/f/303819/1000x407/525c81f2dc/components-text-centered.png",
+ "component_id": 5657117,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:36.231Z",
+ "updated_at": "2024-04-15T18:24:36.231Z",
+ "image": "//a.storyblok.com/f/284892/1000x407/acf9f936b2/components-text-centered.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277500,
+ "id": 2131858,
"name": "CenteredWithButton",
"preset": {
- "_uid": "f3b298cc-cd4b-4ed3-90ca-5149aef98e16",
+ "_uid": "dc8e0c15-a520-4dc8-9fc2-3e24a12a7127",
"logo": [
{
"alt": "Logo 1",
- "src": "//a.storyblok.com/f/303819/132x35/285d763921/logoipsum-212.svg",
- "_uid": "4621cca3-eb9c-4379-b200-09fd17ec702c",
+ "src": "//a.storyblok.com/f/284892/132x35/bf23496c05/logoipsum-212.svg",
+ "_uid": "0a9f814d-4c8b-4ab6-9626-da678e27a670",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 2",
- "src": "//a.storyblok.com/f/303819/124x32/17b256999a/logoipsum-217.svg",
- "_uid": "68a56364-c6a0-4aa7-a5f2-e07d66883601",
+ "src": "//a.storyblok.com/f/284892/124x32/dbdc27fcfb/logoipsum-217.svg",
+ "_uid": "ca4dcd51-9503-4873-9909-1866141b1316",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 3",
- "src": "//a.storyblok.com/f/303819/154x44/dc317b6600/logoipsum-239.svg",
- "_uid": "044cdbb3-d581-4258-9a0b-e08a554b6a61",
+ "src": "//a.storyblok.com/f/284892/154x44/024bdd3f3c/logoipsum-239.svg",
+ "_uid": "21c87a88-95e4-45a6-8c6d-fca83e1b162a",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 4",
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
- "_uid": "d9954a01-545a-4530-b330-30d9ea43cc5e",
+ "src": "//a.storyblok.com/f/284892/155x40/54e55b2b57/logoipsum-244.svg",
+ "_uid": "a4594cd9-a1ea-4128-bf41-1ceb8c77ba44",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 5",
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
- "_uid": "7cac45d9-bdc3-45e2-9392-b24706aee824",
+ "src": "//a.storyblok.com/f/284892/171x32/ab31fc0e2a/logoipsum-250.svg",
+ "_uid": "bf24cf18-c8c8-43b8-8ffe-93378d515bb0",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 6",
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
- "_uid": "7483c27c-8d6f-4ef1-a174-53c19d9fa170",
+ "src": "//a.storyblok.com/f/284892/218x40/7c4584ee29/logoipsum-286.svg",
+ "_uid": "db384088-ce91-455b-bba9-8a1057ab7057",
"type": "logo",
"component": "logo"
}
@@ -463,33 +428,33 @@
"cta_toggle": true,
"logosPerRow": 5
},
- "component_id": 6257228,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:41.884Z",
- "updated_at": "2024-09-05T10:54:41.884Z",
- "image": "//a.storyblok.com/f/303819/1000x598/2d967b66e6/components-logos-centered-with-button.png",
+ "component_id": 5657111,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:30.968Z",
+ "updated_at": "2024-04-15T18:24:30.968Z",
+ "image": "//a.storyblok.com/f/284892/1000x598/2c37e1d7ea/components-logos-centered-with-button.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277484,
+ "id": 2131842,
"name": "ColoredBanner",
"preset": {
"sub": "Subheadline",
- "_uid": "2e66b530-478d-4670-8af9-2f8b874abb9d",
+ "_uid": "cd3f824a-f214-4982-83ea-b579808fd658",
"text": "Leverage our expertise in creating scalable and robust applications using modern technologies.",
"type": "cta",
"buttons": [
{
- "_uid": "d1c9f3b3-c50c-4287-90ad-5d520f79332a",
+ "_uid": "40b6b6cd-85d3-4393-9d96-6a0ffe05e0be",
"type": "buttons",
"label": "Learn More",
"target": "#",
"component": "buttons"
},
{
- "_uid": "6bda003c-a334-4898-8288-cf10fda536be",
+ "_uid": "13e6eb38-d688-4e00-ac98-dca95ed6625a",
"type": "buttons",
"label": "Contact Us",
"target": "#",
@@ -508,20 +473,20 @@
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 6257223,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:34.890Z",
- "updated_at": "2024-09-05T10:54:34.890Z",
- "image": "//a.storyblok.com/f/303819/1350x500/ce25a78eca/components-cta-colored-banner.png",
+ "component_id": 5657095,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:25.733Z",
+ "updated_at": "2024-04-15T18:24:25.733Z",
+ "image": "//a.storyblok.com/f/284892/1350x500/df4771f86b/components-cta-colored-banner.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277538,
+ "id": 2131884,
"name": "ColorfulGradient",
"preset": {
- "_uid": "35c3f7ad-4216-4c47-a6ab-c7a687775fdd",
+ "_uid": "0fd5d5a6-9225-4d82-8bd5-d0eb575d73cb",
"type": "section",
"style": "horizontalGradient",
"width": "default",
@@ -531,7 +496,7 @@
"spotlight": false,
"spaceAfter": "default",
"spaceBefore": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"headline_sub": "We can create something shining for you too!",
"content_align": "center",
"content_width": "unset",
@@ -544,205 +509,27 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:57.889Z",
- "updated_at": "2024-09-05T10:54:57.889Z",
- "image": "//a.storyblok.com/f/303819/1440x928/152b0f3f78/layout-section-colorful-gradient.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277523,
- "name": "ColorfulTextWithIllustrations",
- "preset": {
- "_uid": "eb0c31e0-5b36-4a0d-a139-67f148fe40a6",
- "tile": [
- {
- "sub": "We believe in clear and effective communication. Our team members are always ready to share ideas and solutions.",
- "_uid": "8fc2242b-3e6c-427f-b53f-0e9cbdcada17",
- "type": "tile",
- "headline": "Effective Communication",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/679x679/1ef30ce6cd/mosaic-2_1.svg",
- "textColor": "#FCFF7D",
- "button_label": "Book a meeting",
- "button_toggle": false
- },
- {
- "sub": "We make decisions based on data. Our strategies are always backed by solid facts and figures.",
- "_uid": "6e427a5d-bc64-4bd0-a4e6-561fa4e27092",
- "type": "tile",
- "headline": "Data-Driven Decisions",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/679x679/a55500a7a7/mosaic-2_2.svg",
- "textColor": "#7DD0FF",
- "button_label": "Book a meeting",
- "button_toggle": false
- },
- {
- "sub": "We are committed to creating innovative designs. Our team is always exploring new ways to improve user experience.",
- "_uid": "92f32ee3-0b69-4458-a823-07759ec43546",
- "type": "tile",
- "headline": "Innovative Design",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/679x679/bc34d75228/mosaic-2_3.svg",
- "textColor": "#FF7DC3",
- "button_label": "Book a meeting",
- "button_toggle": false
- }
- ],
- "type": "mosaic",
- "layout": "textLeft",
- "component": "mosaic",
- "largeHeadlines": false
- },
- "component_id": 6257235,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:51.884Z",
- "updated_at": "2024-09-05T10:54:51.884Z",
- "image": "//a.storyblok.com/f/303819/1010x1520/e0c38888ac/components-mosaic-colorful-text-with-illustrations.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277522,
- "name": "ColorfulTiles",
- "preset": {
- "_uid": "eba65423-9a0f-4017-af51-ee5da8ea776c",
- "tile": [
- {
- "_uid": "c8b502bb-7616-44c8-911d-613e8a847733",
- "text": "Our team thrives in a collaborative environment, fostering creativity and innovation.",
- "type": "tile",
- "headline": "Collaborative Environment",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/996x998/d67ddcd6cb/mosaic-1.png",
- "button_label": "Book a meeting",
- "button_toggle": true,
- "backgroundColor": "#81005a"
- },
- {
- "_uid": "f27845b2-132f-4bca-baf2-f1c4d56b0104",
- "text": "Our state-of-the-art office facilities inspire productivity and efficiency.",
- "type": "tile",
- "headline": "Modern Infrastructure",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/996x998/c2b07a3cf3/mosaic-2.png",
- "button_label": "Book a meeting",
- "button_toggle": true,
- "backgroundColor": "#003380"
- },
- {
- "_uid": "8025e3f4-7dcd-46bb-b796-37b8e6791954",
- "text": "We believe in the power of teamwork. Together, we can achieve great things.",
- "type": "tile",
- "headline": "Teamwork",
- "component": "tile",
- "image_src": "//a.storyblok.com/f/303819/996x998/5f9ead8fb0/mosaic-3.png",
- "button_label": "Book a meeting",
- "button_toggle": true,
- "backgroundColor": "#004241"
- }
- ],
- "type": "mosaic",
- "layout": "alternate",
- "component": "mosaic",
- "largeHeadlines": false
- },
- "component_id": 6257235,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:51.761Z",
- "updated_at": "2024-09-05T10:54:51.761Z",
- "image": "//a.storyblok.com/f/303819/1010x1520/92bfb7116d/components-mosaic-colorful-tiles.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277529,
- "name": "ColorNeutralText",
- "preset": {
- "sub": "Where Every Idea Matters",
- "_uid": "ba054261-19e3-4291-ac03-eb03d45acf38",
- "text": "Be part of a creative journey where every idea is valued and innovation is celebrated.",
- "type": "video-curtain",
- "buttons": [
- {
- "_uid": "844e6232-3cf6-4605-ac22-2f780140ea58",
- "type": "buttons",
- "label": "Join Us",
- "component": "buttons"
- }
- ],
- "overlay": true,
- "headline": "Join Our Creative Journey",
- "component": "video-curtain",
- "colorNeutral": true,
- "textPosition": "left",
- "highlightText": true,
- "video_srcMobile": "//a.storyblok.com/f/303819/1920x1080/5186e0bebd/video-agency.mp4",
- "video_srcTablet": "//a.storyblok.com/f/303819/1920x1080/5186e0bebd/video-agency.mp4",
- "video_srcDesktop": "//a.storyblok.com/f/303819/1920x1080/5186e0bebd/video-agency.mp4"
- },
- "component_id": 6257237,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:54.764Z",
- "updated_at": "2024-09-05T10:54:54.764Z",
- "image": "//a.storyblok.com/f/303819/1559x720/b78a8c3700/components-video-curtain-color-neutral-text.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277530,
- "name": "ColorNeutralVideo",
- "preset": {
- "sub": "Where Ideas Come to Life",
- "_uid": "e497896e-f41a-4b02-9d78-2373c38d1208",
- "text": "Experience the synergy of creativity and teamwork in our modern office environment.",
- "type": "video-curtain",
- "buttons": [
- {
- "_uid": "68ded6c3-d0d0-4fef-893f-4d2d9118308d",
- "type": "buttons",
- "label": "Discover More",
- "component": "buttons"
- }
- ],
- "overlay": true,
- "headline": "Welcome to Our Collaborative Space",
- "component": "video-curtain",
- "colorNeutral": false,
- "textPosition": "center",
- "highlightText": true,
- "video_srcMobile": "//a.storyblok.com/f/303819/1920x1080/95a5cdea18/handshake-bw.mp4",
- "video_srcTablet": "//a.storyblok.com/f/303819/1920x1080/95a5cdea18/handshake-bw.mp4",
- "video_srcDesktop": "//a.storyblok.com/f/303819/1920x1080/95a5cdea18/handshake-bw.mp4"
- },
- "component_id": 6257237,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:54.893Z",
- "updated_at": "2024-09-05T10:54:54.893Z",
- "image": "//a.storyblok.com/f/303819/1559x720/834a78153a/components-video-curtain-color-neutral-video.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:39.709Z",
+ "updated_at": "2024-04-15T18:24:39.709Z",
+ "image": "//a.storyblok.com/f/284892/1440x928/ddf68d31c9/layout-section-colorful-gradient.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277481,
+ "id": 2131839,
"name": "ContactBanner",
"preset": {
"sub": "Chat with us about getting your product or platform to market faster",
- "_uid": "5ad0fae1-d440-4f4e-b1c8-2296ebf972b1",
+ "_uid": "f04cd540-11c2-4f4b-ba8f-e2236ff88692",
"text": "Our modular design approach allows for flexibility and scalability in your application's architecture.",
"type": "cta",
"width": "wide",
"buttons": [
{
- "_uid": "83ef1813-9527-4789-94eb-d08417441536",
+ "_uid": "2eb69dfa-011c-4060-b130-6369da0128c3",
"icon": "person",
"type": "buttons",
"label": "Contact us",
@@ -750,7 +537,7 @@
"component": "buttons"
},
{
- "_uid": "79c02cbf-110d-4bbc-a871-9d1be17af270",
+ "_uid": "5d207c35-5cd3-4d2e-b37a-9a17c34a269a",
"icon": "date",
"type": "buttons",
"label": "Book a meeting",
@@ -761,7 +548,7 @@
"headline": "Get in touch",
"component": "cta",
"fullWidth": true,
- "image_src": "//a.storyblok.com/f/303819/956x637/c4ca1fe43c/contact-person.png",
+ "image_src": "//a.storyblok.com/f/284892/956x637/7e463a69e8/contact-person.png",
"textAlign": "left",
"colorNeutral": false,
"contentAlign": "center",
@@ -770,23 +557,23 @@
"order_mobileImageLast": false,
"order_desktopImageLast": false
},
- "component_id": 6257223,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:33.885Z",
- "updated_at": "2024-09-05T10:54:33.885Z",
- "image": "//a.storyblok.com/f/303819/1600x560/e8bdb29977/components-cta-contact-banner.png",
+ "component_id": 5657095,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:24.707Z",
+ "updated_at": "2024-04-15T18:24:24.707Z",
+ "image": "//a.storyblok.com/f/284892/1600x560/b5ce3a7aee/components-cta-contact-banner.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277505,
+ "id": 2131863,
"name": "CountUpWithDescription",
"preset": {
- "_uid": "90540b19-843c-4ddb-8dbe-56481925452a",
+ "_uid": "9953ed22-fc80-4ccf-b568-4e96783f5513",
"stat": [
{
- "_uid": "17477753-2c45-4c5c-aed9-eabbaeaa6760",
+ "_uid": "cbc26e3d-1a29-4963-8054-b91f25ea54eb",
"type": "stat",
"title": "Users",
"number": 1500,
@@ -794,7 +581,7 @@
"description": "Experience the power of our platform, embraced by a vast community of users. Our user base is diverse and dynamic, including both active and inactive members. Join us and become part of this ever-growing community."
},
{
- "_uid": "a9fba512-c270-4939-ac05-9c356f9b5575",
+ "_uid": "c5b76d3f-07ed-4231-a199-7823d23cf944",
"type": "stat",
"title": "Subscribers",
"number": 350,
@@ -805,23 +592,23 @@
"type": "stats",
"component": "stats"
},
- "component_id": 6257229,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:43.895Z",
- "updated_at": "2024-09-05T10:54:43.895Z",
- "image": "//a.storyblok.com/f/303819/700x480/179df4ceed/components-stats-count-up-with-description.png",
+ "component_id": 5657114,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:32.702Z",
+ "updated_at": "2024-04-15T18:24:32.702Z",
+ "image": "//a.storyblok.com/f/284892/700x480/f62bc54b82/components-stats-count-up-with-description.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277504,
+ "id": 2131862,
"name": "CountUpWithIcons",
"preset": {
- "_uid": "7f070e34-cd9e-4de9-b5d2-84587b97da67",
+ "_uid": "0c0a2388-5c52-490d-8c9e-81418cac7ada",
"stat": [
{
- "_uid": "b89feea9-f5e4-4ac8-b6ec-7c9093c68433",
+ "_uid": "36ace27d-6de5-4eb7-84a8-126df632b5c2",
"icon": "person",
"type": "stat",
"title": "Users",
@@ -829,7 +616,7 @@
"component": "stat"
},
{
- "_uid": "f8b1b38f-86dd-428e-b1ee-a69fad5c078e",
+ "_uid": "8457d099-9899-4241-8e5f-ee66e065dd78",
"icon": "star",
"type": "stat",
"title": "Subscribers",
@@ -837,7 +624,7 @@
"component": "stat"
},
{
- "_uid": "178f7c39-756e-4cbf-ab53-ed77e65431b0",
+ "_uid": "37fb42a8-1491-45e4-97b9-547f1961dc19",
"icon": "map",
"type": "stat",
"title": "Locations",
@@ -848,170 +635,86 @@
"type": "stats",
"component": "stats"
},
- "component_id": 6257229,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:43.754Z",
- "updated_at": "2024-09-05T10:54:43.754Z",
- "image": "//a.storyblok.com/f/303819/790x480/093157157d/components-stats-count-up-with-icons.png",
+ "component_id": 5657114,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:32.229Z",
+ "updated_at": "2024-04-15T18:24:32.229Z",
+ "image": "//a.storyblok.com/f/284892/790x480/4cf6f57dfb/components-stats-count-up-with-icons.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277543,
+ "id": 2131833,
"name": "Default",
"preset": {
- "_uid": "4fe5f85f-7a94-4368-a06f-d3f0c6d781ac",
+ "_uid": "06f3ddbe-31a6-4cb4-a7c6-a95beb1208a5",
"date": "12/30/2022",
"tags": [
- {
- "_uid": "9f0527a4-fae2-4adc-9214-37e08a09e7df",
- "type": "tags",
- "entry": "Technology",
- "component": "tags"
- },
- {
- "_uid": "2f2b99b0-8513-4ab5-a000-82ce554c3d39",
- "type": "tags",
- "entry": "AI",
- "component": "tags"
- }
+ "Technology",
+ "AI"
],
- "type": "blog-teaser",
- "image": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "type": "blog-head",
+ "image": "//a.storyblok.com/f/284892/1260x840/26fae8d696/close-up-young-business-team-working.png",
"headline": "The Future of AI",
- "link_url": "https://example.com",
- "component": "blog-teaser",
- "link_label": "Read more",
- "teaserText": "Dive into the future of AI in this detailed blog post. Discover how technology is rapidly evolving, the impact of AI on various industries, and what to expect in the coming years. Learn about the latest advancements, challenges, and the potential solutions that AI brings to the table.",
- "author_name": "Jane Smith",
- "readingTime": "5 min read",
- "author_image": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
- "author_title": "Senior AI Researcher"
+ "component": "blog-head"
},
- "component_id": 6257240,
- "space_id": 303819,
- "created_at": "2024-09-05T10:55:00.011Z",
- "updated_at": "2024-09-05T10:55:00.011Z",
- "image": "//a.storyblok.com/f/303819/1000x504/9e533dfe80/blog-blog-teaser-default.png",
+ "component_id": 5657091,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:22.717Z",
+ "updated_at": "2024-04-15T18:24:22.717Z",
+ "image": "//a.storyblok.com/f/284892/1000x863/2b7ceb9294/blog-blog-head-default.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277544,
+ "id": 2131844,
"name": "Default",
"preset": {
- "_uid": "f7b8d454-eedd-4787-af5b-13bc8c4994c8",
+ "_uid": "828917b6-ccce-4dfc-bb5a-935edde21524",
"date": "12/30/2022",
"tags": [
- {
- "_uid": "408e2fe2-f1fc-4cbe-99c0-3d0ca4e560f8",
- "type": "tags",
- "entry": "Technology",
- "component": "tags"
- },
- {
- "_uid": "a5bdf8d8-2831-48dc-af51-c93de4e1f4a6",
- "type": "tags",
- "entry": "AI",
- "component": "tags"
- }
+ "Technology",
+ "AI"
],
- "type": "blog-head",
- "image": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
+ "type": "blog-teaser",
+ "image": "//a.storyblok.com/f/284892/1260x840/26fae8d696/close-up-young-business-team-working.png",
"headline": "The Future of AI",
- "component": "blog-head"
- },
- "component_id": 6257242,
- "space_id": 303819,
- "created_at": "2024-09-05T10:55:00.987Z",
- "updated_at": "2024-09-05T10:55:00.987Z",
- "image": "//a.storyblok.com/f/303819/1000x863/d0abca10ad/blog-blog-head-default.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277545,
- "name": "Default",
- "preset": {
- "_uid": "c76309bf-9301-45a2-ada9-8c2f2f3c82d1",
- "name": "Jane Smith",
- "type": "blog-author",
- "links": [
- {
- "_uid": "a3276cc1-1696-4834-bcc4-1ae540ab0519",
- "href": "tel:+4922868896620",
- "icon": "twitter",
- "type": "links",
- "label": "jane_smith",
- "newTab": false,
- "component": "links"
- },
- {
- "_uid": "74646dc6-6b3c-4324-96e8-7c9059c36d11",
- "href": "mailto:mail@example.com",
- "icon": "email",
- "type": "links",
- "label": "jane.smith@example.com",
- "newTab": false,
- "component": "links"
- }
- ],
- "byline": "CEO at Company",
- "component": "blog-author",
- "image_alt": "Picture of Jane Smith",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
- "image_fullWidth": false,
- "image_aspectRatio": "square"
+ "link_url": "https://example.com",
+ "component": "blog-teaser",
+ "link_label": "Read more",
+ "teaserText": "Dive into the future of AI in this detailed blog post. Discover how technology is rapidly evolving, the impact of AI on various industries, and what to expect in the coming years. Learn about the latest advancements, challenges, and the potential solutions that AI brings to the table.",
+ "author_name": "Jane Smith",
+ "readingTime": "5 min read",
+ "author_image": "//a.storyblok.com/f/284892/250x250/dacacb7216/author-emily.png",
+ "author_title": "Senior AI Researcher"
},
- "component_id": 6257244,
- "space_id": 303819,
- "created_at": "2024-09-05T10:55:01.984Z",
- "updated_at": "2024-09-05T10:55:01.984Z",
- "image": "//a.storyblok.com/f/303819/390x646/3ad4c977cf/blog-blog-author-default.png",
+ "component_id": 5657097,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:26.170Z",
+ "updated_at": "2024-04-15T18:24:26.170Z",
+ "image": "//a.storyblok.com/f/284892/1000x504/fb1ef6d78b/blog-blog-teaser-default.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277546,
+ "id": 2131834,
"name": "Default",
"preset": {
- "_uid": "977d89ef-9408-4059-b735-2dc19b5debe3",
+ "_uid": "3b5c575e-af9f-49fa-919a-673fcf6ce33e",
"date": "12/30/2022",
"type": "blog-aside",
- "title": "Blog Post",
"component": "blog-aside",
- "author__uid": "949fce95-d0c3-42b3-ab39-73054a7aedf2",
"author_name": "Jane Smith",
- "author_type": "blog-author",
"readingTime": "5 min read",
- "author_image": {
- "alt": "Picture of Jane Smith",
- "src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png",
- "fullWidth": false,
- "aspectRatio": "square"
- },
- "author_links": [
- {
- "href": "tel:+4922868896620",
- "icon": "twitter",
- "label": "jane_smith",
- "newTab": false
- },
- {
- "href": "mailto:mail@example.com",
- "icon": "email",
- "label": "jane.smith@example.com",
- "newTab": false
- }
- ],
+ "author_email": "jane.smith@example.com",
+ "author_image": "//a.storyblok.com/f/284892/250x250/dacacb7216/author-emily.png",
"author_byline": "CEO at Company",
"socialSharing": [
{
- "_uid": "9ab54040-0abf-49f5-8997-42706e097b86",
+ "_uid": "439eac50-3ad1-48d4-bc02-5359fe3f9c3f",
"href": "https://twitter.com/share?text=The%20Future%20of%20AI&url=https://example.com/blog/the-future-of-ai",
"icon": "twitter",
"type": "socialSharing",
@@ -1019,7 +722,7 @@
"component": "socialSharing"
},
{
- "_uid": "6c14d751-d1ea-439d-a580-eb9380e9c071",
+ "_uid": "e0060cea-270b-4762-ac1a-602ac39f62c6",
"href": "https://www.linkedin.com/shareArticle?mini=true&url=https://example.com/blog/the-future-of-ai&title=The%20Future%20of%20AI&summary=The%20Future%20of%20AI&source=LinkedIn",
"icon": "linkedin",
"type": "socialSharing",
@@ -1027,41 +730,41 @@
"component": "socialSharing"
}
],
- "author_component": "blog-author"
+ "author_twitter": "jane_smith"
},
- "component_id": 6257246,
- "space_id": 303819,
- "created_at": "2024-09-05T10:55:02.982Z",
- "updated_at": "2024-09-05T10:55:02.982Z",
- "image": "//a.storyblok.com/f/303819/390x646/89a7c36bfb/blog-blog-aside-default.png",
+ "component_id": 5657093,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:22.968Z",
+ "updated_at": "2024-04-15T18:24:22.968Z",
+ "image": "//a.storyblok.com/f/284892/390x646/e5085b1cdc/blog-blog-aside-default.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277519,
+ "id": 2131845,
"name": "DropdownList",
"preset": {
- "_uid": "588fc842-4190-4e56-873d-73f3f4c40819",
+ "_uid": "b7598e07-7204-4978-8a7a-22d9cb2e3815",
"type": "faq",
"component": "faq",
"questions": [
{
- "_uid": "f58e468a-2624-44d8-abaf-9a1f840ffc06",
+ "_uid": "b0d7d57a-7ba1-4d1f-9e1e-af32fcfed4d9",
"type": "questions",
"answer": "Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.",
"question": "What are the benefits of investing in a Design System?",
"component": "questions"
},
{
- "_uid": "906fdaf7-7a23-4633-8967-6981ce52e628",
+ "_uid": "0b714667-ee9c-4671-8791-7ac600d480bd",
"type": "questions",
"answer": "Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.",
"question": "What is a Design System?",
"component": "questions"
},
{
- "_uid": "d8a1a43d-c231-49e9-8ec7-a52a30e27a7b",
+ "_uid": "dd8f3cd6-6cee-42d2-9504-16483c8ea32d",
"type": "questions",
"answer": "A Headless CMS plays a crucial role in a Design System by providing a content-first approach. It separates the back-end content from the front-end presentation layer, allowing for seamless integration with any design system. This results in a flexible, scalable, and platform-agnostic system that ensures content consistency across all platforms and devices.",
"question": "What is the role of a Headless CMS in a Design System?",
@@ -1069,20 +772,20 @@
}
]
},
- "component_id": 6257233,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:49.888Z",
- "updated_at": "2024-09-05T10:54:49.888Z",
- "image": "//a.storyblok.com/f/303819/820x455/1c0c30985e/components-faq-dropdown-list.png",
+ "component_id": 5657105,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:26.705Z",
+ "updated_at": "2024-04-15T18:24:26.705Z",
+ "image": "//a.storyblok.com/f/284892/820x455/2b70ad7e09/components-faq-dropdown-list.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277541,
+ "id": 2131887,
"name": "FlexLayout",
"preset": {
- "_uid": "659efecc-c659-48cb-8a47-f0791a80001f",
+ "_uid": "dbb5e70a-0d35-49d9-998e-6760eff6baef",
"type": "section",
"style": "default",
"width": "max",
@@ -1092,7 +795,7 @@
"spotlight": false,
"spaceAfter": "default",
"spaceBefore": "default",
- "content_mode": "list",
+ "content_mode": "default",
"headline_sub": "We can create something shining for you too!",
"content_align": "center",
"content_width": "unset",
@@ -1105,157 +808,121 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:58.885Z",
- "updated_at": "2024-09-05T10:54:58.885Z",
- "image": "//a.storyblok.com/f/303819/1440x928/453e6f32fe/layout-section-flex-layout.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:40.710Z",
+ "updated_at": "2024-04-15T18:24:40.710Z",
+ "image": "//a.storyblok.com/f/284892/1440x928/abe16fe1c1/layout-section-flex-layout.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277548,
+ "id": 2131890,
"name": "Footer",
"preset": {
- "_uid": "0680b0c7-851d-4bda-b48a-a65f477b63fb",
+ "_uid": "9967dcfc-68e4-43a4-9ead-37c0f9afc2a0",
"type": "footer",
- "byline": "© 2024 systemics Inc. All rights reserved.",
- "inverted": false,
+ "logoHref": "/",
"logo_alt": "Systemics Logo",
- "logo_src": "//a.storyblok.com/f/303819/176x40/c909d95782/logo.svg",
+ "logo_src": "//a.storyblok.com/f/284892/176x40/15bfec80bd/logo.svg",
"navItems": [
{
- "_uid": "0d74f712-a013-43c4-846c-1a8240335663",
- "href": "#",
- "type": "navItems",
- "label": "Active Item",
- "active": true,
- "component": "navItems"
- },
- {
- "_uid": "b4361d03-3f0b-4a03-af7b-db544ea8c44b",
- "href": "#",
+ "_uid": "cc1e0bb2-690b-4ba9-bee3-1af59aeaceac",
+ "href": "#privacy-policy",
"type": "navItems",
- "label": "Navigation Item",
+ "label": "Privacy policy",
"component": "navItems"
},
{
- "_uid": "e4b5b015-ece5-45c8-8d40-c7a794be2d23",
- "href": "#",
+ "_uid": "585c6a9b-a9c6-4aa6-88ed-0b66f0710b2b",
+ "href": "#changelog",
"type": "navItems",
- "items": [
- {
- "href": "#",
- "label": "Level 2 Item"
- },
- {
- "href": "#",
- "label": "Active Item",
- "active": true
- },
- {
- "href": "#",
- "label": "An Item with a longer Label"
- },
- {
- "href": "#",
- "label": "And One last one"
- }
- ],
- "label": "Dropdown",
+ "label": "Changelog",
"component": "navItems"
},
{
- "_uid": "90237a44-11be-4ff6-b9e5-e7770902c1f3",
- "href": "#",
+ "_uid": "e27a2a7a-a363-482f-a965-8aeed7185621",
+ "href": "https://main--64f08cbba622af835d382b4f.chromatic.com/",
"type": "navItems",
- "label": "One more Item",
- "component": "navItems"
- },
- {
- "_uid": "344dbe99-c604-4a55-9dfc-2ecc645653b4",
- "href": "#",
- "type": "navItems",
- "label": "Last Item",
+ "label": "Storybook",
+ "target": "_blank",
"component": "navItems"
}
],
"component": "footer",
+ "logo_lazy": false,
"logo_width": 176,
- "logo_height": 40,
- "logo_inverted": false,
- "logo_srcInverted": "/logo-inverted.svg",
- "logo_homepageHref": "#"
+ "logo_height": 40
},
- "component_id": 6257250,
- "space_id": 303819,
- "created_at": "2024-09-05T10:55:04.985Z",
- "updated_at": "2024-09-05T10:55:04.985Z",
- "image": "//a.storyblok.com/f/303819/1280x371/ebabf2db14/layout-footer-footer.png",
+ "component_id": 5657122,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:41.715Z",
+ "updated_at": "2024-04-15T18:24:41.715Z",
+ "image": "//a.storyblok.com/f/284892/1280x371/0d0d9f72a9/layout-footer-footer.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277493,
+ "id": 2131854,
"name": "FreeAspectRatio",
"preset": {
- "_uid": "2207a70e-077c-47ce-ab28-578bde6863de",
+ "_uid": "6244cfb1-9cf9-4686-bce0-fae3884fb7af",
"type": "gallery",
"images": [
{
"alt": "Alt text Image 1",
- "src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
- "_uid": "44e358a2-8bb9-4e3d-844e-a3a6e0c8cf48",
+ "src": "//a.storyblok.com/f/284892/1260x840/26fae8d696/close-up-young-business-team-working.png",
+ "_uid": "c7dc8cf9-ce31-44bf-80e9-8494cb8e3257",
"type": "images",
"caption": "Caption Image 1",
"component": "images"
},
{
"alt": "Alt text Image 2",
- "src": "//a.storyblok.com/f/303819/996x998/ff01d6d56b/low-angle-tall-building-with-many-windows_23-2148230392.png",
- "_uid": "0d05ba3a-6fb6-43a2-8297-f0545ad35302",
+ "src": "//a.storyblok.com/f/284892/996x998/10c82ce2da/low-angle-tall-building-with-many-windows_23-2148230392.png",
+ "_uid": "2ba6570a-c68a-4045-9fc5-a47526def063",
"type": "images",
"caption": "Caption Image 2",
"component": "images"
},
{
"alt": "Alt text Image 3",
- "src": "//a.storyblok.com/f/303819/833x833/c5fec35583/full-shot-different-people-working-together.png",
- "_uid": "4deb011d-fc28-4733-bf0b-a0579d3af48a",
+ "src": "//a.storyblok.com/f/284892/833x833/f4e2812379/full-shot-different-people-working-together.png",
+ "_uid": "91890448-8a16-42f3-a328-b23deb526939",
"type": "images",
"caption": "Caption Image 3",
"component": "images"
},
{
"alt": "Alt text Image 4",
- "src": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
- "_uid": "e79d6632-bf4b-4493-9ea8-849de2f720ae",
+ "src": "//a.storyblok.com/f/284892/1440x960/e507391699/top-view-desk-with-keyboard-drawing-pad.png",
+ "_uid": "7136a0cb-eda0-490a-b88a-dbfc42453df2",
"type": "images",
"caption": "Caption Image 4",
"component": "images"
},
{
"alt": "Alt text Image 5",
- "src": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
- "_uid": "b629ac0a-e3ef-4951-824b-ce68bcd297d3",
+ "src": "//a.storyblok.com/f/284892/1440x960/79f5baf145/people-brainstorming-work-meeting.png",
+ "_uid": "2646dafe-34fc-4206-b671-d02a51e9318a",
"type": "images",
"caption": "Caption Image 5",
"component": "images"
},
{
"alt": "Alt text Image 6",
- "src": "//a.storyblok.com/f/303819/1000x1500/0e10ec9133/view-modern-office.jpg",
- "_uid": "b2c9641a-ccda-432f-94db-761a26e82e07",
+ "src": "//a.storyblok.com/f/284892/1000x1500/bd77d74459/view-modern-office.jpg",
+ "_uid": "6b0121a6-0135-49a3-87b3-22c43cfd857e",
"type": "images",
"caption": "Caption Image 6",
"component": "images"
},
{
"alt": "Alt text Image 7",
- "src": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png",
- "_uid": "acd5d041-3f27-429f-85ac-cd3e5df20035",
+ "src": "//a.storyblok.com/f/284892/1920x800/092659d08a/colleagues-work-office-using-computers-looking-aside.png",
+ "_uid": "347c4fa0-5630-4ba1-ac29-8ccced6425da",
"type": "images",
"caption": "Caption Image 7",
"component": "images"
@@ -1266,76 +933,57 @@
"component": "gallery",
"aspectRatio": "unset"
},
- "component_id": 6257225,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:38.772Z",
- "updated_at": "2024-09-05T10:54:38.772Z",
- "image": "//a.storyblok.com/f/303819/1040x779/85aaa7bf52/components-gallery-free-aspect-ratio.png",
+ "component_id": 5657107,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:29.712Z",
+ "updated_at": "2024-04-15T18:24:29.712Z",
+ "image": "//a.storyblok.com/f/284892/1040x779/50194d6298/components-gallery-free-aspect-ratio.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277547,
+ "id": 2131889,
"name": "Header",
"preset": {
- "_uid": "be3f4624-eff1-44ea-ad70-091b65419710",
+ "_uid": "1e8b0914-17b3-4469-8ec8-3548a0794522",
"type": "header",
"floating": false,
- "inverted": false,
+ "logoHref": "/",
"logo_alt": "Systemics Logo",
- "logo_src": "//a.storyblok.com/f/303819/176x40/c909d95782/logo.svg",
+ "logo_src": "//a.storyblok.com/f/284892/176x40/15bfec80bd/logo.svg",
"navItems": [
{
- "_uid": "1d724591-3a5a-47d1-bb2c-0ec667bd19c0",
+ "_uid": "e0d0dc6f-c63a-49cd-8e92-95aa0b9f77aa",
"href": "#",
"type": "navItems",
- "label": "Active Item",
- "active": true,
+ "label": "Nav Item",
"component": "navItems"
},
{
- "_uid": "c82392ef-77af-4483-819b-2a4d625c720a",
+ "_uid": "a4342204-5345-44bb-949b-543b952df39d",
"href": "#",
"type": "navItems",
- "label": "Navigation Item",
+ "label": "Active Item",
+ "active": true,
"component": "navItems"
},
{
- "_uid": "fff79cc4-e8df-43d0-bb25-b61d339ddc35",
+ "_uid": "ee7a58a4-3383-41cf-bf08-089a037dfd8f",
"href": "#",
"type": "navItems",
- "items": [
- {
- "href": "#",
- "label": "Level 2 Item"
- },
- {
- "href": "#",
- "label": "Active Item",
- "active": true
- },
- {
- "href": "#",
- "label": "An Item with a longer Label"
- },
- {
- "href": "#",
- "label": "And One last one"
- }
- ],
- "label": "Dropdown",
+ "label": "Another Item",
"component": "navItems"
},
{
- "_uid": "6452da5b-49fa-44e2-875a-efc52379aed3",
+ "_uid": "fa835100-4007-4c3d-b172-0c0f4971b69b",
"href": "#",
"type": "navItems",
"label": "One more Item",
"component": "navItems"
},
{
- "_uid": "fa7c4c6c-84c2-42ec-b73a-fa28ce5a5a24",
+ "_uid": "5fb99ed6-bdb1-491f-92c2-8b1dc434d39c",
"href": "#",
"type": "navItems",
"label": "Last Item",
@@ -1343,27 +991,24 @@
}
],
"component": "header",
+ "logo_lazy": false,
"logo_width": 176,
- "logo_height": 40,
- "flyoutInverted": false,
- "dropdownInverted": false,
- "logo_srcInverted": "/logo-inverted.svg",
- "logo_homepageHref": "#"
+ "logo_height": 40
},
- "component_id": 6257249,
- "space_id": 303819,
- "created_at": "2024-09-05T10:55:04.772Z",
- "updated_at": "2024-09-05T10:55:04.772Z",
- "image": "//a.storyblok.com/f/303819/1280x255/2934acfd18/layout-header-header.png",
+ "component_id": 5657121,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:41.234Z",
+ "updated_at": "2024-04-15T18:24:41.234Z",
+ "image": "//a.storyblok.com/f/284892/1280x255/df175845fe/layout-header-header.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277518,
+ "id": 2131876,
"name": "Highlight",
"preset": {
- "_uid": "116f78fe-dff6-4648-9dcf-c58d627de118",
+ "_uid": "48b59e93-4fc4-4a73-8f2f-6f3299a6ef11",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
"type": "text",
"align": "left",
@@ -1371,26 +1016,26 @@
"component": "text",
"highlightText": true
},
- "component_id": 6257232,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:48.979Z",
- "updated_at": "2024-09-05T10:54:48.979Z",
- "image": "//a.storyblok.com/f/303819/1000x482/f14aaca036/components-text-highlight.png",
+ "component_id": 5657117,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:36.972Z",
+ "updated_at": "2024-04-15T18:24:36.972Z",
+ "image": "//a.storyblok.com/f/284892/1000x482/ce2bcee974/components-text-highlight.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277478,
+ "id": 2131836,
"name": "Highlighted",
"preset": {
"sub": "Built for consistency and speed.",
- "_uid": "9f50706a-2527-4e9e-9179-d6c980fd3091",
+ "_uid": "a47f6ee8-a696-405d-87b1-f52b2d34007d",
"text": "Our design system is built with scalability and efficiency in mind. It allows for consistent UI across different platforms, making your development process smoother and faster.",
"type": "cta",
"buttons": [
{
- "_uid": "870202a8-6791-4db1-90d0-88bee141c0cf",
+ "_uid": "e3f3fd8b-8c5f-4de7-a789-94005d1ad9a7",
"icon": "person",
"type": "buttons",
"label": "Get Started",
@@ -1409,26 +1054,26 @@
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 6257223,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:32.889Z",
- "updated_at": "2024-09-05T10:54:32.889Z",
- "image": "//a.storyblok.com/f/303819/1000x551/f041af0f3a/components-cta-highlighted.png",
+ "component_id": 5657095,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:23.711Z",
+ "updated_at": "2024-04-15T18:24:23.711Z",
+ "image": "//a.storyblok.com/f/284892/1000x551/beb2797d98/components-cta-highlighted.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277489,
+ "id": 2131850,
"name": "IconBesideWithLinkInText",
"preset": {
- "_uid": "f0b6469a-4b8f-4090-a0a5-0f05d0ad5b03",
+ "_uid": "7735521e-7a94-4fc3-adaa-82ebaaded3a0",
"type": "features",
"style": "intext",
"layout": "smallTiles",
"feature": [
{
- "_uid": "a9cec162-a974-4c3b-9c4e-acebc2cf0b88",
+ "_uid": "c4626bde-5939-448a-9ede-086c1f4db4ca",
"icon": "home",
"text": "Our design system allows for a scalable architecture, enabling you to build applications that can grow with your needs.",
"type": "feature",
@@ -1441,7 +1086,7 @@
"cta_toggle": true
},
{
- "_uid": "3e6d3ce6-dda0-4e48-bd68-1723e905418c",
+ "_uid": "97dd03d7-e34f-4091-a065-fe4cf57cd39c",
"icon": "map",
"text": "Experience efficient development like never before. Our design system streamlines the development process, saving you time and resources.",
"type": "feature",
@@ -1454,7 +1099,7 @@
"cta_toggle": true
},
{
- "_uid": "f0f32b45-c36c-44d6-a1c3-e92600bded7a",
+ "_uid": "bfae4386-9d78-4943-91d3-4a7ebe479aec",
"icon": "person",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"type": "feature",
@@ -1467,7 +1112,7 @@
"cta_toggle": true
},
{
- "_uid": "c4da4619-3d27-46e3-80df-b3e8613cb5c5",
+ "_uid": "8c3fda6b-0674-4dcd-bbde-767853720bc7",
"icon": "star",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"type": "feature",
@@ -1480,7 +1125,7 @@
"cta_toggle": true
},
{
- "_uid": "103ec2f9-6b77-4821-b51b-7cbc0c6f1766",
+ "_uid": "3b2c0e4b-f24e-4c8a-80d7-605b77122ea4",
"icon": "upload",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"type": "feature",
@@ -1493,7 +1138,7 @@
"cta_toggle": true
},
{
- "_uid": "5326789b-4484-413a-b089-e4d22830ddac",
+ "_uid": "9d08703c-cf27-4c45-bb4b-9b3330178880",
"icon": "login",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"type": "feature",
@@ -1510,26 +1155,26 @@
"ctas_style": "intext",
"ctas_toggle": true
},
- "component_id": 6257224,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:36.896Z",
- "updated_at": "2024-09-05T10:54:36.896Z",
- "image": "//a.storyblok.com/f/303819/1000x506/2abadd3a6d/components-features-icon-beside-with-link-in-text.png",
+ "component_id": 5657106,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:28.176Z",
+ "updated_at": "2024-04-15T18:24:28.176Z",
+ "image": "//a.storyblok.com/f/284892/1000x506/6975008731/components-features-icon-beside-with-link-in-text.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277486,
+ "id": 2131847,
"name": "IconCentered",
"preset": {
- "_uid": "88c952ef-6218-4003-b660-e1f363281523",
+ "_uid": "a1a5a0ba-25e4-4149-baa2-f896051d9340",
"type": "features",
"style": "centered",
"layout": "largeTiles",
"feature": [
{
- "_uid": "0055341d-bbc1-4020-926d-808cacd63e74",
+ "_uid": "2bed1ec8-0cbf-4747-94ab-f6bf7c981454",
"icon": "home",
"text": "Our design system allows for a scalable architecture, enabling you to build applications that can grow with your needs.",
"type": "feature",
@@ -1542,7 +1187,7 @@
"cta_toggle": true
},
{
- "_uid": "3c8afc8f-62c2-4b17-88d6-b1fd8fbf7952",
+ "_uid": "245cd8b3-65b0-4e6c-b34a-0fc94aa54f88",
"icon": "map",
"text": "Experience efficient development like never before. Our design system streamlines the development process, saving you time and resources.",
"type": "feature",
@@ -1555,7 +1200,7 @@
"cta_toggle": true
},
{
- "_uid": "ac46c4c0-2ae0-470a-828d-6823ca9d6033",
+ "_uid": "a8c96232-1f18-4b2f-9abd-4c128e970e27",
"icon": "person",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"type": "feature",
@@ -1568,7 +1213,7 @@
"cta_toggle": true
},
{
- "_uid": "c2cb97ed-439f-4633-96b2-4bf9478dff2b",
+ "_uid": "b3374507-be75-45b6-a0c2-eef6e3edecf9",
"icon": "star",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"type": "feature",
@@ -1581,7 +1226,7 @@
"cta_toggle": true
},
{
- "_uid": "a1dc68ae-169f-432b-b9c6-359de0eb77b0",
+ "_uid": "f96f1128-0fa4-4961-851a-c278c221f652",
"icon": "upload",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"type": "feature",
@@ -1594,7 +1239,7 @@
"cta_toggle": true
},
{
- "_uid": "a0517c73-a829-421e-8909-00eb64e7515c",
+ "_uid": "5147ba68-9e88-4c02-b8f7-cf7ef6ec1bd3",
"icon": "login",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"type": "feature",
@@ -1611,26 +1256,26 @@
"ctas_style": "link",
"ctas_toggle": true
},
- "component_id": 6257224,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:35.890Z",
- "updated_at": "2024-09-05T10:54:35.890Z",
- "image": "//a.storyblok.com/f/303819/1440x666/88ba598e61/components-features-icon-centered.png",
+ "component_id": 5657106,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:27.169Z",
+ "updated_at": "2024-04-15T18:24:27.169Z",
+ "image": "//a.storyblok.com/f/284892/1440x666/16d4ba5862/components-features-icon-centered.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277490,
+ "id": 2131851,
"name": "IconIntextWithLink",
"preset": {
- "_uid": "009d88be-285c-4fc0-9021-f8a4b8d52c21",
+ "_uid": "721ba946-3ebd-4762-ae24-ddeb46251e72",
"type": "features",
"style": "intext",
"layout": "largeTiles",
"feature": [
{
- "_uid": "553159b7-38a5-4ae7-8b7f-23670dbf87f9",
+ "_uid": "51f02794-af85-4f5f-bbc1-6d01a24bb4b7",
"icon": "star",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"type": "feature",
@@ -1643,7 +1288,7 @@
"cta_toggle": true
},
{
- "_uid": "6a752605-66ec-4f23-989f-c2abe32545d8",
+ "_uid": "da561e27-57ac-4617-9986-7757cf412eb5",
"icon": "map",
"text": "Experience efficient development like never before. Our design system streamlines the development process, saving you time and resources.",
"type": "feature",
@@ -1656,7 +1301,7 @@
"cta_toggle": true
},
{
- "_uid": "80e1242f-f20a-43a9-ad3f-7918dbd3a097",
+ "_uid": "83c99f1b-6909-42f5-ad7f-2a27776d6431",
"icon": "person",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"type": "feature",
@@ -1669,7 +1314,7 @@
"cta_toggle": true
},
{
- "_uid": "0bc06165-d4da-4098-9cf3-75378ef246c7",
+ "_uid": "ac53db7a-41d0-4315-a7ff-88a82edac696",
"icon": "upload",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"type": "feature",
@@ -1682,7 +1327,7 @@
"cta_toggle": true
},
{
- "_uid": "bbc4afc6-59cd-4173-bc10-a87e4d7dba47",
+ "_uid": "a0ec4c8c-e300-474b-b535-cc235f36dc70",
"icon": "login",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"type": "feature",
@@ -1699,20 +1344,20 @@
"ctas_style": "link",
"ctas_toggle": true
},
- "component_id": 6257224,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:36.977Z",
- "updated_at": "2024-09-05T10:54:36.977Z",
- "image": "//a.storyblok.com/f/303819/1232x524/36a77b0dbb/components-features-icon-intext-with-link.png",
+ "component_id": 5657106,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:28.703Z",
+ "updated_at": "2024-04-15T18:24:28.703Z",
+ "image": "//a.storyblok.com/f/284892/1232x524/5bbd63cd9d/components-features-icon-intext-with-link.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277533,
+ "id": 2131879,
"name": "Inverted",
"preset": {
- "_uid": "ecd1f997-bc42-44d1-828f-2a144bb426b3",
+ "_uid": "b7c1f1d0-cca3-4053-b20f-f05b12638905",
"type": "section",
"style": "default",
"width": "default",
@@ -1722,7 +1367,7 @@
"spotlight": false,
"spaceAfter": "default",
"spaceBefore": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"headline_sub": "We can create something shining for you too!",
"content_align": "center",
"content_width": "unset",
@@ -1734,66 +1379,66 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:55.986Z",
- "updated_at": "2024-09-05T10:54:55.986Z",
- "image": "//a.storyblok.com/f/303819/1440x928/1718619ad3/layout-section-inverted.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:37.973Z",
+ "updated_at": "2024-04-15T18:24:37.973Z",
+ "image": "//a.storyblok.com/f/284892/1440x928/0436f584ba/layout-section-inverted.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277492,
+ "id": 2131853,
"name": "LargeLandscapeTiles",
"preset": {
- "_uid": "48daca77-c311-4990-9b18-75444e3f4768",
+ "_uid": "00012a0e-94f8-4928-895b-18a70497a55d",
"type": "gallery",
"images": [
{
"alt": "Alt text Image 1",
- "src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
- "_uid": "f716a91a-be49-411d-86c4-9e7c1bd8e909",
+ "src": "//a.storyblok.com/f/284892/1260x840/26fae8d696/close-up-young-business-team-working.png",
+ "_uid": "a4b86829-3830-4631-b460-4f2266f7278c",
"type": "images",
"caption": "Caption Image 1",
"component": "images"
},
{
"alt": "Alt text Image 2",
- "src": "//a.storyblok.com/f/303819/996x998/ff01d6d56b/low-angle-tall-building-with-many-windows_23-2148230392.png",
- "_uid": "5fb342da-af3b-496f-9118-d7017b809947",
+ "src": "//a.storyblok.com/f/284892/996x998/10c82ce2da/low-angle-tall-building-with-many-windows_23-2148230392.png",
+ "_uid": "7ee1bd2f-c2b7-4647-98d4-be70c1b3ae16",
"type": "images",
"caption": "Caption Image 2",
"component": "images"
},
{
"alt": "Alt text Image 3",
- "src": "//a.storyblok.com/f/303819/833x833/c5fec35583/full-shot-different-people-working-together.png",
- "_uid": "66bb01a2-93e6-4f99-b83f-da653d714a1d",
+ "src": "//a.storyblok.com/f/284892/833x833/f4e2812379/full-shot-different-people-working-together.png",
+ "_uid": "382d8185-9c27-4ced-8d43-fda4b6434487",
"type": "images",
"caption": "Caption Image 3",
"component": "images"
},
{
"alt": "Alt text Image 4",
- "src": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
- "_uid": "8a11f8bf-786b-4180-90cf-50654f1c6b4c",
+ "src": "//a.storyblok.com/f/284892/1440x960/e507391699/top-view-desk-with-keyboard-drawing-pad.png",
+ "_uid": "e6a34312-cb22-4136-90ab-5da3ea76b738",
"type": "images",
"caption": "Caption Image 4",
"component": "images"
},
{
"alt": "Alt text Image 5",
- "src": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
- "_uid": "41e67341-b785-41da-8ece-73fa5a3af514",
+ "src": "//a.storyblok.com/f/284892/1440x960/79f5baf145/people-brainstorming-work-meeting.png",
+ "_uid": "45f9b7bc-f409-4064-a2ff-a9a10ee55106",
"type": "images",
"caption": "Caption Image 5",
"component": "images"
},
{
"alt": "Alt text Image 6",
- "src": "//a.storyblok.com/f/303819/1000x1500/0e10ec9133/view-modern-office.jpg",
- "_uid": "ab12f47b-7b32-48fb-851e-b65b7a8bc439",
+ "src": "//a.storyblok.com/f/284892/1000x1500/bd77d74459/view-modern-office.jpg",
+ "_uid": "312386e8-56fe-45d2-818c-ad2703ce3824",
"type": "images",
"caption": "Caption Image 6",
"component": "images"
@@ -1804,26 +1449,26 @@
"component": "gallery",
"aspectRatio": "landscape"
},
- "component_id": 6257225,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:37.986Z",
- "updated_at": "2024-09-05T10:54:37.986Z",
- "image": "//a.storyblok.com/f/303819/1440x735/690b88067b/components-gallery-large-landscape-tiles.png",
+ "component_id": 5657107,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:29.171Z",
+ "updated_at": "2024-04-15T18:24:29.171Z",
+ "image": "//a.storyblok.com/f/284892/1440x735/7c28ec1909/components-gallery-large-landscape-tiles.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277479,
+ "id": 2131837,
"name": "LeftAligned",
"preset": {
"sub": "Efficient, scalable, seamless.",
- "_uid": "91b2c2e9-72e6-4c93-8d22-f2e61becdb62",
+ "_uid": "8a3e8e88-69c5-4887-81e6-4faa60e8043b",
"text": "Our design system offers a seamless and efficient way to build scalable applications. Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.",
"type": "cta",
"buttons": [
{
- "_uid": "28e508e3-4522-4985-8c7f-f968e1639b31",
+ "_uid": "68ee825f-5b4b-4646-a585-016c0dab2870",
"icon": "person",
"type": "buttons",
"label": "Learn More",
@@ -1842,60 +1487,60 @@
"order_mobileImageLast": false,
"order_desktopImageLast": true
},
- "component_id": 6257223,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:32.981Z",
- "updated_at": "2024-09-05T10:54:32.981Z",
- "image": "//a.storyblok.com/f/303819/1000x443/6ba77ac9ce/components-cta-left-aligned.png",
+ "component_id": 5657095,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:23.966Z",
+ "updated_at": "2024-04-15T18:24:23.966Z",
+ "image": "//a.storyblok.com/f/284892/1000x443/a6fe0192e3/components-cta-left-aligned.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277501,
+ "id": 2131859,
"name": "LeftAlignedWithTextLink",
"preset": {
- "_uid": "a5c63c5c-6a26-4587-ba32-cd75286af56a",
+ "_uid": "4b495e79-822e-4586-a3c8-a94f86c47112",
"logo": [
{
"alt": "Logo 1",
- "src": "//a.storyblok.com/f/303819/132x35/285d763921/logoipsum-212.svg",
- "_uid": "d4c67907-bc52-4bf9-8321-e2eb70bf1caf",
+ "src": "//a.storyblok.com/f/284892/132x35/bf23496c05/logoipsum-212.svg",
+ "_uid": "392f1d0f-ab21-4383-926d-67165dba4a94",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 2",
- "src": "//a.storyblok.com/f/303819/124x32/17b256999a/logoipsum-217.svg",
- "_uid": "319dd8cd-5abe-4c8d-a428-e9f282ec9f96",
+ "src": "//a.storyblok.com/f/284892/124x32/dbdc27fcfb/logoipsum-217.svg",
+ "_uid": "d7cd72e7-1f7c-431f-a2fa-f0c53cbbffb6",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 3",
- "src": "//a.storyblok.com/f/303819/154x44/dc317b6600/logoipsum-239.svg",
- "_uid": "88b4a7a2-34cd-45ad-9879-2b34522f38d4",
+ "src": "//a.storyblok.com/f/284892/154x44/024bdd3f3c/logoipsum-239.svg",
+ "_uid": "b269616e-ea5e-4d11-9294-f5bb2c434e28",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 4",
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
- "_uid": "0adf92fe-316b-48a6-bb61-c85f4b057291",
+ "src": "//a.storyblok.com/f/284892/155x40/54e55b2b57/logoipsum-244.svg",
+ "_uid": "c50287b6-fa9e-4541-862a-f41e1119e4de",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 5",
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
- "_uid": "fcfcb05a-d19c-466d-991a-33d4b4e37096",
+ "src": "//a.storyblok.com/f/284892/171x32/ab31fc0e2a/logoipsum-250.svg",
+ "_uid": "f700c370-9b21-42f0-82f8-e818947e02f8",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 6",
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
- "_uid": "53c36079-5eca-452a-a0d9-8799f8fafa87",
+ "src": "//a.storyblok.com/f/284892/218x40/7c4584ee29/logoipsum-286.svg",
+ "_uid": "b7af1a2c-74d2-40bd-b351-6ca21fbe3227",
"type": "logo",
"component": "logo"
}
@@ -1911,26 +1556,26 @@
"cta_toggle": true,
"logosPerRow": 5
},
- "component_id": 6257228,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:41.984Z",
- "updated_at": "2024-09-05T10:54:41.984Z",
- "image": "//a.storyblok.com/f/303819/1000x517/15d1b71f40/components-logos-left-aligned-with-text-link.png",
+ "component_id": 5657111,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:31.230Z",
+ "updated_at": "2024-04-15T18:24:31.230Z",
+ "image": "//a.storyblok.com/f/284892/1000x517/f07a8cbcab/components-logos-left-aligned-with-text-link.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277511,
+ "id": 2131869,
"name": "ListLayout",
"preset": {
- "_uid": "1bdcc9f9-f045-43ce-8344-acf0ae120440",
+ "_uid": "0f3e589a-47ef-4709-b1a4-e9ae4a91741b",
"type": "testimonials",
"layout": "list",
"component": "testimonials",
"testimonial": [
{
- "_uid": "63cd50aa-a3f3-4630-8180-d55b0c714500",
+ "_uid": "420a4ebf-10e4-4c44-b70c-e7cb7349eb0b",
"name": "Emily Johnson",
"type": "testimonial",
"quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
@@ -1938,10 +1583,10 @@
"rating": 5,
"component": "testimonial",
"image_alt": "Alt Text Customer 1",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dacacb7216/author-emily.png"
},
{
- "_uid": "16bee64d-8c8f-48ed-ba84-997351a24276",
+ "_uid": "e755e885-af18-4688-a37f-f252c01d30dc",
"name": "John Smith",
"type": "testimonial",
"quote": "Systemics's design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand's credibility. It's a partnership that continues to pay dividends.",
@@ -1949,10 +1594,10 @@
"rating": 4,
"component": "testimonial",
"image_alt": "Alt Text Customer 2",
- "image_src": "//a.storyblok.com/f/303819/250x250/777040b161/author-john.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dcb5e18d54/author-john.png"
},
{
- "_uid": "09c591b5-6b94-455e-a1e0-43ec98304777",
+ "_uid": "be565eb7-ece1-430f-ab28-fa1ad82940e5",
"name": "Alex Chen",
"type": "testimonial",
"quote": "As a startup, we needed to hit the ground running. Systemics's approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.",
@@ -1960,24 +1605,24 @@
"rating": 5,
"component": "testimonial",
"image_alt": "Alt Text Customer 3",
- "image_src": "//a.storyblok.com/f/303819/250x250/cdacfff2f6/author-alex.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/541c60dfa1/author-alex.png"
}
]
},
- "component_id": 6257231,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:46.757Z",
- "updated_at": "2024-09-05T10:54:46.757Z",
- "image": "//a.storyblok.com/f/303819/1000x1080/4c9921d814/components-testimonials-list-layout.png",
+ "component_id": 5657116,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:34.704Z",
+ "updated_at": "2024-04-15T18:24:34.704Z",
+ "image": "//a.storyblok.com/f/284892/1000x1080/57ba7571df/components-testimonials-list-layout.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277542,
+ "id": 2131888,
"name": "ListLayout",
"preset": {
- "_uid": "72b3f5cf-6735-43a4-9ebc-f7a4de39d48d",
+ "_uid": "b4f8c792-da92-46c6-be5a-e81d2fde8edd",
"type": "section",
"style": "default",
"width": "default",
@@ -2000,26 +1645,26 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:58.988Z",
- "updated_at": "2024-09-05T10:54:58.988Z",
- "image": "//a.storyblok.com/f/303819/1440x1658/abd99fdaf3/layout-section-list-layout.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:40.975Z",
+ "updated_at": "2024-04-15T18:24:40.975Z",
+ "image": "//a.storyblok.com/f/284892/1440x1658/536c75034d/layout-section-list-layout.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277488,
+ "id": 2131849,
"name": "ListView",
"preset": {
- "_uid": "aa2651ac-475f-4883-826d-61742850aa9e",
+ "_uid": "183268bd-65ab-4037-9216-04acd9a05f5e",
"type": "features",
"style": "besideLarge",
"layout": "list",
"feature": [
{
- "_uid": "5c2df6cc-37e3-4ddc-a866-81399e5c66a5",
+ "_uid": "58559e19-61a6-4169-8fb3-2a6c357f500d",
"icon": "star",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"type": "feature",
@@ -2032,7 +1677,7 @@
"cta_toggle": true
},
{
- "_uid": "cce287d0-038b-4527-9e95-a236063e8007",
+ "_uid": "6b05c8d8-b2b7-4a7e-b180-16c59e2b6fb6",
"icon": "map",
"text": "Experience efficient development like never before. Our design system streamlines the development process, saving you time and resources.",
"type": "feature",
@@ -2045,7 +1690,7 @@
"cta_toggle": true
},
{
- "_uid": "6e1e4c37-1686-47bb-80f9-07274b115867",
+ "_uid": "512a4aeb-e79b-4d87-92ee-4ef6afb62c41",
"icon": "person",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"type": "feature",
@@ -2058,7 +1703,7 @@
"cta_toggle": true
},
{
- "_uid": "fb582462-a0b5-4b7b-925e-913d4d1e4c72",
+ "_uid": "4c2cfbbf-490f-4725-8136-3940d12a7c7d",
"icon": "home",
"text": "Our design system allows for a scalable architecture, enabling you to build applications that can grow with your needs.",
"type": "feature",
@@ -2071,7 +1716,7 @@
"cta_toggle": true
},
{
- "_uid": "b7013495-fd8b-47cf-b5a0-f0fddefb5f17",
+ "_uid": "c7f15ebe-f02b-46f3-a346-031acc668378",
"icon": "upload",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"type": "feature",
@@ -2084,7 +1729,7 @@
"cta_toggle": true
},
{
- "_uid": "8ec70128-9f1d-4cbe-994c-e4a2d35e63c4",
+ "_uid": "a019d8b1-3ae5-4914-bdd9-a56ca69e268c",
"icon": "login",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"type": "feature",
@@ -2101,60 +1746,60 @@
"ctas_style": "intext",
"ctas_toggle": false
},
- "component_id": 6257224,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:36.746Z",
- "updated_at": "2024-09-05T10:54:36.746Z",
- "image": "//a.storyblok.com/f/303819/768x755/a0bffa5b37/components-features-list-view.png",
+ "component_id": 5657106,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:27.970Z",
+ "updated_at": "2024-04-15T18:24:27.970Z",
+ "image": "//a.storyblok.com/f/284892/768x755/9bdd3f1b2a/components-features-list-view.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277503,
+ "id": 2131861,
"name": "LogoRow",
"preset": {
- "_uid": "3eb6c866-5718-4e55-8f39-2f30f6f42085",
+ "_uid": "dc6fbbc7-0f89-4b72-99c9-c409569e148e",
"logo": [
{
"alt": "Logo 1",
- "src": "//a.storyblok.com/f/303819/132x35/285d763921/logoipsum-212.svg",
- "_uid": "c360e870-1973-4e82-abef-2abbb2f3a2f3",
+ "src": "//a.storyblok.com/f/284892/132x35/bf23496c05/logoipsum-212.svg",
+ "_uid": "2d1be4c6-19dd-4f70-9576-e783083b863d",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 2",
- "src": "//a.storyblok.com/f/303819/124x32/17b256999a/logoipsum-217.svg",
- "_uid": "bb196a46-1d2f-4737-b39e-1b60abf304e6",
+ "src": "//a.storyblok.com/f/284892/124x32/dbdc27fcfb/logoipsum-217.svg",
+ "_uid": "ae034140-0d3d-4d7c-bc85-5f83001d725d",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 3",
- "src": "//a.storyblok.com/f/303819/154x44/dc317b6600/logoipsum-239.svg",
- "_uid": "26bedfa0-ea5f-4c09-ba9f-a149eed02eeb",
+ "src": "//a.storyblok.com/f/284892/154x44/024bdd3f3c/logoipsum-239.svg",
+ "_uid": "59be4c39-6ed6-4503-8a4a-f06735bd051e",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 4",
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
- "_uid": "c12abf2f-369a-4859-947e-65b96e6e6088",
+ "src": "//a.storyblok.com/f/284892/155x40/54e55b2b57/logoipsum-244.svg",
+ "_uid": "1542bb0b-31ab-4400-b68c-bb3422815e4e",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 5",
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
- "_uid": "60da492b-d49c-40b9-8912-1c55a0e438f1",
+ "src": "//a.storyblok.com/f/284892/171x32/ab31fc0e2a/logoipsum-250.svg",
+ "_uid": "28dffce5-70ec-46b7-911f-bfc6e4de110f",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 6",
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
- "_uid": "cc376791-0808-42ad-be49-35c767db283a",
+ "src": "//a.storyblok.com/f/284892/218x40/7c4584ee29/logoipsum-286.svg",
+ "_uid": "9358f87c-2fd2-4caf-ae57-8e6e609760b5",
"type": "logo",
"component": "logo"
}
@@ -2170,102 +1815,102 @@
"cta_toggle": false,
"logosPerRow": 6
},
- "component_id": 6257228,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:42.888Z",
- "updated_at": "2024-09-05T10:54:42.888Z",
- "image": "//a.storyblok.com/f/303819/1000x450/54812f303d/components-logos-logo-row.png",
+ "component_id": 5657111,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:31.970Z",
+ "updated_at": "2024-04-15T18:24:31.970Z",
+ "image": "//a.storyblok.com/f/284892/1000x450/9304b49c4d/components-logos-logo-row.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277502,
+ "id": 2131860,
"name": "LogoWall",
"preset": {
- "_uid": "54f1d364-fb11-418e-876f-3ca2f6420aaf",
+ "_uid": "4e8fb3da-1aed-41c9-a641-ed1cc71f262f",
"logo": [
{
"alt": "Logo 1",
- "src": "//a.storyblok.com/f/303819/132x35/285d763921/logoipsum-212.svg",
- "_uid": "fdf4073c-4e6b-439d-92ca-cbb6102b2d2f",
+ "src": "//a.storyblok.com/f/284892/132x35/bf23496c05/logoipsum-212.svg",
+ "_uid": "26567761-8b62-406e-9e65-e6c0640f178c",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 2",
- "src": "//a.storyblok.com/f/303819/124x32/17b256999a/logoipsum-217.svg",
- "_uid": "fe8436e2-f2a1-4ef0-89e3-8672d56e8bbb",
+ "src": "//a.storyblok.com/f/284892/124x32/dbdc27fcfb/logoipsum-217.svg",
+ "_uid": "cfcd33f7-d18f-47e9-b1cd-df48354e47bf",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 3",
- "src": "//a.storyblok.com/f/303819/154x44/dc317b6600/logoipsum-239.svg",
- "_uid": "ac6ddacb-d4da-432f-a0bd-3325db77fa8e",
+ "src": "//a.storyblok.com/f/284892/154x44/024bdd3f3c/logoipsum-239.svg",
+ "_uid": "9c987d9b-eb79-4422-ae81-c8ce71983981",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 4",
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
- "_uid": "7e2b5ada-2175-4b8b-80f9-075f5f5e6a46",
+ "src": "//a.storyblok.com/f/284892/155x40/54e55b2b57/logoipsum-244.svg",
+ "_uid": "40adf92d-002a-4461-917b-36892a607b82",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 5",
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
- "_uid": "b0f5bebc-0d7a-49aa-acad-04ab029c20d9",
+ "src": "//a.storyblok.com/f/284892/171x32/ab31fc0e2a/logoipsum-250.svg",
+ "_uid": "edd02f9a-ba88-4da2-aab8-0c8eb7dd41d0",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 6",
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
- "_uid": "941504bc-5ede-4794-8820-c47cc9c6b7a7",
+ "src": "//a.storyblok.com/f/284892/218x40/7c4584ee29/logoipsum-286.svg",
+ "_uid": "fba2b2bc-71d6-482e-987b-5ea23859cccb",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 4",
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
- "_uid": "daea8f1b-b912-42aa-9b43-cd6a2ecd556b",
+ "src": "//a.storyblok.com/f/284892/155x40/54e55b2b57/logoipsum-244.svg",
+ "_uid": "b49f1ae6-7679-41af-8451-8470c40cf494",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 5",
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
- "_uid": "b55c7305-e7dc-4669-9ecf-ed8dbf91639f",
+ "src": "//a.storyblok.com/f/284892/171x32/ab31fc0e2a/logoipsum-250.svg",
+ "_uid": "55d6c4df-82cd-44c3-9fc0-aa9eee2d1735",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 6",
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
- "_uid": "e4a593ae-fcd8-43b2-8a6c-cc3330c29866",
+ "src": "//a.storyblok.com/f/284892/218x40/7c4584ee29/logoipsum-286.svg",
+ "_uid": "1f8e67ae-1d74-4928-b2f7-b04b1bec2000",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 4",
- "src": "//a.storyblok.com/f/303819/155x40/d83ac9f1cf/logoipsum-244.svg",
- "_uid": "1a655c44-8334-415e-b563-a9fd2f372ccf",
+ "src": "//a.storyblok.com/f/284892/155x40/54e55b2b57/logoipsum-244.svg",
+ "_uid": "7f1e703f-89b6-4292-98e4-04e9c6063c89",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 5",
- "src": "//a.storyblok.com/f/303819/171x32/9028fdf07c/logoipsum-250.svg",
- "_uid": "95a1dc1a-a5e6-4a23-a412-fc9b9235bc2a",
+ "src": "//a.storyblok.com/f/284892/171x32/ab31fc0e2a/logoipsum-250.svg",
+ "_uid": "d3559225-ece6-4654-9581-491cdac60903",
"type": "logo",
"component": "logo"
},
{
"alt": "Logo 6",
- "src": "//a.storyblok.com/f/303819/218x40/d7a5c0c5ae/logoipsum-286.svg",
- "_uid": "46257283-24b2-4dd4-8bfc-d2b9c3e4f075",
+ "src": "//a.storyblok.com/f/284892/218x40/7c4584ee29/logoipsum-286.svg",
+ "_uid": "906dd633-3664-4f25-a2cc-4db6e4e77eb7",
"type": "logo",
"component": "logo"
}
@@ -2281,20 +1926,20 @@
"cta_toggle": false,
"logosPerRow": 4
},
- "component_id": 6257228,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:42.751Z",
- "updated_at": "2024-09-05T10:54:42.751Z",
- "image": "//a.storyblok.com/f/303819/1080x860/beb940194c/components-logos-logo-wall.png",
+ "component_id": 5657111,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:31.706Z",
+ "updated_at": "2024-04-15T18:24:31.706Z",
+ "image": "//a.storyblok.com/f/284892/1080x860/348654df91/components-logos-logo-wall.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277517,
+ "id": 2131875,
"name": "MultiColumn",
"preset": {
- "_uid": "7551796e-10fc-4b0c-9bc6-f69dc319369a",
+ "_uid": "5e1b200f-eb06-4bc8-8b06-8049dddf826f",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n_Experience the power of streamlined development and see the difference it can make in your projects._",
"type": "text",
"align": "left",
@@ -2302,23 +1947,23 @@
"component": "text",
"highlightText": false
},
- "component_id": 6257232,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:48.885Z",
- "updated_at": "2024-09-05T10:54:48.885Z",
- "image": "//a.storyblok.com/f/303819/1000x330/7c9274a317/components-text-multi-column.png",
+ "component_id": 5657117,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:36.707Z",
+ "updated_at": "2024-04-15T18:24:36.707Z",
+ "image": "//a.storyblok.com/f/284892/1000x330/60b90fbb8d/components-text-multi-column.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277507,
+ "id": 2131865,
"name": "PageNavigation",
"preset": {
- "_uid": "4b775f4c-4c18-46a6-a00c-b86949f41529",
+ "_uid": "e118772e-ca07-42c1-a739-58f274c8e437",
"text": "Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.",
"type": "teaser-card",
- "image": "//a.storyblok.com/f/303819/1024x1024/4375b3969a/02.jpg",
+ "image": "//a.storyblok.com/f/284892/1024x1024/d0f25eda0b/02.jpg",
"layout": "stack",
"target": "#",
"headline": "Design System Services",
@@ -2328,27 +1973,27 @@
"button_hidden": false,
"button_chevron": false
},
- "component_id": 6257230,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:44.884Z",
- "updated_at": "2024-09-05T10:54:44.884Z",
- "image": "//a.storyblok.com/f/303819/650x678/756a8dd5d6/components-teaser-card-page-navigation.png",
+ "component_id": 5657115,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:33.233Z",
+ "updated_at": "2024-04-15T18:24:33.233Z",
+ "image": "//a.storyblok.com/f/284892/650x678/6783f80d3e/components-teaser-card-page-navigation.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277480,
+ "id": 2131838,
"name": "ProductAdvertisement",
"preset": {
"sub": "With Our Premium Over-Ear Headphones",
- "_uid": "fbe3223f-462e-43bb-9517-6ea5e211ddf0",
+ "_uid": "732e396f-6403-4e2b-a028-6d6a3bff4e84",
"text": "Our over-ear headphones provide an immersive audio experience. With noise-cancellation technology and high-quality sound.",
"type": "cta",
"width": "wide",
"buttons": [
{
- "_uid": "73390942-75f8-412f-9270-9540af6e4e44",
+ "_uid": "b6605b64-8b7d-46ed-9d20-0123e0e8f204",
"icon": "chevron-right",
"type": "buttons",
"label": "Shop Now",
@@ -2357,7 +2002,7 @@
"component": "buttons"
},
{
- "_uid": "323e4930-0ad6-4c43-b4a6-649e08609e9b",
+ "_uid": "075e8845-1b55-4cfe-a4eb-5a46825a6426",
"type": "buttons",
"label": "Learn More",
"target": "/product-info",
@@ -2369,33 +2014,33 @@
"component": "cta",
"fullWidth": false,
"image_alt": "Over-Ear Headphones",
- "image_src": "//a.storyblok.com/f/303819/1040x1040/e6cac2664a/comp_audio04.png",
+ "image_src": "//a.storyblok.com/f/284892/1040x1040/c94f81d913/comp_audio04.png",
"textAlign": "left",
"colorNeutral": false,
"contentAlign": "center",
"highlightText": true,
"image_padding": false,
- "backgroundImage": "//a.storyblok.com/f/303819/6457x2400/44575f118b/bg_dot-carpet-blue.svg",
+ "backgroundImage": "//a.storyblok.com/f/284892/6457x2400/b533cfd82c/bg_dot-carpet-blue.svg",
"order_mobileImageLast": false,
"order_desktopImageLast": false
},
- "component_id": 6257223,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:33.746Z",
- "updated_at": "2024-09-05T10:54:33.746Z",
- "image": "//a.storyblok.com/f/303819/1400x660/a58c8732af/components-cta-product-advertisement.png",
+ "component_id": 5657095,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:24.167Z",
+ "updated_at": "2024-04-15T18:24:24.167Z",
+ "image": "//a.storyblok.com/f/284892/1400x660/18028b7163/components-cta-product-advertisement.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277506,
+ "id": 2131864,
"name": "ProductTiles",
"preset": {
- "_uid": "292d6de5-b753-4ce6-9a24-1c625849674f",
+ "_uid": "c8ab9298-38e1-4e17-ab04-efae85e52a79",
"text": "Transforming Ideas into Code",
"type": "teaser-card",
- "image": "//a.storyblok.com/f/303819/500x500/1714f3b84f/castaway.svg",
+ "image": "//a.storyblok.com/f/284892/500x500/0469df9ea4/castaway.svg",
"layout": "stack",
"target": "#",
"headline": "Castaway",
@@ -2405,23 +2050,23 @@
"button_hidden": true,
"button_chevron": false
},
- "component_id": 6257230,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:44.760Z",
- "updated_at": "2024-09-05T10:54:44.760Z",
- "image": "//a.storyblok.com/f/303819/650x653/bd51864d6d/components-teaser-card-product-tiles.png",
+ "component_id": 5657115,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:32.975Z",
+ "updated_at": "2024-04-15T18:24:32.975Z",
+ "image": "//a.storyblok.com/f/284892/650x653/d0ada7f5df/components-teaser-card-product-tiles.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277508,
+ "id": 2131866,
"name": "ShowcasePreview",
"preset": {
- "_uid": "d5200a80-f372-427a-8f21-4afa3e919ff3",
+ "_uid": "b84268e3-1d86-4072-8e8f-83815e5aa934",
"text": "See how we saved TechFusions a year's worth of development time",
"type": "teaser-card",
- "image": "//a.storyblok.com/f/303819/4170x2000/2930ae5d82/comp_tfe01.jpg",
+ "image": "//a.storyblok.com/f/284892/4170x2000/fc421b1e2f/comp_tfe01.jpg",
"label": "Tech",
"layout": "row",
"target": "#",
@@ -2432,49 +2077,49 @@
"button_hidden": false,
"button_chevron": false
},
- "component_id": 6257230,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:44.977Z",
- "updated_at": "2024-09-05T10:54:44.977Z",
- "image": "//a.storyblok.com/f/303819/650x750/0057d9edba/components-teaser-card-showcase-preview.png",
+ "component_id": 5657115,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:33.718Z",
+ "updated_at": "2024-04-15T18:24:33.718Z",
+ "image": "//a.storyblok.com/f/284892/650x750/0140092d95/components-teaser-card-showcase-preview.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277509,
+ "id": 2131867,
"name": "Simple",
"preset": {
- "_uid": "f9579bc7-94c3-46ab-8949-475c9f7a10f1",
+ "_uid": "b48947c6-c41f-4e33-92b7-e852e82e73bf",
"type": "testimonials",
"layout": "slider",
"component": "testimonials",
"testimonial": [
{
- "_uid": "066caf28-5f00-44df-b0b4-67c9a45fc5a1",
+ "_uid": "0df3e33b-941e-4368-a1d7-24fed539d5f8",
"name": "Emily Johnson",
"type": "testimonial",
"quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
"component": "testimonial",
"image_alt": "Alt Text Customer 1",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dacacb7216/author-emily.png"
}
]
},
- "component_id": 6257231,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:45.886Z",
- "updated_at": "2024-09-05T10:54:45.886Z",
- "image": "//a.storyblok.com/f/303819/1000x409/9e3083f521/components-testimonials-simple.png",
+ "component_id": 5657116,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:33.970Z",
+ "updated_at": "2024-04-15T18:24:33.970Z",
+ "image": "//a.storyblok.com/f/284892/1000x409/65b04b65b7/components-testimonials-simple.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277515,
+ "id": 2131873,
"name": "SingleColumn",
"preset": {
- "_uid": "43364742-9eaa-4f08-b09d-b4f1ac843127",
+ "_uid": "72a33212-09be-4351-abb1-136c71d6a4ba",
"text": "We prioritize efficiency without sacrificing quality. Our secret? A groundbreaking, code-first, open-source framework for [building design systems](#).\n\nThis tool expedites our **development process**, saving you precious time and enabling us to deliver superior results more quickly. With this framework, your design system aspirations can be realized faster than ever before.\n\n_Experience the power of streamlined development and see the difference it can make in your projects._",
"type": "text",
"align": "left",
@@ -2482,25 +2127,25 @@
"component": "text",
"highlightText": false
},
- "component_id": 6257232,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:47.984Z",
- "updated_at": "2024-09-05T10:54:47.984Z",
- "image": "//a.storyblok.com/f/303819/1000x407/15f7209661/components-text-single-column.png",
+ "component_id": 5657117,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:35.973Z",
+ "updated_at": "2024-04-15T18:24:35.973Z",
+ "image": "//a.storyblok.com/f/284892/1000x407/aa915fbe76/components-text-single-column.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277520,
+ "id": 2131846,
"name": "SingleDropdown",
"preset": {
- "_uid": "ff8c2850-ae3b-4904-956e-ae2ed101ae0e",
+ "_uid": "d5dccebd-009a-4e20-9c8f-cfaac435f8d9",
"type": "faq",
"component": "faq",
"questions": [
{
- "_uid": "9d794d04-0eeb-46b4-a981-761859376c5c",
+ "_uid": "c0b2e524-df2e-4c03-9355-4a093c9e939a",
"type": "questions",
"answer": "Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture.",
"question": "What is a Design System?",
@@ -2508,20 +2153,20 @@
}
]
},
- "component_id": 6257233,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:49.982Z",
- "updated_at": "2024-09-05T10:54:49.982Z",
- "image": "//a.storyblok.com/f/303819/820x228/892cf42e2b/components-faq-single-dropdown.png",
+ "component_id": 5657105,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:26.968Z",
+ "updated_at": "2024-04-15T18:24:26.968Z",
+ "image": "//a.storyblok.com/f/284892/820x228/4d05af98a3/components-faq-single-dropdown.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277532,
+ "id": 2131878,
"name": "Slider",
"preset": {
- "_uid": "44738c4b-0109-4e20-b986-f7d87806910a",
+ "_uid": "b9bf1c01-911b-4469-abaf-471e195af516",
"type": "section",
"style": "default",
"width": "default",
@@ -2542,124 +2187,124 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:55.892Z",
- "updated_at": "2024-09-05T10:54:55.892Z",
- "image": "//a.storyblok.com/f/303819/1440x938/e83454f899/layout-section-slider.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:37.709Z",
+ "updated_at": "2024-04-15T18:24:37.709Z",
+ "image": "//a.storyblok.com/f/284892/1440x938/15fbae61ed/layout-section-slider.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277512,
+ "id": 2131870,
"name": "SliderLayout",
"preset": {
- "_uid": "11688ed0-c5fe-474c-9409-3befe39aa889",
+ "_uid": "0b9a0d71-e44d-406f-9e80-12f31dbbf6af",
"type": "testimonials",
"layout": "slider",
"component": "testimonials",
"testimonial": [
{
- "_uid": "f0212330-82ee-4d21-af1c-52be9c5c1885",
+ "_uid": "c006a723-4c7d-4fe4-abd9-28ebfeed3b84",
"name": "Emily Johnson",
"type": "testimonial",
"quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
"title": "Chief Marketing Officer at TechFusion Enterprises",
"component": "testimonial",
"image_alt": "Alt Text Customer 1",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dacacb7216/author-emily.png"
},
{
- "_uid": "c8d62c2b-f960-4e77-8d4b-c6a801077805",
+ "_uid": "dc86531b-1720-4132-81fe-9057e0309ad9",
"name": "John Smith",
"type": "testimonial",
"quote": "Systemics's design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand's credibility. It's a partnership that continues to pay dividends.",
"title": "Director of Digital Strategy at EcoTech Solutions",
"component": "testimonial",
"image_alt": "Alt Text Customer 2",
- "image_src": "//a.storyblok.com/f/303819/250x250/777040b161/author-john.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dcb5e18d54/author-john.png"
},
{
- "_uid": "dc3bb7eb-b127-4272-9af8-59bc0376a62a",
+ "_uid": "2a22cc3a-fb6d-4e9a-8c35-ece0a5efa11c",
"name": "Alex Chen",
"type": "testimonial",
"quote": "As a startup, we needed to hit the ground running. Systemics's approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.",
"title": "CEO of LaunchPad Innovations",
"component": "testimonial",
"image_alt": "Alt Text Customer 3",
- "image_src": "//a.storyblok.com/f/303819/250x250/cdacfff2f6/author-alex.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/541c60dfa1/author-alex.png"
}
]
},
- "component_id": 6257231,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:46.885Z",
- "updated_at": "2024-09-05T10:54:46.885Z",
- "image": "//a.storyblok.com/f/303819/1000x1080/e2d6740906/components-testimonials-slider-layout.png",
+ "component_id": 5657116,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:34.968Z",
+ "updated_at": "2024-04-15T18:24:34.968Z",
+ "image": "//a.storyblok.com/f/284892/1000x1080/e3b626bef9/components-testimonials-slider-layout.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277491,
+ "id": 2131852,
"name": "SmallSquaresWithLightbox",
"preset": {
- "_uid": "5675c50e-4b1c-4d5c-a7f9-f0702bb31a92",
+ "_uid": "f56d4a30-ca5c-4d0b-a497-89047bddd20a",
"type": "gallery",
"images": [
{
"alt": "Alt text Image 1",
- "src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
- "_uid": "249430bd-418e-4918-8089-3be7696225cc",
+ "src": "//a.storyblok.com/f/284892/1260x840/26fae8d696/close-up-young-business-team-working.png",
+ "_uid": "9d3a87c1-f533-4787-a372-53c7af65beba",
"type": "images",
"caption": "Caption Image 1",
"component": "images"
},
{
"alt": "Alt text Image 2",
- "src": "//a.storyblok.com/f/303819/996x998/ff01d6d56b/low-angle-tall-building-with-many-windows_23-2148230392.png",
- "_uid": "fe6c654e-cf4e-4963-a6b7-951d0dfd8c46",
+ "src": "//a.storyblok.com/f/284892/996x998/10c82ce2da/low-angle-tall-building-with-many-windows_23-2148230392.png",
+ "_uid": "2ae2d7cc-6d32-4b95-bd53-1ccdaf514338",
"type": "images",
"caption": "Caption Image 2",
"component": "images"
},
{
"alt": "Alt text Image 3",
- "src": "//a.storyblok.com/f/303819/833x833/c5fec35583/full-shot-different-people-working-together.png",
- "_uid": "4ae4ddc6-0c18-4311-b19b-1e8f7704a5b9",
+ "src": "//a.storyblok.com/f/284892/833x833/f4e2812379/full-shot-different-people-working-together.png",
+ "_uid": "bdd7a66e-3c50-45e0-b7f2-9175b21be98b",
"type": "images",
"caption": "Caption Image 3",
"component": "images"
},
{
"alt": "Alt text Image 4",
- "src": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
- "_uid": "d5247b60-6bd4-4826-a6e5-2b25a4f46a96",
+ "src": "//a.storyblok.com/f/284892/1440x960/e507391699/top-view-desk-with-keyboard-drawing-pad.png",
+ "_uid": "03f09f42-8e6b-4073-a813-04ada22d2506",
"type": "images",
"caption": "Caption Image 4",
"component": "images"
},
{
"alt": "Alt text Image 5",
- "src": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
- "_uid": "8db59618-33a5-40d7-b4bb-15263782694d",
+ "src": "//a.storyblok.com/f/284892/1440x960/79f5baf145/people-brainstorming-work-meeting.png",
+ "_uid": "319d7c0a-3f55-4673-9b00-3eed774debd4",
"type": "images",
"caption": "Caption Image 5",
"component": "images"
},
{
"alt": "Alt text Image 6",
- "src": "//a.storyblok.com/f/303819/1000x1500/0e10ec9133/view-modern-office.jpg",
- "_uid": "40395f67-33b8-49cd-a602-00e4765d906c",
+ "src": "//a.storyblok.com/f/284892/1000x1500/bd77d74459/view-modern-office.jpg",
+ "_uid": "c231fbcb-5994-4263-a365-4520b96d2f6b",
"type": "images",
"caption": "Caption Image 6",
"component": "images"
},
{
"alt": "Alt text Image 7",
- "src": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png",
- "_uid": "ccc4dd9b-6e71-4655-92b0-6570786c98c9",
+ "src": "//a.storyblok.com/f/284892/1920x800/092659d08a/colleagues-work-office-using-computers-looking-aside.png",
+ "_uid": "80de6221-7ae5-467d-b1c7-7e2d8402f921",
"type": "images",
"caption": "Caption Image 7",
"component": "images"
@@ -2670,27 +2315,27 @@
"component": "gallery",
"aspectRatio": "square"
},
- "component_id": 6257225,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:37.891Z",
- "updated_at": "2024-09-05T10:54:37.891Z",
- "image": "//a.storyblok.com/f/303819/1100x702/622b6ffed6/components-gallery-small-squares-with-lightbox.png",
+ "component_id": 5657107,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:28.966Z",
+ "updated_at": "2024-04-15T18:24:28.966Z",
+ "image": "//a.storyblok.com/f/284892/1100x702/b7c6534fb4/components-gallery-small-squares-with-lightbox.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277482,
+ "id": 2131840,
"name": "SplitBanner",
"preset": {
"sub": "Subheadline",
- "_uid": "94cbcef2-a2bd-48b6-9db7-5bd5fc8cd86c",
+ "_uid": "6986dd8a-785f-417a-b398-44b06af31fdb",
"text": "Here at Systemics, we bring a range of design system services that can make a difference.",
"type": "cta",
"width": "wide",
"buttons": [
{
- "_uid": "f7b0c4bb-95c3-4bfe-9e75-1ff10555397d",
+ "_uid": "89aba44a-097e-4ec5-aba7-619f61d00202",
"icon": "person",
"type": "buttons",
"label": "What can we do for you?",
@@ -2701,7 +2346,7 @@
"headline": "Design System Services",
"component": "cta",
"fullWidth": true,
- "image_src": "//a.storyblok.com/f/303819/833x833/1a936b8a84/colored-square.png",
+ "image_src": "//a.storyblok.com/f/284892/833x833/632586bff1/colored-square.png",
"textAlign": "left",
"colorNeutral": true,
"contentAlign": "center",
@@ -2711,20 +2356,20 @@
"order_mobileImageLast": false,
"order_desktopImageLast": false
},
- "component_id": 6257223,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:33.979Z",
- "updated_at": "2024-09-05T10:54:33.979Z",
- "image": "//a.storyblok.com/f/303819/1680x850/12ba20bd98/components-cta-split-banner.png",
+ "component_id": 5657095,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:24.967Z",
+ "updated_at": "2024-04-15T18:24:24.967Z",
+ "image": "//a.storyblok.com/f/284892/1680x850/422a285395/components-cta-split-banner.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277534,
+ "id": 2131880,
"name": "Spotlight",
"preset": {
- "_uid": "a8e067b6-8c1b-4a68-9543-65033fe92856",
+ "_uid": "7d064192-3aec-4558-8741-c8b0bc0e18d8",
"type": "section",
"style": "default",
"width": "default",
@@ -2734,7 +2379,7 @@
"spotlight": true,
"spaceAfter": "default",
"spaceBefore": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"headline_sub": "We can create something shining for you too!",
"content_align": "center",
"content_width": "unset",
@@ -2746,42 +2391,42 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:56.765Z",
- "updated_at": "2024-09-05T10:54:56.765Z",
- "image": "//a.storyblok.com/f/303819/1440x928/1378b40b2d/layout-section-spotlight.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:38.235Z",
+ "updated_at": "2024-04-15T18:24:38.235Z",
+ "image": "//a.storyblok.com/f/284892/1440x928/a729814f5f/layout-section-spotlight.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277494,
+ "id": 2131855,
"name": "StackLandscape",
"preset": {
- "_uid": "d68808f2-d45d-4733-8dc0-59752894c41e",
+ "_uid": "e586b0dc-622b-4047-8999-d31b809bf437",
"type": "gallery",
"images": [
{
"alt": "Alt text Image 1",
- "src": "//a.storyblok.com/f/303819/1260x840/25c98333fb/close-up-young-business-team-working.png",
- "_uid": "d6275c4b-8277-4e89-b72f-c6d03194b7f0",
+ "src": "//a.storyblok.com/f/284892/1260x840/26fae8d696/close-up-young-business-team-working.png",
+ "_uid": "202a848b-76ed-4872-84e1-422a1fc95a57",
"type": "images",
"caption": "Caption Image 1",
"component": "images"
},
{
"alt": "Alt text Image 2",
- "src": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
- "_uid": "a44ccecd-eaa8-495c-a17e-854a622940c0",
+ "src": "//a.storyblok.com/f/284892/1440x960/e507391699/top-view-desk-with-keyboard-drawing-pad.png",
+ "_uid": "c596bcd2-e152-488a-b56e-eea30c198b6d",
"type": "images",
"caption": "Caption Image 2",
"component": "images"
},
{
"alt": "Alt text Image 3",
- "src": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
- "_uid": "86dfc1ac-8c09-43da-b83e-0b124448d29a",
+ "src": "//a.storyblok.com/f/284892/1440x960/79f5baf145/people-brainstorming-work-meeting.png",
+ "_uid": "9f154d49-5430-4f01-b029-b7cc8597e08d",
"type": "images",
"caption": "Caption Image 3",
"component": "images"
@@ -2792,26 +2437,26 @@
"component": "gallery",
"aspectRatio": "landscape"
},
- "component_id": 6257225,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:38.884Z",
- "updated_at": "2024-09-05T10:54:38.884Z",
- "image": "//a.storyblok.com/f/303819/846x1512/d46689ead1/components-gallery-stack-landscape.png",
+ "component_id": 5657107,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:29.979Z",
+ "updated_at": "2024-04-15T18:24:29.979Z",
+ "image": "//a.storyblok.com/f/284892/846x1512/a86afcef44/components-gallery-stack-landscape.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277487,
+ "id": 2131848,
"name": "StackWithButton",
"preset": {
- "_uid": "8df0773a-268c-46cc-bb7d-d731ec201dbc",
+ "_uid": "2f6f2487-5b0f-4eeb-aab4-ef6c3ae0b14d",
"type": "features",
"style": "stack",
"layout": "smallTiles",
"feature": [
{
- "_uid": "23698d00-55ff-4e0a-851e-a0d679f58d96",
+ "_uid": "0f63e5ee-ea9b-4b7f-a577-847626c3d240",
"icon": "person",
"text": "Achieve a consistent UI across different platforms. Our design system ensures your applications maintain a uniform look and feel.",
"type": "feature",
@@ -2824,7 +2469,7 @@
"cta_toggle": true
},
{
- "_uid": "5a79c576-76af-4a0c-b560-e65d19ca1d0e",
+ "_uid": "b8edb537-c1a4-46cd-8959-ad31fb0e37b8",
"icon": "star",
"text": "Our design system is fully customizable, allowing you to tailor the look and feel of your application to match your brand identity.",
"type": "feature",
@@ -2837,7 +2482,7 @@
"cta_toggle": true
},
{
- "_uid": "2d6f8aea-40e4-46d1-82ce-4212cc8d4954",
+ "_uid": "dffabc2c-d038-4aec-a4a8-17eeccdecdef",
"icon": "upload",
"text": "Built with modern cloud architectures in mind, our design system is ready to be deployed on any cloud platform.",
"type": "feature",
@@ -2850,7 +2495,7 @@
"cta_toggle": true
},
{
- "_uid": "d5247fc8-6cf9-4431-a21c-7170994947e2",
+ "_uid": "e076f3c5-ec47-46ab-9803-511bf99eea39",
"icon": "login",
"text": "Security is our priority. Our design system is built with best security practices to keep your application safe.",
"type": "feature",
@@ -2867,20 +2512,20 @@
"ctas_style": "button",
"ctas_toggle": true
},
- "component_id": 6257224,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:35.981Z",
- "updated_at": "2024-09-05T10:54:35.981Z",
- "image": "//a.storyblok.com/f/303819/1230x463/5614033d6c/components-features-stack-with-button.png",
+ "component_id": 5657106,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:27.705Z",
+ "updated_at": "2024-04-15T18:24:27.705Z",
+ "image": "//a.storyblok.com/f/284892/1230x463/7d0eaaf5f0/components-features-stack-with-button.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277535,
+ "id": 2131881,
"name": "Stagelights",
"preset": {
- "_uid": "9275fea2-6192-4e0b-9dc0-420e024c4f8d",
+ "_uid": "f5c1ea58-0705-4a2e-8886-ebf1025c1857",
"type": "section",
"style": "stagelights",
"width": "default",
@@ -2890,7 +2535,7 @@
"spotlight": false,
"spaceAfter": "default",
"spaceBefore": "default",
- "content_mode": "list",
+ "content_mode": "tile",
"headline_sub": "We can create something shining for you too!",
"content_align": "center",
"content_width": "unset",
@@ -2903,207 +2548,20 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:56.886Z",
- "updated_at": "2024-09-05T10:54:56.886Z",
- "image": "//a.storyblok.com/f/303819/1440x928/ae7d888786/layout-section-stagelights.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277521,
- "name": "StickyImageNextToScrollingText",
- "preset": {
- "sub": "Subheadline",
- "_uid": "7a6c1ea5-643b-4d11-bbf1-c357424f9c04",
- "text": "\nHere at Systemics, we bring a range of design system services that can make a difference:\n\n### 1. Design System Consulting\nLet's work side by side to shape a design system strategy that aligns perfectly with your goals. It's not just about tools; it's about guiding principles, stakeholder management und making the right decisions at the right time.\n\n### 2. Design System Creation & Development\nWe'll bring your design system from concept to production, giving you consistent and engaging user experiences across different platforms. We will work together with your digital teams to transfer all complex Figma ideas into code using kickstartDS.\n\n### 3. Headless CMS & Websites\nWe leverage the power of headless CMSs to provide scalable, flexible, and versatile websites that drive your online presence.\n\n### 4. Design System Training\nWe empower your digital teams with the knowledge and skills to manage and evolve your design system effectively.\n\nReady to make your digital journey exceptional?\n ",
- "type": "image-story",
- "layout": "imageLeft",
- "buttons": [
- {
- "_uid": "8bcb62c4-004a-495a-98e0-7e75f8c45833",
- "size": "medium",
- "type": "buttons",
- "label": "Learn More",
- "target": "#",
- "variant": "secondary",
- "disabled": false,
- "component": "buttons"
- },
- {
- "_uid": "f9d52f53-dafb-4e7f-ad12-28dd9abdefd8",
- "size": "medium",
- "type": "buttons",
- "label": "Contact Us",
- "target": "#",
- "variant": "secondary",
- "disabled": false,
- "component": "buttons"
- }
- ],
- "padding": false,
- "headline": "The Sanity & Next.js Experts",
- "component": "image-story",
- "image_src": "//a.storyblok.com/f/303819/833x833/c5fec35583/full-shot-different-people-working-together.png",
- "textAlign": "left",
- "image_vAlign": "top",
- "largeHeadline": true,
- "image_aspectRatio": "unset"
- },
- "component_id": 6257234,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:50.900Z",
- "updated_at": "2024-09-05T10:54:50.900Z",
- "image": "//a.storyblok.com/f/303819/1160x960/e4282bb0e6/components-image-story-sticky-image-next-to-scrolling-text.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:38.711Z",
+ "updated_at": "2024-04-15T18:24:38.711Z",
+ "image": "//a.storyblok.com/f/284892/1440x928/bc178d1e1c/layout-section-stagelights.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277495,
- "name": "TextBelowImage",
- "preset": {
- "sub": "Where Creativity Meets Innovation",
- "_uid": "10f02b42-02a8-4f08-a472-da16ef6419d5",
- "text": "Experience the perfect blend of creativity, innovation, and productivity in our modern office environment.",
- "type": "hero",
- "height": "default",
- "buttons": [
- {
- "_uid": "10f86b04-4ea1-44e9-b134-004c7ceeccdd",
- "icon": "arrow-down",
- "type": "buttons",
- "label": "Explore further",
- "target": "#",
- "component": "buttons"
- }
- ],
- "overlay": true,
- "textbox": false,
- "headline": "Welcome to Our Dynamic Workplace",
- "component": "hero",
- "image_src": "https://picsum.photos/seed/kdsvisual/640/270",
- "colorNeutral": false,
- "image_indent": "none",
- "textPosition": "below",
- "highlightText": true,
- "image_srcMobile": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png",
- "image_srcTablet": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png",
- "image_srcDesktop": "//a.storyblok.com/f/303819/1920x800/3f04615c15/colleagues-work-office-using-computers-looking-aside.png"
- },
- "component_id": 6257226,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:39.756Z",
- "updated_at": "2024-09-05T10:54:39.756Z",
- "image": "//a.storyblok.com/f/303819/1165x780/df0d8d9712/components-hero-text-below-image.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277497,
- "name": "TextBoxOnFullScreen",
- "preset": {
- "sub": "Scalable. Efficient. Seamless.",
- "_uid": "1d36d21f-076c-49c1-be15-bc531770b7c4",
- "text": "Our design system provides a seamless and efficient framework for building scalable applications. Experience unprecedented speed and scalability with our Headless CMS powered websites, web apps & composable architecture.",
- "type": "hero",
- "height": "fullScreen",
- "buttons": [
- {
- "_uid": "a3df4bfe-2d45-4321-9823-b8ed2d6d18f9",
- "icon": "arrow-right",
- "type": "buttons",
- "label": "Discover More",
- "target": "#",
- "component": "buttons"
- },
- {
- "_uid": "a67bb9ff-8d9e-4764-958c-0adcf10b539b",
- "icon": "phone",
- "type": "buttons",
- "label": "Reach Out",
- "target": "#",
- "component": "buttons"
- }
- ],
- "overlay": false,
- "textbox": true,
- "headline": "Discover Our Design System",
- "component": "hero",
- "image_src": "https://picsum.photos/seed/kdsvisual/640/270",
- "colorNeutral": false,
- "image_indent": "none",
- "textPosition": "left",
- "highlightText": false,
- "image_srcMobile": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
- "image_srcTablet": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png",
- "image_srcDesktop": "//a.storyblok.com/f/303819/1440x960/9ba8e16b31/people-brainstorming-work-meeting.png"
- },
- "component_id": 6257226,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:39.983Z",
- "updated_at": "2024-09-05T10:54:39.983Z",
- "image": "//a.storyblok.com/f/303819/1160x1080/fbe82db359/components-hero-text-box-on-full-screen.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277496,
- "name": "TextOnImageWithOverlay",
- "preset": {
- "_uid": "023b6463-ec1b-40ec-9931-3dbe987c4f23",
- "text": "Harness our expertise in crafting scalable and robust applications using cutting-edge technologies.",
- "type": "hero",
- "height": "fullImage",
- "buttons": [
- {
- "_uid": "9eaa7498-0e09-4206-af81-d406d242ec20",
- "icon": "person",
- "type": "buttons",
- "label": "Meet Us",
- "target": "#",
- "component": "buttons"
- },
- {
- "_uid": "de81e553-1603-4150-b87e-491b2e49626c",
- "icon": "date",
- "type": "buttons",
- "label": "Schedule a Meeting",
- "target": "#",
- "component": "buttons"
- }
- ],
- "overlay": true,
- "textbox": false,
- "headline": "Master Scalable Solutions",
- "component": "hero",
- "image_src": "https://picsum.photos/seed/kdsvisual/640/270",
- "colorNeutral": true,
- "image_indent": "none",
- "textPosition": "center",
- "highlightText": false,
- "image_srcMobile": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
- "image_srcTablet": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png",
- "image_srcDesktop": "//a.storyblok.com/f/303819/1440x960/43b555ef09/top-view-desk-with-keyboard-drawing-pad.png"
- },
- "component_id": 6257226,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:39.889Z",
- "updated_at": "2024-09-05T10:54:39.889Z",
- "image": "//a.storyblok.com/f/303819/1165x780/0b1ba375c8/components-hero-text-on-image-with-overlay.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277540,
+ "id": 2131886,
"name": "TileLayout",
"preset": {
- "_uid": "7dc255c1-525d-4a84-8d5b-36a97641921b",
+ "_uid": "a0e5982f-6b86-483e-a143-16ccb7dc74e9",
"type": "section",
"style": "default",
"width": "max",
@@ -3126,74 +2584,26 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:58.763Z",
- "updated_at": "2024-09-05T10:54:58.763Z",
- "image": "//a.storyblok.com/f/303819/1440x445/b1bc0e559f/layout-section-tile-layout.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277524,
- "name": "WithArrows",
- "preset": {
- "gap": 15,
- "nav": true,
- "_uid": "fb8b08d7-590e-4e64-be1a-be0e71303c92",
- "type": "slider",
- "arrows": true,
- "autoplay": false,
- "typeProp": "carousel",
- "component": "slider",
- "equalHeight": true,
- "teaseNeighbours": false
- },
- "component_id": 6257236,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:52.758Z",
- "updated_at": "2024-09-05T10:54:52.758Z",
- "image": "//a.storyblok.com/f/303819/1110x400/8aa668f893/layout-slider-with-arrows.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277527,
- "name": "WithAutoplay",
- "preset": {
- "gap": 15,
- "nav": true,
- "_uid": "8aaeeafa-2989-4491-9cc0-0f55d08073f1",
- "type": "slider",
- "arrows": true,
- "autoplay": true,
- "typeProp": "carousel",
- "component": "slider",
- "equalHeight": true,
- "teaseNeighbours": false
- },
- "component_id": 6257236,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:53.761Z",
- "updated_at": "2024-09-05T10:54:53.761Z",
- "image": "//a.storyblok.com/f/303819/1110x400/162d960ffd/layout-slider-with-autoplay.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:40.222Z",
+ "updated_at": "2024-04-15T18:24:40.222Z",
+ "image": "//a.storyblok.com/f/284892/1440x445/01240ce94b/layout-section-tile-layout.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277539,
+ "id": 2131885,
"name": "WithButtons",
"preset": {
- "_uid": "af81c28c-be3f-45a6-9edf-04721cd90ba8",
+ "_uid": "7efd1b36-a080-42c1-add7-4f9c459b7592",
"type": "section",
"style": "default",
"width": "default",
"buttons": [
{
- "_uid": "a849abf3-a83a-4b2b-a34e-ce8f21ee7e2a",
+ "_uid": "12407bcf-0810-4d29-b107-6c31fedd4e75",
"icon": "arrow-right",
"size": "medium",
"type": "buttons",
@@ -3203,7 +2613,7 @@
"component": "buttons"
},
{
- "_uid": "9ab1fdb2-c913-4275-bf04-e5dfac26656f",
+ "_uid": "096fe54d-4ca2-46c6-b1d1-85ab6439be14",
"icon": "date",
"size": "medium",
"type": "buttons",
@@ -3218,7 +2628,7 @@
"spotlight": false,
"spaceAfter": "default",
"spaceBefore": "default",
- "content_mode": "list",
+ "content_mode": "default",
"headline_sub": "We can create something shining for you too!",
"content_align": "center",
"content_width": "unset",
@@ -3231,50 +2641,26 @@
"backgroundColor": "default",
"content_tileWidth": "default"
},
- "component_id": 6257238,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:57.985Z",
- "updated_at": "2024-09-05T10:54:57.985Z",
- "image": "//a.storyblok.com/f/303819/1440x1016/7a4244285d/layout-section-with-buttons.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277526,
- "name": "WithNav",
- "preset": {
- "gap": 15,
- "nav": true,
- "_uid": "7aa2bccc-6885-4fe9-9630-0a50b8686b99",
- "type": "slider",
- "arrows": true,
- "autoplay": false,
- "typeProp": "carousel",
- "component": "slider",
- "equalHeight": true,
- "teaseNeighbours": false
- },
- "component_id": 6257236,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:52.984Z",
- "updated_at": "2024-09-05T10:54:52.984Z",
- "image": "//a.storyblok.com/f/303819/1110x400/5ecc170620/layout-slider-with-nav.png",
+ "component_id": 5657119,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:39.973Z",
+ "updated_at": "2024-04-15T18:24:39.973Z",
+ "image": "//a.storyblok.com/f/284892/1440x1016/f6400acacd/layout-section-with-buttons.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277513,
+ "id": 2131871,
"name": "WithRating",
"preset": {
- "_uid": "a0f31f57-0965-4307-93f0-e5dac355ec76",
+ "_uid": "1d983a59-a8ee-45b8-9d3f-86d97ca01ec8",
"type": "testimonials",
"layout": "slider",
"component": "testimonials",
"testimonial": [
{
- "_uid": "9c965e55-8d5a-403b-8c8f-009ed11c4861",
+ "_uid": "27da9f35-bf89-49db-8577-7c590b0c6128",
"name": "Emily Johnson",
"type": "testimonial",
"quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
@@ -3282,10 +2668,10 @@
"rating": 5,
"component": "testimonial",
"image_alt": "Alt Text Customer 1",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dacacb7216/author-emily.png"
},
{
- "_uid": "28252c92-92c0-40fe-a791-dfe764210e6c",
+ "_uid": "c7f6f000-45f8-4037-9956-d3d3285faa45",
"name": "John Smith",
"type": "testimonial",
"quote": "Systemics's design system transformed our development process. The consistency it introduced across our platforms not only saved us time but also boosted our brand's credibility. It's a partnership that continues to pay dividends.",
@@ -3293,10 +2679,10 @@
"rating": 4,
"component": "testimonial",
"image_alt": "Alt Text Customer 2",
- "image_src": "//a.storyblok.com/f/303819/250x250/777040b161/author-john.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dcb5e18d54/author-john.png"
},
{
- "_uid": "1add2753-5a10-4969-a7a2-a58339d2e5c0",
+ "_uid": "016933dc-e70b-4ec5-9ee2-bb2cdfef6297",
"name": "Alex Chen",
"type": "testimonial",
"quote": "As a startup, we needed to hit the ground running. Systemics's approach streamlined our dev and design process, allowing us to scale faster and focus on what truly matters - building a product that stands out in the market.",
@@ -3304,69 +2690,45 @@
"rating": 5,
"component": "testimonial",
"image_alt": "Alt Text Customer 3",
- "image_src": "//a.storyblok.com/f/303819/250x250/cdacfff2f6/author-alex.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/541c60dfa1/author-alex.png"
}
]
},
- "component_id": 6257231,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:46.985Z",
- "updated_at": "2024-09-05T10:54:46.985Z",
- "image": "//a.storyblok.com/f/303819/1000x1080/2475869f35/components-testimonials-with-rating.png",
- "color": null,
- "icon": null,
- "description": null
- },
- {
- "id": 2277525,
- "name": "WithTeasedNeighbours",
- "preset": {
- "gap": 15,
- "nav": true,
- "_uid": "5018aeac-e1ed-4288-97fa-cd35ef3bf83f",
- "type": "slider",
- "arrows": true,
- "autoplay": false,
- "typeProp": "carousel",
- "component": "slider",
- "equalHeight": true,
- "teaseNeighbours": true
- },
- "component_id": 6257236,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:52.884Z",
- "updated_at": "2024-09-05T10:54:52.884Z",
- "image": "//a.storyblok.com/f/303819/1110x400/aa59dbbcd5/layout-slider-with-teased-neighbours.png",
+ "component_id": 5657116,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:35.230Z",
+ "updated_at": "2024-04-15T18:24:35.230Z",
+ "image": "//a.storyblok.com/f/284892/1000x1080/68e3ef018e/components-testimonials-with-rating.png",
"color": null,
"icon": null,
"description": null
},
{
- "id": 2277510,
+ "id": 2131868,
"name": "WithTitle",
"preset": {
- "_uid": "89869e7a-eaa0-43fa-b960-fab3cf7b8f1f",
+ "_uid": "6e7a735c-28ad-4c43-8d7a-6e551b25a511",
"type": "testimonials",
"layout": "slider",
"component": "testimonials",
"testimonial": [
{
- "_uid": "14991da1-3d4d-4223-bc82-f9a73857d70d",
+ "_uid": "1685575d-606c-417e-ac1e-385fa1751c8a",
"name": "Emily Johnson",
"type": "testimonial",
"quote": "Working with Systemics technology has been a game-changer for our brand. Their design system expertise brought harmony to our user experiences, making our digital platforms not just functional, but truly captivating.",
"title": "Chief Marketing Officer at TechFusion Enterprises",
"component": "testimonial",
"image_alt": "Alt Text Customer 1",
- "image_src": "//a.storyblok.com/f/303819/250x250/7166103a9f/author-emily.png"
+ "image_src": "//a.storyblok.com/f/284892/250x250/dacacb7216/author-emily.png"
}
]
},
- "component_id": 6257231,
- "space_id": 303819,
- "created_at": "2024-09-05T10:54:45.982Z",
- "updated_at": "2024-09-05T10:54:45.982Z",
- "image": "//a.storyblok.com/f/303819/1000x409/b89186ab9a/components-testimonials-with-title.png",
+ "component_id": 5657116,
+ "space_id": 284892,
+ "created_at": "2024-04-15T18:24:34.227Z",
+ "updated_at": "2024-04-15T18:24:34.227Z",
+ "image": "//a.storyblok.com/f/284892/1000x409/539bee911b/components-testimonials-with-title.png",
"color": null,
"icon": null,
"description": null
diff --git a/types/components-schema.d.ts b/types/components-schema.d.ts
index 6427138..7de6bee 100644
--- a/types/components-schema.d.ts
+++ b/types/components-schema.d.ts
@@ -1,16 +1,5 @@
import {StoryblokStory} from 'storyblok-generate-ts'
-export interface BlogAsideStoryblok {
- author?: BlogAuthorStoryblok[];
- socialSharing?: SocialSharingStoryblok[];
- readingTime?: string;
- date?: string;
- className?: string;
- type?: string;
- _uid: string;
- component: "blog-aside";
-}
-
export interface AssetStoryblok {
_uid?: string;
id: number;
@@ -22,21 +11,27 @@ export interface AssetStoryblok {
filename: string;
copyright?: string;
fieldtype?: string;
- meta_data?: null | {};
+ meta_data?: null | {
+ [k: string]: any;
+ };
is_external_url?: boolean;
+ [k: string]: any;
}
-export interface BlogAuthorStoryblok {
- name?: string;
- byline?: string;
- image_src?: AssetStoryblok;
- image_alt?: string;
- image_fullWidth?: boolean;
- image_aspectRatio?: "" | "wide" | "square" | "vertical";
- links?: LinksStoryblok[];
+export interface BlogAsideStoryblok {
+ author_name?: string;
+ author_byline?: string;
+ author_image?: AssetStoryblok;
+ author_twitter?: string;
+ author_email?: string;
+ socialSharing?: SocialSharingStoryblok[];
+ readingTime?: string;
+ date?: string;
+ className?: string;
type?: string;
_uid: string;
- component: "blog-author";
+ component: "blog-aside";
+ [k: string]: any;
}
export interface BlogHeadStoryblok {
@@ -47,33 +42,31 @@ export interface BlogHeadStoryblok {
type?: string;
_uid: string;
component: "blog-head";
+ [k: string]: any;
}
export interface BlogOverviewStoryblok {
- section?: SectionStoryblok[];
- latestTitle?: string;
latest?: BlogTeaserStoryblok[];
- listTitle?: string;
list?: BlogTeaserStoryblok[];
- moreTitle?: string;
more?: BlogTeaserStoryblok[];
cta?: CtaStoryblok[];
seo?: SeoStoryblok[];
type?: string;
_uid: string;
component: "blog-overview";
+ [k: string]: any;
}
export interface BlogPostStoryblok {
head?: BlogHeadStoryblok[];
aside?: BlogAsideStoryblok[];
content?: string;
- section?: SectionStoryblok[];
cta?: CtaStoryblok[];
seo?: SeoStoryblok[];
type?: string;
_uid: string;
component: "blog-post";
+ [k: string]: any;
}
export type MultilinkStoryblok =
@@ -83,6 +76,7 @@ export type MultilinkStoryblok =
anchor?: string;
linktype?: "story";
target?: "_self" | "_blank";
+ [k: string]: any;
}
| {
url?: string;
@@ -90,11 +84,13 @@ export type MultilinkStoryblok =
anchor?: string;
linktype?: "asset" | "url";
target?: "_self" | "_blank";
+ [k: string]: any;
}
| {
email?: string;
linktype?: "email";
target?: "_self" | "_blank";
+ [k: string]: any;
};
export interface BlogTeaserStoryblok {
@@ -113,6 +109,7 @@ export interface BlogTeaserStoryblok {
type?: string;
_uid: string;
component: "blog-teaser";
+ [k: string]: any;
}
export interface ButtonsStoryblok {
@@ -121,6 +118,7 @@ export interface ButtonsStoryblok {
target?: MultilinkStoryblok;
_uid: string;
component: "buttons";
+ [k: string]: any;
}
export interface CtaStoryblok {
@@ -143,6 +141,7 @@ export interface CtaStoryblok {
type?: string;
_uid: string;
component: "cta";
+ [k: string]: any;
}
export interface FaqStoryblok {
@@ -150,6 +149,7 @@ export interface FaqStoryblok {
type?: string;
_uid: string;
component: "faq";
+ [k: string]: any;
}
export interface FeatureStoryblok {
@@ -164,6 +164,7 @@ export interface FeatureStoryblok {
type?: string;
_uid: string;
component: "feature";
+ [k: string]: any;
}
export interface FeaturesStoryblok {
@@ -175,21 +176,20 @@ export interface FeaturesStoryblok {
type?: string;
_uid: string;
component: "features";
+ [k: string]: any;
}
export interface FooterStoryblok {
logo_src?: AssetStoryblok;
- logo_srcInverted?: AssetStoryblok;
logo_alt?: string;
- logo_homepageHref?: MultilinkStoryblok;
logo_width?: string;
logo_height?: string;
- byline?: string;
- inverted?: boolean;
+ logoHref?: MultilinkStoryblok;
navItems?: NavItemsStoryblok[];
type?: string;
_uid: string;
component: "footer";
+ [k: string]: any;
}
export interface GalleryStoryblok {
@@ -200,45 +200,21 @@ export interface GalleryStoryblok {
type?: string;
_uid: string;
component: "gallery";
+ [k: string]: any;
}
export interface HeaderStoryblok {
logo_src?: AssetStoryblok;
- logo_srcInverted?: AssetStoryblok;
logo_alt?: string;
- logo_homepageHref?: MultilinkStoryblok;
logo_width?: string;
logo_height?: string;
- flyoutInverted?: boolean;
- dropdownInverted?: boolean;
+ logoHref?: MultilinkStoryblok;
floating?: boolean;
- inverted?: boolean;
navItems?: NavItemsStoryblok[];
type?: string;
_uid: string;
component: "header";
-}
-
-export interface HeroStoryblok {
- headline?: string;
- sub?: string;
- text?: string;
- highlightText?: boolean;
- colorNeutral?: boolean;
- height?: "" | "small" | "default" | "fullImage" | "fullScreen";
- textbox?: boolean;
- buttons?: ButtonsStoryblok[];
- overlay?: boolean;
- image_srcMobile?: AssetStoryblok;
- image_srcTablet?: AssetStoryblok;
- image_srcDesktop?: AssetStoryblok;
- image_src?: AssetStoryblok;
- image_indent?: "" | "none" | "left" | "right";
- image_alt?: string;
- textPosition?: "" | "center" | "below" | "left" | "right";
- type?: string;
- _uid: string;
- component: "hero";
+ [k: string]: any;
}
export interface ImagesStoryblok {
@@ -247,24 +223,7 @@ export interface ImagesStoryblok {
caption?: string;
_uid: string;
component: "images";
-}
-
-export interface ImageStoryStoryblok {
- headline?: string;
- largeHeadline?: boolean;
- sub?: string;
- text?: string;
- layout?: "" | "textLeft" | "imageLeft";
- padding?: boolean;
- buttons?: ButtonsStoryblok[];
- image_src?: AssetStoryblok;
- image_aspectRatio?: "" | "unset" | "square" | "wide" | "landscape";
- image_alt?: string;
- image_vAlign?: "" | "center" | "top" | "bottom";
- textAlign?: "" | "left" | "center";
- type?: string;
- _uid: string;
- component: "image-story";
+ [k: string]: any;
}
export interface ImageTextStoryblok {
@@ -276,30 +235,16 @@ export interface ImageTextStoryblok {
type?: string;
_uid: string;
component: "image-text";
-}
-
-export interface ItemsStoryblok {
- href?: MultilinkStoryblok;
- label?: string;
- active?: boolean;
- _uid: string;
- component: "items";
-}
-
-export interface LinksStoryblok {
- icon?: string;
- label?: string;
- href?: MultilinkStoryblok;
- newTab?: boolean;
- _uid: string;
- component: "links";
+ [k: string]: any;
}
export interface LogoStoryblok {
src?: AssetStoryblok;
alt?: string;
+ type?: string;
_uid: string;
component: "logo";
+ [k: string]: any;
}
export interface LogosStoryblok {
@@ -315,36 +260,26 @@ export interface LogosStoryblok {
type?: string;
_uid: string;
component: "logos";
-}
-
-export interface MosaicStoryblok {
- layout?: "" | "alternate" | "textLeft" | "textRight";
- largeHeadlines?: boolean;
- tile?: TileStoryblok[];
- type?: string;
- _uid: string;
- component: "mosaic";
+ [k: string]: any;
}
export interface NavItemsStoryblok {
href?: MultilinkStoryblok;
label?: string;
active?: boolean;
- items?: ItemsStoryblok[];
_uid: string;
component: "navItems";
+ [k: string]: any;
}
export interface PageStoryblok {
section?: SectionStoryblok[];
- header_floating?: boolean;
- header_inverted?: boolean;
- footer_inverted?: boolean;
seo?: SeoStoryblok[];
type?: string;
_uid: string;
component: "page";
uuid?: string;
+ [k: string]: any;
}
export interface QuestionsStoryblok {
@@ -352,6 +287,7 @@ export interface QuestionsStoryblok {
answer?: string;
_uid: string;
component: "questions";
+ [k: string]: any;
}
export interface SectionStoryblok {
@@ -389,22 +325,23 @@ export interface SectionStoryblok {
| FaqStoryblok
| FeaturesStoryblok
| GalleryStoryblok
- | HeroStoryblok
- | ImageStoryStoryblok
| ImageTextStoryblok
| LogosStoryblok
- | MosaicStoryblok
- | SliderStoryblok
| StatsStoryblok
+ | Tab0210B3AeEbb2467387F0Bab9555Ec309Storyblok
+ | Tab1468E511C96840A1B267Ea720C1Ca9EdStoryblok
+ | Tab8726807F12Bd4D53Ae343Df7360494C9Storyblok
+ | TabB5Ece91F9Fc346FdBcfc107686351188Storyblok
+ | TabFb45D4759Bc54D998Ba553C6149B34C0Storyblok
| TeaserCardStoryblok
| TestimonialsStoryblok
| TextStoryblok
- | VideoCurtainStoryblok
)[];
buttons?: ButtonsStoryblok[];
type?: string;
_uid: string;
component: "section";
+ [k: string]: any;
}
export interface SeoStoryblok {
@@ -412,10 +349,11 @@ export interface SeoStoryblok {
description?: string;
keywords?: string;
image?: AssetStoryblok;
- cardImage?: AssetStoryblok;
+ cardImage?: string;
type?: string;
_uid: string;
component: "seo";
+ [k: string]: any;
}
export interface SettingsStoryblok {
@@ -425,38 +363,7 @@ export interface SettingsStoryblok {
type?: string;
_uid: string;
component: "settings";
-}
-
-export interface SliderStoryblok {
- autoplay?: boolean;
- nav?: boolean;
- teaseNeighbours?: boolean;
- equalHeight?: boolean;
- gap?: string;
- arrows?: boolean;
- type?: string;
- className?: string;
- components?: (
- | BlogTeaserStoryblok
- | CtaStoryblok
- | FaqStoryblok
- | FeaturesStoryblok
- | GalleryStoryblok
- | HeroStoryblok
- | ImageStoryStoryblok
- | ImageTextStoryblok
- | LogosStoryblok
- | MosaicStoryblok
- | SliderStoryblok
- | StatsStoryblok
- | TeaserCardStoryblok
- | TestimonialsStoryblok
- | TextStoryblok
- | VideoCurtainStoryblok
- )[];
- typeProp?: "" | "slider" | "carousel";
- _uid: string;
- component: "slider";
+ [k: string]: any;
}
export interface SocialSharingStoryblok {
@@ -465,6 +372,7 @@ export interface SocialSharingStoryblok {
title?: string;
_uid: string;
component: "socialSharing";
+ [k: string]: any;
}
export interface StatStoryblok {
@@ -475,6 +383,7 @@ export interface StatStoryblok {
type?: string;
_uid: string;
component: "stat";
+ [k: string]: any;
}
export interface StatsStoryblok {
@@ -482,13 +391,101 @@ export interface StatsStoryblok {
type?: string;
_uid: string;
component: "stats";
+ [k: string]: any;
+}
+
+export interface Tab0210B3AeEbb2467387F0Bab9555Ec309Storyblok {
+ hero_headline?: string;
+ hero_sub?: string;
+ hero_text?: string;
+ hero_highlightText?: boolean;
+ hero_colorNeutral?: boolean;
+ hero_height?: "" | "small" | "default" | "fullImage" | "fullScreen";
+ hero_textbox?: boolean;
+ hero_buttons?: ButtonsStoryblok[];
+ hero_overlay?: boolean;
+ "hero_tab-7ddc9fb5-a2a6-41a3-b779-114aaf465e66"?: any;
+ image_srcMobile?: AssetStoryblok;
+ image_srcTablet?: AssetStoryblok;
+ image_srcDesktop?: AssetStoryblok;
+ image_src?: AssetStoryblok;
+ image_indent?: "" | "none" | "left" | "right";
+ image_alt?: string;
+ hero_textPosition?: "" | "center" | "below" | "left" | "right";
+ hero_type?: string;
+ _uid: string;
+ component: "tab-0210b3ae-ebb2-4673-87f0-bab9555ec309";
+ [k: string]: any;
+}
+
+export interface Tab1468E511C96840A1B267Ea720C1Ca9EdStoryblok {
+ mosaic_layout?: "" | "alternate" | "textLeft" | "textRight";
+ mosaic_largeHeadlines?: boolean;
+ mosaic_tiles?: TilesStoryblok[];
+ mosaic_type?: string;
+ _uid: string;
+ component: "tab-1468e511-c968-40a1-b267-ea720c1ca9ed";
+ [k: string]: any;
+}
+
+export interface Tab8726807F12Bd4D53Ae343Df7360494C9Storyblok {
+ "video-curtain_headline"?: string;
+ "video-curtain_sub"?: string;
+ "video-curtain_text"?: string;
+ "video-curtain_highlightText"?: boolean;
+ "video-curtain_colorNeutral"?: boolean;
+ "video-curtain_buttons"?: ButtonsStoryblok[];
+ "video-curtain_overlay"?: boolean;
+ "video-curtain_tab-bf9d0675-1df7-4f54-8eef-07de14cbda68"?: any;
+ video_srcMobile?: AssetStoryblok;
+ video_srcTablet?: AssetStoryblok;
+ video_srcDesktop?: AssetStoryblok;
+ "video-curtain_textPosition"?: "" | "center" | "left" | "right";
+ "video-curtain_type"?: string;
+ _uid: string;
+ component: "tab-8726807f-12bd-4d53-ae34-3df7360494c9";
+ [k: string]: any;
+}
+
+export interface TabB5Ece91F9Fc346FdBcfc107686351188Storyblok {
+ "image-story_headline"?: string;
+ "image-story_largeHeadline"?: boolean;
+ "image-story_sub"?: string;
+ "image-story_text"?: string;
+ "image-story_layout"?: "" | "textLeft" | "imageLeft";
+ "image-story_padding"?: boolean;
+ "image-story_buttons"?: ButtonsStoryblok[];
+ "image-story_tab-e81d87ae-553a-4cb2-b064-750d3ecfd872"?: any;
+ image_src?: AssetStoryblok;
+ image_ratio?: "" | "VALUE_4_3" | "VALUE_3_2" | "VALUE_16_9" | "VALUE_1_1" | "none";
+ image_alt?: string;
+ "image-story_textAlign"?: "" | "left" | "center";
+ "image-story_type"?: string;
+ _uid: string;
+ component: "tab-b5ece91f-9fc3-46fd-bcfc-107686351188";
+ [k: string]: any;
+}
+
+export interface TabFb45D4759Bc54D998Ba553C6149B34C0Storyblok {
+ slider_autoplay?: boolean;
+ slider_nav?: boolean;
+ slider_teaseNeighbours?: boolean;
+ slider_equalHeight?: boolean;
+ slider_gap?: string;
+ slider_arrows?: boolean;
+ slider_type?: string;
+ slider_className?: string;
+ slider_typeProp?: "" | "slider" | "carousel";
+ _uid: string;
+ component: "tab-fb45d475-9bc5-4d99-8ba5-53c6149b34c0";
+ [k: string]: any;
}
export interface TagsStoryblok {
entry?: string;
- type?: string;
_uid: string;
component: "tags";
+ [k: string]: any;
}
export interface TeaserCardStoryblok {
@@ -505,6 +502,7 @@ export interface TeaserCardStoryblok {
type?: string;
_uid: string;
component: "teaser-card";
+ [k: string]: any;
}
export interface TestimonialStoryblok {
@@ -517,6 +515,7 @@ export interface TestimonialStoryblok {
type?: string;
_uid: string;
component: "testimonial";
+ [k: string]: any;
}
export interface TestimonialsStoryblok {
@@ -525,6 +524,7 @@ export interface TestimonialsStoryblok {
type?: string;
_uid: string;
component: "testimonials";
+ [k: string]: any;
}
export interface TextStoryblok {
@@ -535,9 +535,10 @@ export interface TextStoryblok {
type?: string;
_uid: string;
component: "text";
+ [k: string]: any;
}
-export interface TileStoryblok {
+export interface TilesStoryblok {
headline?: string;
sub?: string;
text?: string;
@@ -550,24 +551,7 @@ export interface TileStoryblok {
backgroundColor?: string;
backgroundImage?: AssetStoryblok;
textColor?: string;
- type?: string;
- _uid: string;
- component: "tile";
-}
-
-export interface VideoCurtainStoryblok {
- headline?: string;
- sub?: string;
- text?: string;
- highlightText?: boolean;
- colorNeutral?: boolean;
- buttons?: ButtonsStoryblok[];
- overlay?: boolean;
- video_srcMobile?: AssetStoryblok;
- video_srcTablet?: AssetStoryblok;
- video_srcDesktop?: AssetStoryblok;
- textPosition?: "" | "center" | "left" | "right";
- type?: string;
_uid: string;
- component: "video-curtain";
+ component: "tiles";
+ [k: string]: any;
}
diff --git a/types/components-schema.json b/types/components-schema.json
index aa75a41..d9addfa 100644
--- a/types/components-schema.json
+++ b/types/components-schema.json
@@ -3,205 +3,113 @@
{
"name": "blog-aside",
"display_name": "Blog Aside",
- "created_at": "2024-09-05T10:55:02.890Z",
- "updated_at": "2024-09-05T10:55:02.890Z",
- "id": 6257246,
+ "created_at": "2024-04-15T18:24:22.907Z",
+ "updated_at": "2024-04-15T18:24:22.907Z",
+ "id": 5657093,
"schema": {
- "author": {
+ "tab-fa28c006-61ba-4e05-be8a-1dcc637344c9": {
"id": 0,
"pos": 0,
"display_name": "Author",
- "key": "author",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "blog-author"
+ "key": "tab-fa28c006-61ba-4e05-be8a-1dcc637344c9",
+ "keys": [
+ "author_name",
+ "author_byline",
+ "author_image",
+ "author_twitter",
+ "author_email"
],
- "description": "The author of the blog post"
- },
- "socialSharing": {
- "id": 0,
- "pos": 0,
- "display_name": "SocialSharing",
- "key": "socialSharing",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "socialSharing"
- ]
- },
- "readingTime": {
- "id": 0,
- "pos": 0,
- "display_name": "ReadingTime",
- "key": "readingTime",
- "type": "text",
- "description": "The reading time for the blog post",
- "required": false
- },
- "date": {
- "id": 0,
- "pos": 0,
- "display_name": "Date",
- "key": "date",
- "type": "datetime",
- "disable_time": true,
- "description": "The date when the blog post was published",
- "required": false
- },
- "className": {
- "id": 0,
- "pos": 0,
- "display_name": "ClassName",
- "key": "className",
- "type": "text",
+ "type": "tab",
+ "description": "The author of the blog post",
"required": false
},
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "blog-aside"
- }
- },
- "image": "//a.storyblok.com/f/303819/390x646/89a7c36bfb/blog-blog-aside-default.png",
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [
- {
- "id": 2277546,
- "name": "Default",
- "component_id": 6257246,
- "image": "//a.storyblok.com/f/303819/390x646/89a7c36bfb/blog-blog-aside-default.png",
- "icon": null,
- "color": null,
- "description": null
- }
- ],
- "preset_id": null,
- "real_name": "Blog Aside",
- "component_group_uuid": null,
- "color": "#05566a",
- "icon": "block-wallet",
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null
- },
- {
- "name": "blog-author",
- "display_name": "Blog Author",
- "created_at": "2024-09-05T10:55:01.895Z",
- "updated_at": "2024-09-05T10:55:01.895Z",
- "id": 6257244,
- "schema": {
- "name": {
+ "author_name": {
"id": 0,
"pos": 0,
"display_name": "Name",
- "key": "name",
+ "key": "author_name",
"type": "text",
"description": "The name of the author",
"required": false
},
- "byline": {
+ "author_byline": {
"id": 0,
"pos": 0,
"display_name": "Byline",
- "key": "byline",
+ "key": "author_byline",
"type": "text",
"description": "The byline of the author",
"required": false
},
- "tab-f18a8daf-85fc-4cc0-99c5-98562d820a9d": {
+ "author_image": {
"id": 0,
"pos": 0,
"display_name": "Image",
- "key": "tab-f18a8daf-85fc-4cc0-99c5-98562d820a9d",
- "keys": [
- "image_src",
- "image_alt",
- "image_fullWidth",
- "image_aspectRatio"
- ],
- "type": "tab",
- "required": false
- },
- "image_src": {
- "id": 0,
- "pos": 0,
- "display_name": "Src",
- "key": "image_src",
+ "key": "author_image",
"type": "asset",
"filetypes": [
"images"
],
- "description": "URL of the image to display",
+ "description": "The image URL of the author",
"required": false
},
- "image_alt": {
+ "author_twitter": {
"id": 0,
"pos": 0,
- "display_name": "Alt",
- "key": "image_alt",
+ "display_name": "Twitter",
+ "key": "author_twitter",
"type": "text",
- "description": "Alt text of the image",
- "required": false
- },
- "image_fullWidth": {
- "id": 0,
- "pos": 0,
- "display_name": "FullWidth",
- "key": "image_fullWidth",
- "type": "boolean",
- "description": "Image uses all the horizontal space vailable",
+ "description": "The Twitter name of the author",
"required": false
},
- "image_aspectRatio": {
+ "author_email": {
"id": 0,
"pos": 0,
- "display_name": "AspectRatio",
- "key": "image_aspectRatio",
- "type": "option",
- "default_value": "square",
- "description": "Aspect Ratio of the Images",
- "options": [
- {
- "name": "wide",
- "value": "wide",
- "_uid": "dd29f8db-56ee-4ab3-a846-f55502719e5a"
- },
- {
- "name": "square",
- "value": "square",
- "_uid": "17cc9de4-1aef-44ba-8af9-2e4d8773b58f"
- },
- {
- "name": "vertical",
- "value": "vertical",
- "_uid": "b24f56d6-0b6e-4528-8662-9477691139fe"
- }
- ],
+ "display_name": "Email",
+ "key": "author_email",
+ "type": "text",
+ "description": "The Email of the author",
"required": false
},
- "links": {
+ "socialSharing": {
"id": 0,
"pos": 0,
- "display_name": "Links",
- "key": "links",
+ "display_name": "SocialSharing",
+ "key": "socialSharing",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "links"
+ "socialSharing"
]
},
+ "readingTime": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "ReadingTime",
+ "key": "readingTime",
+ "type": "text",
+ "description": "The reading time for the blog post",
+ "required": false
+ },
+ "date": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Date",
+ "key": "date",
+ "type": "datetime",
+ "disable_time": true,
+ "description": "The date when the blog post was published",
+ "required": false
+ },
+ "className": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "ClassName",
+ "key": "className",
+ "type": "text",
+ "required": false
+ },
"type": {
"id": 0,
"pos": 0,
@@ -209,27 +117,27 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "blog-author"
+ "default_value": "blog-aside"
}
},
- "image": "//a.storyblok.com/f/303819/390x646/3ad4c977cf/blog-blog-author-default.png",
+ "image": "//a.storyblok.com/f/284892/390x646/e5085b1cdc/blog-blog-aside-default.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277545,
+ "id": 2131834,
"name": "Default",
- "component_id": 6257244,
- "image": "//a.storyblok.com/f/303819/390x646/3ad4c977cf/blog-blog-author-default.png",
+ "component_id": 5657093,
+ "image": "//a.storyblok.com/f/284892/390x646/e5085b1cdc/blog-blog-aside-default.png",
"icon": null,
"color": null,
"description": null
}
],
"preset_id": null,
- "real_name": "Blog Author",
+ "real_name": "Blog Aside",
"component_group_uuid": null,
"color": "#05566a",
"icon": "block-wallet",
@@ -240,9 +148,9 @@
{
"name": "blog-head",
"display_name": "Blog Head",
- "created_at": "2024-09-05T10:55:00.887Z",
- "updated_at": "2024-09-05T10:55:00.887Z",
- "id": 6257242,
+ "created_at": "2024-04-15T18:24:22.633Z",
+ "updated_at": "2024-04-15T18:24:22.633Z",
+ "id": 5657091,
"schema": {
"date": {
"id": 0,
@@ -264,8 +172,7 @@
"restrict_components": true,
"component_whitelist": [
"tags"
- ],
- "description": "Tag given to a blog post"
+ ]
},
"headline": {
"id": 0,
@@ -298,17 +205,17 @@
"default_value": "blog-head"
}
},
- "image": "//a.storyblok.com/f/303819/1000x863/d0abca10ad/blog-blog-head-default.png",
+ "image": "//a.storyblok.com/f/284892/1000x863/2b7ceb9294/blog-blog-head-default.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277544,
+ "id": 2131833,
"name": "Default",
- "component_id": 6257242,
- "image": "//a.storyblok.com/f/303819/1000x863/d0abca10ad/blog-blog-head-default.png",
+ "component_id": 5657091,
+ "image": "//a.storyblok.com/f/284892/1000x863/2b7ceb9294/blog-blog-head-default.png",
"icon": null,
"color": null,
"description": null
@@ -326,33 +233,10 @@
{
"name": "blog-overview",
"display_name": "Blog Overview",
- "created_at": "2024-09-05T10:55:05.774Z",
- "updated_at": "2024-09-05T10:55:05.774Z",
- "id": 6257251,
+ "created_at": "2024-04-15T18:24:41.839Z",
+ "updated_at": "2024-04-15T18:24:41.839Z",
+ "id": 5657124,
"schema": {
- "section": {
- "id": 0,
- "pos": 0,
- "display_name": "Section",
- "key": "section",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "section"
- ],
- "description": "Component used to layout components into pages"
- },
- "latestTitle": {
- "id": 0,
- "pos": 0,
- "display_name": "LatestTitle",
- "key": "latestTitle",
- "type": "text",
- "default_value": "Latest Post",
- "description": "Title for the latest post section",
- "required": false
- },
"latest": {
"id": 0,
"pos": 0,
@@ -366,16 +250,6 @@
],
"description": "Display a blog teaser with date, tags, headline, teaser text and author"
},
- "listTitle": {
- "id": 0,
- "pos": 0,
- "display_name": "ListTitle",
- "key": "listTitle",
- "type": "text",
- "default_value": "Recent Posts",
- "description": "Title for the list of posts section",
- "required": false
- },
"list": {
"id": 0,
"pos": 0,
@@ -389,16 +263,6 @@
],
"description": "Display a blog teaser with date, tags, headline, teaser text and author"
},
- "moreTitle": {
- "id": 0,
- "pos": 0,
- "display_name": "MoreTitle",
- "key": "moreTitle",
- "type": "text",
- "default_value": "Featured Posts",
- "description": "Title for the more featured posts section",
- "required": false
- },
"more": {
"id": 0,
"pos": 0,
@@ -466,9 +330,9 @@
{
"name": "blog-post",
"display_name": "Blog Post",
- "created_at": "2024-09-05T10:55:05.899Z",
- "updated_at": "2024-09-05T10:55:05.899Z",
- "id": 6257252,
+ "created_at": "2024-04-15T18:24:41.777Z",
+ "updated_at": "2024-04-15T18:24:41.777Z",
+ "id": 5657123,
"schema": {
"head": {
"id": 0,
@@ -502,22 +366,9 @@
"display_name": "Content",
"key": "content",
"type": "markdown",
- "description": "Body text for the blog post, overwrites sections if present",
+ "description": "Body text for the blog post",
"required": false
},
- "section": {
- "id": 0,
- "pos": 0,
- "display_name": "Section",
- "key": "section",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "section"
- ],
- "description": "Component used to layout components into pages"
- },
"cta": {
"id": 0,
"pos": 0,
@@ -572,9 +423,9 @@
{
"name": "blog-teaser",
"display_name": "Blog Teaser",
- "created_at": "2024-09-05T10:54:59.892Z",
- "updated_at": "2024-09-05T10:54:59.892Z",
- "id": 6257240,
+ "created_at": "2024-04-15T18:24:26.095Z",
+ "updated_at": "2024-04-15T18:24:26.095Z",
+ "id": 5657097,
"schema": {
"date": {
"id": 0,
@@ -596,8 +447,7 @@
"restrict_components": true,
"component_whitelist": [
"tags"
- ],
- "description": "Tag given to a blog post"
+ ]
},
"headline": {
"id": 0,
@@ -629,11 +479,11 @@
"description": "The preview image for the blog post",
"required": false
},
- "tab-a31ed5ed-e71d-4940-b311-639beebe466c": {
+ "tab-b526578f-ba04-467f-83a8-faa7676fd738": {
"id": 0,
"pos": 0,
"display_name": "Link",
- "key": "tab-a31ed5ed-e71d-4940-b311-639beebe466c",
+ "key": "tab-b526578f-ba04-467f-83a8-faa7676fd738",
"keys": [
"link_url",
"link_label"
@@ -674,11 +524,11 @@
"description": "Time to read for the blog post",
"required": false
},
- "tab-00369f46-1fae-46a2-b11d-7d172cd36a84": {
+ "tab-7a3b0c37-e83c-41d6-9f12-1fd2d8bc5d6d": {
"id": 0,
"pos": 0,
"display_name": "Author",
- "key": "tab-00369f46-1fae-46a2-b11d-7d172cd36a84",
+ "key": "tab-7a3b0c37-e83c-41d6-9f12-1fd2d8bc5d6d",
"keys": [
"author_name",
"author_title",
@@ -736,17 +586,17 @@
"default_value": "blog-teaser"
}
},
- "image": "//a.storyblok.com/f/303819/1000x504/9e533dfe80/blog-blog-teaser-default.png",
+ "image": "//a.storyblok.com/f/284892/1000x504/fb1ef6d78b/blog-blog-teaser-default.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277543,
+ "id": 2131844,
"name": "Default",
- "component_id": 6257240,
- "image": "//a.storyblok.com/f/303819/1000x504/9e533dfe80/blog-blog-teaser-default.png",
+ "component_id": 5657097,
+ "image": "//a.storyblok.com/f/284892/1000x504/fb1ef6d78b/blog-blog-teaser-default.png",
"icon": null,
"color": null,
"description": null
@@ -754,7 +604,7 @@
],
"preset_id": null,
"real_name": "Blog Teaser",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -765,9 +615,9 @@
{
"name": "buttons",
"display_name": "Buttons",
- "created_at": "2024-09-05T10:54:29.750Z",
- "updated_at": "2024-09-05T10:54:29.750Z",
- "id": 6257215,
+ "created_at": "2024-04-15T18:24:23.040Z",
+ "updated_at": "2024-04-15T18:24:23.040Z",
+ "id": 5657094,
"schema": {
"label": {
"id": 0,
@@ -819,16 +669,16 @@
{
"name": "cta",
"display_name": "Cta",
- "created_at": "2024-09-05T10:54:31.985Z",
- "updated_at": "2024-09-05T10:54:31.985Z",
- "id": 6257223,
+ "created_at": "2024-04-15T18:24:23.109Z",
+ "updated_at": "2024-04-15T18:24:23.109Z",
+ "id": 5657095,
"schema": {
"headline": {
"id": 0,
"pos": 0,
"display_name": "Headline",
"key": "headline",
- "type": "markdown",
+ "type": "text",
"description": "Headline for the Component element",
"required": false
},
@@ -837,7 +687,7 @@
"pos": 0,
"display_name": "Sub",
"key": "sub",
- "type": "markdown",
+ "type": "text",
"description": "Subheadline below the component headline",
"required": false
},
@@ -846,7 +696,7 @@
"pos": 0,
"display_name": "Text",
"key": "text",
- "type": "markdown",
+ "type": "text",
"description": "Info text for the component element",
"required": false
},
@@ -911,11 +761,11 @@
"description": "Background image for the whole element",
"required": false
},
- "tab-d246f41b-c4e5-4588-8056-c5423912a665": {
+ "tab-e89da9d1-6875-49e5-885c-0a44ffe3a8e5": {
"id": 0,
"pos": 0,
"display_name": "Image",
- "key": "tab-d246f41b-c4e5-4588-8056-c5423912a665",
+ "key": "tab-e89da9d1-6875-49e5-885c-0a44ffe3a8e5",
"keys": [
"image_src",
"image_padding",
@@ -956,11 +806,11 @@
"description": "Image description",
"required": false
},
- "tab-ce177256-6aaf-419b-b1cd-871266b08280": {
+ "tab-e1ae99b2-eb22-4e9d-946a-c56b3cd15db2": {
"id": 0,
"pos": 0,
"display_name": "Order",
- "key": "tab-ce177256-6aaf-419b-b1cd-871266b08280",
+ "key": "tab-e1ae99b2-eb22-4e9d-946a-c56b3cd15db2",
"keys": [
"order_mobileImageLast",
"order_desktopImageLast"
@@ -1000,12 +850,12 @@
{
"name": "left",
"value": "left",
- "_uid": "a4b17041-c9f7-4c02-a469-578e471e116a"
+ "_uid": "d23260ae-b91d-4f07-a9c9-b2fbe11f2208"
},
{
"name": "center",
"value": "center",
- "_uid": "95abd283-d1ad-4789-ac8c-d2299ff84849"
+ "_uid": "24471393-9ad8-4637-b6cc-abc25b28497e"
}
],
"required": false
@@ -1022,17 +872,17 @@
{
"name": "center",
"value": "center",
- "_uid": "9237bcfc-523c-450a-900e-512c4e5b20a6"
+ "_uid": "930e67bf-a29e-4284-a418-774aef564dee"
},
{
"name": "top",
"value": "top",
- "_uid": "034b7aa4-4dfe-40cc-82db-84f5faaae33c"
+ "_uid": "991f62b4-268f-4504-8c28-d220e715f074"
},
{
"name": "bottom",
"value": "bottom",
- "_uid": "f4f6a6f5-5721-40c0-8709-132be8470f07"
+ "_uid": "0141bd8b-d5e7-4d8e-8b42-1309421eddfe"
}
],
"required": false
@@ -1047,89 +897,89 @@
"default_value": "cta"
}
},
- "image": "//a.storyblok.com/f/303819/1000x472/f1941a7bd7/components-cta-banner.png",
+ "image": "//a.storyblok.com/f/284892/1000x472/d3d5681be9/components-cta-banner.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277485,
+ "id": 2131843,
"name": "AlignBottom",
- "component_id": 6257223,
- "image": "//a.storyblok.com/f/303819/1680x1040/9018f3436d/components-cta-align-bottom.png",
+ "component_id": 5657095,
+ "image": "//a.storyblok.com/f/284892/1680x1040/1dc9063e37/components-cta-align-bottom.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277483,
+ "id": 2131841,
"name": "AngledImage",
- "component_id": 6257223,
- "image": "//a.storyblok.com/f/303819/1670x910/46b6f7fb39/components-cta-angled-image.png",
+ "component_id": 5657095,
+ "image": "//a.storyblok.com/f/284892/1670x910/b11575f242/components-cta-angled-image.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277477,
+ "id": 2131835,
"name": "Banner",
- "component_id": 6257223,
- "image": "//a.storyblok.com/f/303819/1000x472/f1941a7bd7/components-cta-banner.png",
+ "component_id": 5657095,
+ "image": "//a.storyblok.com/f/284892/1000x472/d3d5681be9/components-cta-banner.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277484,
+ "id": 2131842,
"name": "ColoredBanner",
- "component_id": 6257223,
- "image": "//a.storyblok.com/f/303819/1350x500/ce25a78eca/components-cta-colored-banner.png",
+ "component_id": 5657095,
+ "image": "//a.storyblok.com/f/284892/1350x500/df4771f86b/components-cta-colored-banner.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277481,
+ "id": 2131839,
"name": "ContactBanner",
- "component_id": 6257223,
- "image": "//a.storyblok.com/f/303819/1600x560/e8bdb29977/components-cta-contact-banner.png",
+ "component_id": 5657095,
+ "image": "//a.storyblok.com/f/284892/1600x560/b5ce3a7aee/components-cta-contact-banner.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277478,
+ "id": 2131836,
"name": "Highlighted",
- "component_id": 6257223,
- "image": "//a.storyblok.com/f/303819/1000x551/f041af0f3a/components-cta-highlighted.png",
+ "component_id": 5657095,
+ "image": "//a.storyblok.com/f/284892/1000x551/beb2797d98/components-cta-highlighted.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277479,
+ "id": 2131837,
"name": "LeftAligned",
- "component_id": 6257223,
- "image": "//a.storyblok.com/f/303819/1000x443/6ba77ac9ce/components-cta-left-aligned.png",
+ "component_id": 5657095,
+ "image": "//a.storyblok.com/f/284892/1000x443/a6fe0192e3/components-cta-left-aligned.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277480,
+ "id": 2131838,
"name": "ProductAdvertisement",
- "component_id": 6257223,
- "image": "//a.storyblok.com/f/303819/1400x660/a58c8732af/components-cta-product-advertisement.png",
+ "component_id": 5657095,
+ "image": "//a.storyblok.com/f/284892/1400x660/18028b7163/components-cta-product-advertisement.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277482,
+ "id": 2131840,
"name": "SplitBanner",
- "component_id": 6257223,
- "image": "//a.storyblok.com/f/303819/1680x850/12ba20bd98/components-cta-split-banner.png",
+ "component_id": 5657095,
+ "image": "//a.storyblok.com/f/284892/1680x850/422a285395/components-cta-split-banner.png",
"icon": null,
"color": null,
"description": null
@@ -1137,7 +987,7 @@
],
"preset_id": null,
"real_name": "Cta",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -1148,9 +998,9 @@
{
"name": "faq",
"display_name": "Faq",
- "created_at": "2024-09-05T10:54:49.755Z",
- "updated_at": "2024-09-05T10:54:49.755Z",
- "id": 6257233,
+ "created_at": "2024-04-15T18:24:26.622Z",
+ "updated_at": "2024-04-15T18:24:26.622Z",
+ "id": 5657105,
"schema": {
"questions": {
"id": 0,
@@ -1174,26 +1024,26 @@
"default_value": "faq"
}
},
- "image": "//a.storyblok.com/f/303819/820x455/1c0c30985e/components-faq-dropdown-list.png",
+ "image": "//a.storyblok.com/f/284892/820x455/2b70ad7e09/components-faq-dropdown-list.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277519,
+ "id": 2131845,
"name": "DropdownList",
- "component_id": 6257233,
- "image": "//a.storyblok.com/f/303819/820x455/1c0c30985e/components-faq-dropdown-list.png",
+ "component_id": 5657105,
+ "image": "//a.storyblok.com/f/284892/820x455/2b70ad7e09/components-faq-dropdown-list.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277520,
+ "id": 2131846,
"name": "SingleDropdown",
- "component_id": 6257233,
- "image": "//a.storyblok.com/f/303819/820x228/892cf42e2b/components-faq-single-dropdown.png",
+ "component_id": 5657105,
+ "image": "//a.storyblok.com/f/284892/820x228/4d05af98a3/components-faq-single-dropdown.png",
"icon": null,
"color": null,
"description": null
@@ -1201,7 +1051,7 @@
],
"preset_id": null,
"real_name": "Faq",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -1212,9 +1062,9 @@
{
"name": "feature",
"display_name": "Feature",
- "created_at": "2024-09-05T10:54:29.988Z",
- "updated_at": "2024-09-05T10:54:29.988Z",
- "id": 6257217,
+ "created_at": "2024-04-15T18:24:26.291Z",
+ "updated_at": "2024-04-15T18:24:26.291Z",
+ "id": 5657099,
"schema": {
"icon": {
"id": 0,
@@ -1239,7 +1089,7 @@
"pos": 0,
"display_name": "Text",
"key": "text",
- "type": "markdown",
+ "type": "text",
"description": "The description of the feature",
"required": false
},
@@ -1254,36 +1104,36 @@
{
"name": "intext",
"value": "intext",
- "_uid": "fe3d9042-34d6-45b9-8557-f1096f9ff011"
+ "_uid": "9b864547-43a3-43e6-9c73-97310f02d84d"
},
{
"name": "stack",
"value": "stack",
- "_uid": "a13ee1e3-29cc-47b8-b4ef-acc1e2fee513"
+ "_uid": "7fd2902a-cbad-44d8-8668-b175eb536761"
},
{
"name": "centered",
"value": "centered",
- "_uid": "0b93d140-8c76-46ba-a5d8-7c4118829293"
+ "_uid": "53bd1a65-94f2-46bf-a246-eef4516eee3a"
},
{
"name": "besideLarge",
"value": "besideLarge",
- "_uid": "b81c7ad6-005f-464b-b372-331f82cb4db8"
+ "_uid": "5fd5bbf9-fd0c-4426-9d0e-f03941f05e1a"
},
{
"name": "besideSmall",
"value": "besideSmall",
- "_uid": "b0ff2aa4-8e20-4ffe-87e5-4a2db377c72b"
+ "_uid": "eda47d52-e3cc-4722-9cee-e31fad01b156"
}
],
"required": false
},
- "tab-12e7739e-7a90-4db7-946d-55ba6df50f43": {
+ "tab-c08929cd-8986-4e7c-a93a-9110725cbfa5": {
"id": 0,
"pos": 0,
"display_name": "Cta",
- "key": "tab-12e7739e-7a90-4db7-946d-55ba6df50f43",
+ "key": "tab-c08929cd-8986-4e7c-a93a-9110725cbfa5",
"keys": [
"cta_target",
"cta_label",
@@ -1340,17 +1190,17 @@
{
"name": "button",
"value": "button",
- "_uid": "22b03fae-5a38-48f4-b065-ef77dbf31a0b"
+ "_uid": "a8363907-dbb5-4140-93b4-bdcfd2c28a60"
},
{
"name": "link",
"value": "link",
- "_uid": "95e1b2c8-7757-43c1-86e1-0da91c20c771"
+ "_uid": "0c047c90-cd7c-41e9-934d-70f4d7bfa733"
},
{
"name": "intext",
"value": "intext",
- "_uid": "2e9d079e-7666-4095-8146-46b34fcb5c7b"
+ "_uid": "3ea2ade7-6637-4c09-938e-ee376510033b"
}
],
"required": false
@@ -1383,9 +1233,9 @@
{
"name": "features",
"display_name": "Features",
- "created_at": "2024-09-05T10:54:35.751Z",
- "updated_at": "2024-09-05T10:54:35.751Z",
- "id": 6257224,
+ "created_at": "2024-04-15T18:24:27.037Z",
+ "updated_at": "2024-04-15T18:24:27.037Z",
+ "id": 5657106,
"schema": {
"layout": {
"id": 0,
@@ -1399,17 +1249,17 @@
{
"name": "largeTiles",
"value": "largeTiles",
- "_uid": "403e7b91-1a10-4638-8b49-a21234b2a078"
+ "_uid": "0dd69ded-24e0-4be3-bd4c-3a1ec4a15ea0"
},
{
"name": "smallTiles",
"value": "smallTiles",
- "_uid": "0d6dbb31-01cb-4b8b-aad9-b22c9ccad325"
+ "_uid": "8041bb4d-e649-47fd-91f8-93b65638e3a1"
},
{
"name": "list",
"value": "list",
- "_uid": "744a1295-1f35-4529-ad22-9a414861c07d"
+ "_uid": "fac8c4a4-9899-4eaf-83e9-dccb66118f5c"
}
],
"required": false
@@ -1425,36 +1275,36 @@
{
"name": "intext",
"value": "intext",
- "_uid": "4f0609f3-8ecd-4fce-9683-8e9d8ba2fa6a"
+ "_uid": "55cf6cce-5265-46be-a71b-50b208131993"
},
{
"name": "stack",
"value": "stack",
- "_uid": "d11c68fd-79fb-48e7-8d93-073654be6e99"
+ "_uid": "540f67f7-4fe3-4cec-9647-cf4561ebf562"
},
{
"name": "centered",
"value": "centered",
- "_uid": "8afddeb3-6b87-44b7-a378-73980c8419e6"
+ "_uid": "93cf36fc-6ad6-4bb3-bb20-10fe5583af7b"
},
{
"name": "besideLarge",
"value": "besideLarge",
- "_uid": "54a26bef-aaa5-4d10-b4f8-63b505686bd8"
+ "_uid": "89e5dff1-018d-4559-b00b-9ff9dca30d81"
},
{
"name": "besideSmall",
"value": "besideSmall",
- "_uid": "90eaaebb-5494-4a5f-8fd7-69b29bb682bf"
+ "_uid": "6018601d-0702-4bab-9c53-864559222407"
}
],
"required": false
},
- "tab-0f4ada49-e8c7-43f4-ab20-df34fedfdcb6": {
+ "tab-28880987-a503-4697-a029-09a964bcca84": {
"id": 0,
"pos": 0,
"display_name": "Ctas",
- "key": "tab-0f4ada49-e8c7-43f4-ab20-df34fedfdcb6",
+ "key": "tab-28880987-a503-4697-a029-09a964bcca84",
"keys": [
"ctas_toggle",
"ctas_style"
@@ -1483,17 +1333,17 @@
{
"name": "button",
"value": "button",
- "_uid": "57e13b44-a3d9-4f27-a583-931adfecec6d"
+ "_uid": "7a83c21a-1c20-47d7-a908-3449f6a8ac15"
},
{
"name": "link",
"value": "link",
- "_uid": "2508931f-4dff-4f79-9dbf-6618ee4c0161"
+ "_uid": "08770fce-bfe5-467e-8875-c5a724438fd4"
},
{
"name": "intext",
"value": "intext",
- "_uid": "78a9ef0d-3552-4c7f-8e63-c1a9522044ef"
+ "_uid": "469ed06b-02e2-423e-976d-6569119e148a"
}
],
"required": false
@@ -1521,53 +1371,53 @@
"default_value": "features"
}
},
- "image": "//a.storyblok.com/f/303819/1440x666/88ba598e61/components-features-icon-centered.png",
+ "image": "//a.storyblok.com/f/284892/1440x666/16d4ba5862/components-features-icon-centered.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277489,
+ "id": 2131850,
"name": "IconBesideWithLinkInText",
- "component_id": 6257224,
- "image": "//a.storyblok.com/f/303819/1000x506/2abadd3a6d/components-features-icon-beside-with-link-in-text.png",
+ "component_id": 5657106,
+ "image": "//a.storyblok.com/f/284892/1000x506/6975008731/components-features-icon-beside-with-link-in-text.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277486,
+ "id": 2131847,
"name": "IconCentered",
- "component_id": 6257224,
- "image": "//a.storyblok.com/f/303819/1440x666/88ba598e61/components-features-icon-centered.png",
+ "component_id": 5657106,
+ "image": "//a.storyblok.com/f/284892/1440x666/16d4ba5862/components-features-icon-centered.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277490,
+ "id": 2131851,
"name": "IconIntextWithLink",
- "component_id": 6257224,
- "image": "//a.storyblok.com/f/303819/1232x524/36a77b0dbb/components-features-icon-intext-with-link.png",
+ "component_id": 5657106,
+ "image": "//a.storyblok.com/f/284892/1232x524/5bbd63cd9d/components-features-icon-intext-with-link.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277488,
+ "id": 2131849,
"name": "ListView",
- "component_id": 6257224,
- "image": "//a.storyblok.com/f/303819/768x755/a0bffa5b37/components-features-list-view.png",
+ "component_id": 5657106,
+ "image": "//a.storyblok.com/f/284892/768x755/9bdd3f1b2a/components-features-list-view.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277487,
+ "id": 2131848,
"name": "StackWithButton",
- "component_id": 6257224,
- "image": "//a.storyblok.com/f/303819/1230x463/5614033d6c/components-features-stack-with-button.png",
+ "component_id": 5657106,
+ "image": "//a.storyblok.com/f/284892/1230x463/7d0eaaf5f0/components-features-stack-with-button.png",
"icon": null,
"color": null,
"description": null
@@ -1575,7 +1425,7 @@
],
"preset_id": null,
"real_name": "Features",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -1586,20 +1436,18 @@
{
"name": "footer",
"display_name": "Footer",
- "created_at": "2024-09-05T10:55:04.892Z",
- "updated_at": "2024-09-05T10:55:04.892Z",
- "id": 6257250,
+ "created_at": "2024-04-15T18:24:41.293Z",
+ "updated_at": "2024-04-15T18:24:41.293Z",
+ "id": 5657122,
"schema": {
- "tab-a3e4fb51-bed2-4bdd-9f94-1adee3745371": {
+ "tab-bc1e312d-29cd-4819-a1ad-14d7552af40b": {
"id": 0,
"pos": 0,
"display_name": "Logo",
- "key": "tab-a3e4fb51-bed2-4bdd-9f94-1adee3745371",
+ "key": "tab-bc1e312d-29cd-4819-a1ad-14d7552af40b",
"keys": [
"logo_src",
- "logo_srcInverted",
"logo_alt",
- "logo_homepageHref",
"logo_width",
"logo_height"
],
@@ -1619,18 +1467,6 @@
"description": "Picture source",
"required": false
},
- "logo_srcInverted": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcInverted",
- "key": "logo_srcInverted",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Picture source",
- "required": false
- },
"logo_alt": {
"id": 0,
"pos": 0,
@@ -1640,19 +1476,6 @@
"description": "Alt text to display for picture",
"required": false
},
- "logo_homepageHref": {
- "id": 0,
- "pos": 0,
- "display_name": "HomepageHref",
- "key": "logo_homepageHref",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "default_value": "/",
- "required": false
- },
"logo_width": {
"id": 0,
"pos": 0,
@@ -1671,23 +1494,17 @@
"description": "Height of the picture",
"required": false
},
- "byline": {
- "id": 0,
- "pos": 0,
- "display_name": "Byline",
- "key": "byline",
- "type": "text",
- "default_value": "© 2024 systemics Inc. All rights reserved.",
- "description": "Small line of text displayed below the logo",
- "required": false
- },
- "inverted": {
+ "logoHref": {
"id": 0,
"pos": 0,
- "display_name": "Inverted",
- "key": "inverted",
- "type": "boolean",
- "description": "Invert the color scheme of the footer",
+ "display_name": "LogoHref",
+ "key": "logoHref",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "default_value": "/",
"required": false
},
"navItems": {
@@ -1712,17 +1529,17 @@
"default_value": "footer"
}
},
- "image": "//a.storyblok.com/f/303819/1280x371/ebabf2db14/layout-footer-footer.png",
+ "image": "//a.storyblok.com/f/284892/1280x371/0d0d9f72a9/layout-footer-footer.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277548,
+ "id": 2131890,
"name": "Footer",
- "component_id": 6257250,
- "image": "//a.storyblok.com/f/303819/1280x371/ebabf2db14/layout-footer-footer.png",
+ "component_id": 5657122,
+ "image": "//a.storyblok.com/f/284892/1280x371/0d0d9f72a9/layout-footer-footer.png",
"icon": null,
"color": null,
"description": null
@@ -1740,9 +1557,9 @@
{
"name": "gallery",
"display_name": "Gallery",
- "created_at": "2024-09-05T10:54:37.755Z",
- "updated_at": "2024-09-05T10:54:37.755Z",
- "id": 6257225,
+ "created_at": "2024-04-15T18:24:28.791Z",
+ "updated_at": "2024-04-15T18:24:28.791Z",
+ "id": 5657107,
"schema": {
"images": {
"id": 0,
@@ -1767,17 +1584,17 @@
{
"name": "stack",
"value": "stack",
- "_uid": "00f10eec-e994-4c21-aa7d-8f45f166760d"
+ "_uid": "04c8c90b-0a24-45fc-afee-cf1d667f4651"
},
{
"name": "smallTiles",
"value": "smallTiles",
- "_uid": "5f035799-088f-4e3f-8daa-da6d3fe446fb"
+ "_uid": "14c2695d-bd71-4a05-994a-afd139410149"
},
{
"name": "largeTiles",
"value": "largeTiles",
- "_uid": "d92bb341-f396-4789-86c9-485c9ad793e1"
+ "_uid": "97cda819-7d22-45c8-a68a-3e8e41ec7fdc"
}
],
"required": false
@@ -1794,22 +1611,22 @@
{
"name": "unset",
"value": "unset",
- "_uid": "b42c7a29-522f-4e02-9611-a1dc5c75e03a"
+ "_uid": "1b667c3e-0a2a-4504-b79b-b8108cda3d90"
},
{
"name": "square",
"value": "square",
- "_uid": "1a00f3a3-138b-481a-b0f2-47886adf6bee"
+ "_uid": "e3d524ce-cf2c-4243-b04e-f405e7c6e6d8"
},
{
"name": "wide",
"value": "wide",
- "_uid": "e5553534-2d1e-49ad-9694-d351dda1a0b6"
+ "_uid": "066d407b-20b2-41cf-a4ae-784e22a890a3"
},
{
"name": "landscape",
"value": "landscape",
- "_uid": "2507e79c-5298-4682-b841-028852326d2f"
+ "_uid": "219877b4-d3ae-4138-aac4-d7341e51242a"
}
],
"required": false
@@ -1833,44 +1650,44 @@
"default_value": "gallery"
}
},
- "image": "//a.storyblok.com/f/303819/1100x702/622b6ffed6/components-gallery-small-squares-with-lightbox.png",
+ "image": "//a.storyblok.com/f/284892/1100x702/b7c6534fb4/components-gallery-small-squares-with-lightbox.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277493,
+ "id": 2131854,
"name": "FreeAspectRatio",
- "component_id": 6257225,
- "image": "//a.storyblok.com/f/303819/1040x779/85aaa7bf52/components-gallery-free-aspect-ratio.png",
+ "component_id": 5657107,
+ "image": "//a.storyblok.com/f/284892/1040x779/50194d6298/components-gallery-free-aspect-ratio.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277492,
+ "id": 2131853,
"name": "LargeLandscapeTiles",
- "component_id": 6257225,
- "image": "//a.storyblok.com/f/303819/1440x735/690b88067b/components-gallery-large-landscape-tiles.png",
+ "component_id": 5657107,
+ "image": "//a.storyblok.com/f/284892/1440x735/7c28ec1909/components-gallery-large-landscape-tiles.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277491,
+ "id": 2131852,
"name": "SmallSquaresWithLightbox",
- "component_id": 6257225,
- "image": "//a.storyblok.com/f/303819/1100x702/622b6ffed6/components-gallery-small-squares-with-lightbox.png",
+ "component_id": 5657107,
+ "image": "//a.storyblok.com/f/284892/1100x702/b7c6534fb4/components-gallery-small-squares-with-lightbox.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277494,
+ "id": 2131855,
"name": "StackLandscape",
- "component_id": 6257225,
- "image": "//a.storyblok.com/f/303819/846x1512/d46689ead1/components-gallery-stack-landscape.png",
+ "component_id": 5657107,
+ "image": "//a.storyblok.com/f/284892/846x1512/a86afcef44/components-gallery-stack-landscape.png",
"icon": null,
"color": null,
"description": null
@@ -1878,7 +1695,7 @@
],
"preset_id": null,
"real_name": "Gallery",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -1889,20 +1706,18 @@
{
"name": "header",
"display_name": "Header",
- "created_at": "2024-09-05T10:55:03.987Z",
- "updated_at": "2024-09-05T10:55:03.987Z",
- "id": 6257249,
+ "created_at": "2024-04-15T18:24:41.132Z",
+ "updated_at": "2024-04-15T18:24:41.132Z",
+ "id": 5657121,
"schema": {
- "tab-a87576f8-2003-4499-82bc-0d5170dc564a": {
+ "tab-e9b8204e-1a53-42bd-898e-05d10457df43": {
"id": 0,
"pos": 0,
"display_name": "Logo",
- "key": "tab-a87576f8-2003-4499-82bc-0d5170dc564a",
+ "key": "tab-e9b8204e-1a53-42bd-898e-05d10457df43",
"keys": [
"logo_src",
- "logo_srcInverted",
"logo_alt",
- "logo_homepageHref",
"logo_width",
"logo_height"
],
@@ -1922,18 +1737,6 @@
"description": "Picture source",
"required": false
},
- "logo_srcInverted": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcInverted",
- "key": "logo_srcInverted",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Picture source",
- "required": false
- },
"logo_alt": {
"id": 0,
"pos": 0,
@@ -1943,20 +1746,7 @@
"description": "Alt text to display for picture",
"required": false
},
- "logo_homepageHref": {
- "id": 0,
- "pos": 0,
- "display_name": "HomepageHref",
- "key": "logo_homepageHref",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "default_value": "/",
- "required": false
- },
- "logo_width": {
+ "logo_width": {
"id": 0,
"pos": 0,
"display_name": "Width",
@@ -1974,22 +1764,17 @@
"description": "Height of the picture",
"required": false
},
- "flyoutInverted": {
- "id": 0,
- "pos": 0,
- "display_name": "FlyoutInverted",
- "key": "flyoutInverted",
- "type": "boolean",
- "description": "Toggle the inversion of the flyout navigation",
- "required": false
- },
- "dropdownInverted": {
+ "logoHref": {
"id": 0,
"pos": 0,
- "display_name": "DropdownInverted",
- "key": "dropdownInverted",
- "type": "boolean",
- "description": "Toggle the inversion of the dropdown navigation",
+ "display_name": "LogoHref",
+ "key": "logoHref",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "default_value": "/",
"required": false
},
"floating": {
@@ -2001,15 +1786,6 @@
"description": "Make the header float over the first Section",
"required": false
},
- "inverted": {
- "id": 0,
- "pos": 0,
- "display_name": "Inverted",
- "key": "inverted",
- "type": "boolean",
- "description": "Invert the color scheme of the header",
- "required": false
- },
"navItems": {
"id": 0,
"pos": 0,
@@ -2032,17 +1808,17 @@
"default_value": "header"
}
},
- "image": "//a.storyblok.com/f/303819/1280x255/2934acfd18/layout-header-header.png",
+ "image": "//a.storyblok.com/f/284892/1280x255/df175845fe/layout-header-header.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277547,
+ "id": 2131889,
"name": "Header",
- "component_id": 6257249,
- "image": "//a.storyblok.com/f/303819/1280x255/2934acfd18/layout-header-header.png",
+ "component_id": 5657121,
+ "image": "//a.storyblok.com/f/284892/1280x255/df175845fe/layout-header-header.png",
"icon": null,
"color": null,
"description": null
@@ -2058,37 +1834,72 @@
"content_type_asset_preview": null
},
{
- "name": "hero",
- "display_name": "Hero",
- "created_at": "2024-09-05T10:54:38.986Z",
- "updated_at": "2024-09-05T10:54:38.986Z",
- "id": 6257226,
+ "name": "images",
+ "display_name": "Images",
+ "created_at": "2024-04-15T18:24:26.351Z",
+ "updated_at": "2024-04-15T18:24:26.351Z",
+ "id": 5657100,
"schema": {
- "headline": {
+ "src": {
"id": 0,
"pos": 0,
- "display_name": "Headline",
- "key": "headline",
- "type": "markdown",
- "description": "Headline for the visual",
+ "display_name": "Src",
+ "key": "src",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "The source of the image",
"required": false
},
- "sub": {
+ "alt": {
"id": 0,
"pos": 0,
- "display_name": "Sub",
- "key": "sub",
- "type": "markdown",
- "description": "Subheadline below the module headline",
+ "display_name": "Alt",
+ "key": "alt",
+ "type": "text",
+ "description": "Alt text of the image",
"required": false
},
+ "caption": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Caption",
+ "key": "caption",
+ "type": "markdown",
+ "description": "The caption of the image",
+ "required": false
+ }
+ },
+ "image": null,
+ "preview_field": null,
+ "is_root": false,
+ "preview_tmpl": null,
+ "is_nestable": true,
+ "all_presets": [],
+ "preset_id": null,
+ "real_name": "Images",
+ "component_group_uuid": null,
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "internal_tags_list": [],
+ "internal_tag_ids": [],
+ "content_type_asset_preview": null
+ },
+ {
+ "name": "image-text",
+ "display_name": "Image Text",
+ "created_at": "2024-04-15T18:24:30.168Z",
+ "updated_at": "2024-04-15T18:24:30.168Z",
+ "id": 5657110,
+ "schema": {
"text": {
"id": 0,
"pos": 0,
"display_name": "Text",
"key": "text",
"type": "markdown",
- "description": "Info text for the module element",
+ "description": "Text content to display beside the image",
"required": false
},
"highlightText": {
@@ -2100,130 +1911,16 @@
"description": "Visually highlight the text",
"required": false
},
- "colorNeutral": {
- "id": 0,
- "pos": 0,
- "display_name": "ColorNeutral",
- "key": "colorNeutral",
- "type": "boolean",
- "description": "Make the text and buttons color neutral",
- "required": false
- },
- "height": {
- "id": 0,
- "pos": 0,
- "display_name": "Height",
- "key": "height",
- "type": "option",
- "default_value": "default",
- "description": "Height",
- "options": [
- {
- "name": "small",
- "value": "small",
- "_uid": "17ca66a3-54a2-46f4-a1a1-c75e2cd121a3"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "fd9f68fe-e403-4295-bf52-9bdecaae49c3"
- },
- {
- "name": "fullImage",
- "value": "fullImage",
- "_uid": "8f9b8d78-2d9e-4b07-a6da-61f848c18601"
- },
- {
- "name": "fullScreen",
- "value": "fullScreen",
- "_uid": "02df2649-9625-42d2-8c7b-a7afabaa7ab5"
- }
- ],
- "required": false
- },
- "textbox": {
- "id": 0,
- "pos": 0,
- "display_name": "Textbox",
- "key": "textbox",
- "type": "boolean",
- "default_value": true,
- "description": "Toggle wether you want your text to be displayed within in box",
- "required": false
- },
- "buttons": {
- "id": 0,
- "pos": 0,
- "display_name": "Buttons",
- "key": "buttons",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "buttons"
- ],
- "description": "Button"
- },
- "overlay": {
- "id": 0,
- "pos": 0,
- "display_name": "Overlay",
- "key": "overlay",
- "type": "boolean",
- "description": "Enable grid layer",
- "required": false
- },
- "tab-5da43e11-b2a3-49e7-83a2-a5a43699432e": {
+ "tab-35a31889-9ec2-4b09-ab1c-81a88245c290": {
"id": 0,
"pos": 0,
"display_name": "Image",
- "key": "tab-5da43e11-b2a3-49e7-83a2-a5a43699432e",
+ "key": "tab-35a31889-9ec2-4b09-ab1c-81a88245c290",
"keys": [
- "image_srcMobile",
- "image_srcTablet",
- "image_srcDesktop",
"image_src",
- "image_indent",
"image_alt"
],
"type": "tab",
- "description": "Sources of background images for different screen sizes",
- "required": false
- },
- "image_srcMobile": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcMobile",
- "key": "image_srcMobile",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Background image source for small screens",
- "required": false
- },
- "image_srcTablet": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcTablet",
- "key": "image_srcTablet",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Background image source for medium screens",
- "required": false
- },
- "image_srcDesktop": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcDesktop",
- "key": "image_srcDesktop",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Background image source for large screens",
"required": false
},
"image_src": {
@@ -2235,34 +1932,7 @@
"filetypes": [
"images"
],
- "description": "Override for img tag of picture element, if needed",
- "required": false
- },
- "image_indent": {
- "id": 0,
- "pos": 0,
- "display_name": "Indent",
- "key": "image_indent",
- "type": "option",
- "default_value": "none",
- "description": "Choose to indent the image horizontally on small screens",
- "options": [
- {
- "name": "none",
- "value": "none",
- "_uid": "ddf1afc1-3b7b-487d-98a6-79695274c13d"
- },
- {
- "name": "left",
- "value": "left",
- "_uid": "8859fc2d-97af-40ce-84e5-fd39a1fb6d74"
- },
- {
- "name": "right",
- "value": "right",
- "_uid": "437b8317-3e93-4e54-9754-be5ea66994ce"
- }
- ],
+ "description": "URL of the image to display",
"required": false
},
"image_alt": {
@@ -2271,37 +1941,36 @@
"display_name": "Alt",
"key": "image_alt",
"type": "text",
- "description": "Alt text to display for picture",
+ "description": "Alt text of the image",
"required": false
},
- "textPosition": {
+ "layout": {
"id": 0,
"pos": 0,
- "display_name": "TextPosition",
- "key": "textPosition",
+ "display_name": "Layout",
+ "key": "layout",
"type": "option",
- "default_value": "bottom",
- "description": "Choose the alginment of the module content",
+ "description": "Position of the image relative to the text",
"options": [
{
- "name": "center",
- "value": "center",
- "_uid": "0d0ddb82-3871-4267-b961-1a0c7dc5c852"
+ "name": "above",
+ "value": "above",
+ "_uid": "23e1fbdd-233f-4eff-8f93-560a78d6bb35"
},
{
"name": "below",
"value": "below",
- "_uid": "5e3ee604-a350-4cd2-b2df-8997745db713"
+ "_uid": "f86bcfa6-3d51-4017-8475-7dd25f0e4258"
},
{
- "name": "left",
- "value": "left",
- "_uid": "3aac650e-b807-4372-94e7-5bbfd6e9da9a"
+ "name": "beside-right",
+ "value": "beside_right",
+ "_uid": "8c09b2d2-794f-4f5f-a307-08e0ac20a3a3"
},
{
- "name": "right",
- "value": "right",
- "_uid": "924c3150-e6ed-4278-a4a9-a33f172c6799"
+ "name": "beside-left",
+ "value": "beside_left",
+ "_uid": "77e347ec-f06b-45fe-ae73-d56e7915d585"
}
],
"required": false
@@ -2313,46 +1982,37 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "hero"
+ "default_value": "image-text"
}
},
- "image": "//a.storyblok.com/f/303819/1165x780/df0d8d9712/components-hero-text-below-image.png",
+ "image": "//a.storyblok.com/f/284892/1240x515/6b4ad645ea/components-image-text-beside-right-layout.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277495,
- "name": "TextBelowImage",
- "component_id": 6257226,
- "image": "//a.storyblok.com/f/303819/1165x780/df0d8d9712/components-hero-text-below-image.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277497,
- "name": "TextBoxOnFullScreen",
- "component_id": 6257226,
- "image": "//a.storyblok.com/f/303819/1160x1080/fbe82db359/components-hero-text-box-on-full-screen.png",
+ "id": 2131857,
+ "name": "AboveLayout",
+ "component_id": 5657110,
+ "image": "//a.storyblok.com/f/284892/760x829/4a57ddcff7/components-image-text-above-layout.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277496,
- "name": "TextOnImageWithOverlay",
- "component_id": 6257226,
- "image": "//a.storyblok.com/f/303819/1165x780/0b1ba375c8/components-hero-text-on-image-with-overlay.png",
+ "id": 2131856,
+ "name": "BesideRightLayout",
+ "component_id": 5657110,
+ "image": "//a.storyblok.com/f/284892/1240x515/6b4ad645ea/components-image-text-beside-right-layout.png",
"icon": null,
"color": null,
"description": null
}
],
"preset_id": null,
- "real_name": "Hero",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "real_name": "Image Text",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -2361,11 +2021,11 @@
"component_group_name": "Components"
},
{
- "name": "images",
- "display_name": "Images",
- "created_at": "2024-09-05T10:54:30.750Z",
- "updated_at": "2024-09-05T10:54:30.750Z",
- "id": 6257218,
+ "name": "logo",
+ "display_name": "Logo",
+ "created_at": "2024-04-15T18:24:26.403Z",
+ "updated_at": "2024-04-15T18:24:26.403Z",
+ "id": 5657101,
"schema": {
"src": {
"id": 0,
@@ -2376,7 +2036,7 @@
"filetypes": [
"images"
],
- "description": "The source of the image",
+ "description": "The URL of the logo image",
"required": false
},
"alt": {
@@ -2385,17 +2045,17 @@
"display_name": "Alt",
"key": "alt",
"type": "text",
- "description": "Alt text of the image",
+ "description": "The alt text of the logo",
"required": false
},
- "caption": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "Caption",
- "key": "caption",
- "type": "markdown",
- "description": "The caption of the image",
- "required": false
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "logo"
}
},
"image": null,
@@ -2405,7 +2065,7 @@
"is_nestable": true,
"all_presets": [],
"preset_id": null,
- "real_name": "Images",
+ "real_name": "Logo",
"component_group_uuid": null,
"color": "#05566a",
"icon": "block-wallet",
@@ -2414,205 +2074,139 @@
"content_type_asset_preview": null
},
{
- "name": "image-story",
- "display_name": "Image Story",
- "created_at": "2024-09-05T10:54:50.762Z",
- "updated_at": "2024-09-05T10:54:50.762Z",
- "id": 6257234,
+ "name": "logos",
+ "display_name": "Logos",
+ "created_at": "2024-04-15T18:24:30.755Z",
+ "updated_at": "2024-04-15T18:24:30.755Z",
+ "id": 5657111,
"schema": {
- "headline": {
- "id": 0,
- "pos": 0,
- "display_name": "Headline",
- "key": "headline",
- "type": "markdown",
- "description": "Headline for the module element",
- "required": false
- },
- "largeHeadline": {
- "id": 0,
- "pos": 0,
- "display_name": "LargeHeadline",
- "key": "largeHeadline",
- "type": "boolean",
- "description": "Make the headline larger",
- "required": false
- },
- "sub": {
+ "tagline": {
"id": 0,
"pos": 0,
- "display_name": "Sub",
- "key": "sub",
- "type": "markdown",
- "description": "Subheadline below the module headline",
+ "display_name": "Tagline",
+ "key": "tagline",
+ "type": "text",
+ "description": "A short tagline atop the logos",
"required": false
},
- "text": {
+ "logo": {
"id": 0,
"pos": 0,
- "display_name": "Text",
- "key": "text",
- "type": "markdown",
- "description": "Info text for the module element",
- "required": false
+ "display_name": "Logo",
+ "key": "logo",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "logo"
+ ],
+ "description": "Logo entry for Logos component"
},
- "layout": {
+ "align": {
"id": 0,
"pos": 0,
- "display_name": "Layout",
- "key": "layout",
+ "display_name": "Align",
+ "key": "align",
"type": "option",
- "default_value": "imageLeft",
- "description": "Choose the layout for the component",
+ "default_value": "center",
+ "description": "The alignment of the logo layout",
"options": [
{
- "name": "textLeft",
- "value": "textLeft",
- "_uid": "f3ddd9a5-cc20-4905-b590-139bfb115aac"
+ "name": "left",
+ "value": "left",
+ "_uid": "e8066d4f-5bb3-483c-8c30-d0a4811e49ba"
},
{
- "name": "imageLeft",
- "value": "imageLeft",
- "_uid": "0bc071f6-2fd4-49f4-9c8a-c19e6ab8d02a"
+ "name": "center",
+ "value": "center",
+ "_uid": "b41d5565-f108-4152-86d8-3703ce1b84e2"
}
],
"required": false
},
- "padding": {
+ "logosPerRow": {
"id": 0,
"pos": 0,
- "display_name": "Padding",
- "key": "padding",
- "type": "boolean",
- "description": "Give the component padding",
+ "display_name": "LogosPerRow",
+ "key": "logosPerRow",
+ "type": "number",
+ "description": "The amount of logos to display per row",
"required": false
},
- "buttons": {
- "id": 0,
- "pos": 0,
- "display_name": "Buttons",
- "key": "buttons",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "buttons"
- ],
- "description": "Component used for user interaction"
- },
- "tab-12935758-cf66-4c13-be3d-142e0a809085": {
+ "tab-3b100edf-d105-48f0-8146-6cd78b55a309": {
"id": 0,
"pos": 0,
- "display_name": "Image",
- "key": "tab-12935758-cf66-4c13-be3d-142e0a809085",
+ "display_name": "Cta",
+ "key": "tab-3b100edf-d105-48f0-8146-6cd78b55a309",
"keys": [
- "image_src",
- "image_aspectRatio",
- "image_alt",
- "image_vAlign"
+ "cta_toggle",
+ "cta_text",
+ "cta_link",
+ "cta_label",
+ "cta_style"
],
"type": "tab",
- "description": "Image displayed alongside the text content",
+ "description": "The call to action",
"required": false
},
- "image_src": {
+ "cta_toggle": {
"id": 0,
"pos": 0,
- "display_name": "Src",
- "key": "image_src",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Image source to use",
+ "display_name": "Toggle",
+ "key": "cta_toggle",
+ "type": "boolean",
+ "description": "Activate/disable the CTA",
"required": false
},
- "image_aspectRatio": {
+ "cta_text": {
"id": 0,
"pos": 0,
- "display_name": "AspectRatio",
- "key": "image_aspectRatio",
- "type": "option",
- "default_value": "unset",
- "description": "The aspect ratio of the image",
- "options": [
- {
- "name": "unset",
- "value": "unset",
- "_uid": "2c4901ff-5d37-4624-abb0-a3a0c1667292"
- },
- {
- "name": "square",
- "value": "square",
- "_uid": "7d41ab4c-7ed5-4407-bbf0-67c81979eb9c"
- },
- {
- "name": "wide",
- "value": "wide",
- "_uid": "f2c4927a-a4e6-4e72-b886-873afef0f2d0"
- },
- {
- "name": "landscape",
- "value": "landscape",
- "_uid": "3c944a88-e9e1-4513-9765-594784715e71"
- }
- ],
+ "display_name": "Text",
+ "key": "cta_text",
+ "type": "text",
+ "description": "A short CTA text",
"required": false
},
- "image_alt": {
+ "cta_link": {
"id": 0,
"pos": 0,
- "display_name": "Alt",
- "key": "image_alt",
- "type": "text",
- "description": "Image description",
+ "display_name": "Link",
+ "key": "cta_link",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "default_value": "#",
+ "description": "The CTA link",
"required": false
},
- "image_vAlign": {
+ "cta_label": {
"id": 0,
"pos": 0,
- "display_name": "VAlign",
- "key": "image_vAlign",
- "type": "option",
- "default_value": "top",
- "description": "Select a vertical alignment for the image",
- "options": [
- {
- "name": "center",
- "value": "center",
- "_uid": "f04bdd05-c871-4fb3-95d9-0a414e982f72"
- },
- {
- "name": "top",
- "value": "top",
- "_uid": "81b2da49-b960-49d9-afbf-496c90949608"
- },
- {
- "name": "bottom",
- "value": "bottom",
- "_uid": "1eae0735-4319-4688-859d-64a2fcd48716"
- }
- ],
+ "display_name": "Label",
+ "key": "cta_label",
+ "type": "text",
+ "description": "The text label displayed on the link",
"required": false
},
- "textAlign": {
+ "cta_style": {
"id": 0,
"pos": 0,
- "display_name": "TextAlign",
- "key": "textAlign",
+ "display_name": "Style",
+ "key": "cta_style",
"type": "option",
- "default_value": "left",
- "description": "Choose the alginment of the text",
+ "default_value": "text",
"options": [
{
- "name": "left",
- "value": "left",
- "_uid": "03da1534-e4cd-414d-83f3-07f6e9f6e02a"
+ "name": "button",
+ "value": "button",
+ "_uid": "aab039a4-0837-4cbc-8cad-e1fea566a903"
},
{
- "name": "center",
- "value": "center",
- "_uid": "5bdc30f7-239f-4625-97c1-1f354f140ef1"
+ "name": "text",
+ "value": "text",
+ "_uid": "f4ded535-303e-49bd-8e40-d44163de12b9"
}
],
"required": false
@@ -2624,28 +2218,55 @@
"key": "type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "image-story"
+ "default_value": "logos"
}
},
- "image": "//a.storyblok.com/f/303819/1160x960/e4282bb0e6/components-image-story-sticky-image-next-to-scrolling-text.png",
+ "image": "//a.storyblok.com/f/284892/1000x598/2c37e1d7ea/components-logos-centered-with-button.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277521,
- "name": "StickyImageNextToScrollingText",
- "component_id": 6257234,
- "image": "//a.storyblok.com/f/303819/1160x960/e4282bb0e6/components-image-story-sticky-image-next-to-scrolling-text.png",
+ "id": 2131858,
+ "name": "CenteredWithButton",
+ "component_id": 5657111,
+ "image": "//a.storyblok.com/f/284892/1000x598/2c37e1d7ea/components-logos-centered-with-button.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131859,
+ "name": "LeftAlignedWithTextLink",
+ "component_id": 5657111,
+ "image": "//a.storyblok.com/f/284892/1000x517/f07a8cbcab/components-logos-left-aligned-with-text-link.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131861,
+ "name": "LogoRow",
+ "component_id": 5657111,
+ "image": "//a.storyblok.com/f/284892/1000x450/9304b49c4d/components-logos-logo-row.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131860,
+ "name": "LogoWall",
+ "component_id": 5657111,
+ "image": "//a.storyblok.com/f/284892/1080x860/348654df91/components-logos-logo-wall.png",
"icon": null,
"color": null,
"description": null
}
],
"preset_id": null,
- "real_name": "Image Story",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "real_name": "Logos",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -2654,172 +2275,38 @@
"component_group_name": "Components"
},
{
- "name": "image-text",
- "display_name": "Image Text",
- "created_at": "2024-09-05T10:54:40.757Z",
- "updated_at": "2024-09-05T10:54:40.757Z",
- "id": 6257227,
+ "name": "navItems",
+ "display_name": "NavItems",
+ "created_at": "2024-04-15T18:24:41.047Z",
+ "updated_at": "2024-04-15T18:24:41.047Z",
+ "id": 5657120,
"schema": {
- "text": {
+ "href": {
"id": 0,
"pos": 0,
- "display_name": "Text",
- "key": "text",
- "type": "markdown",
- "description": "Text content to display beside the image",
+ "display_name": "Href",
+ "key": "href",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
"required": false
},
- "highlightText": {
+ "label": {
"id": 0,
"pos": 0,
- "display_name": "HighlightText",
- "key": "highlightText",
- "type": "boolean",
- "description": "Visually highlight the text",
+ "display_name": "Label",
+ "key": "label",
+ "type": "text",
"required": false
},
- "tab-c1e15cff-143f-4999-801c-6b6af4b9e681": {
+ "active": {
"id": 0,
"pos": 0,
- "display_name": "Image",
- "key": "tab-c1e15cff-143f-4999-801c-6b6af4b9e681",
- "keys": [
- "image_src",
- "image_alt"
- ],
- "type": "tab",
- "required": false
- },
- "image_src": {
- "id": 0,
- "pos": 0,
- "display_name": "Src",
- "key": "image_src",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "URL of the image to display",
- "required": false
- },
- "image_alt": {
- "id": 0,
- "pos": 0,
- "display_name": "Alt",
- "key": "image_alt",
- "type": "text",
- "description": "Alt text of the image",
- "required": false
- },
- "layout": {
- "id": 0,
- "pos": 0,
- "display_name": "Layout",
- "key": "layout",
- "type": "option",
- "description": "Position of the image relative to the text",
- "options": [
- {
- "name": "above",
- "value": "above",
- "_uid": "7f4e4771-2c24-4d4a-922f-274e731d4140"
- },
- {
- "name": "below",
- "value": "below",
- "_uid": "1df48d68-3005-4c3b-bf1a-9aa6683f29ac"
- },
- {
- "name": "beside-right",
- "value": "beside_right",
- "_uid": "08817619-141e-452d-befb-247021be2f9a"
- },
- {
- "name": "beside-left",
- "value": "beside_left",
- "_uid": "f06adc9a-29f3-454e-bcfc-59934bcde394"
- }
- ],
- "required": false
- },
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "image-text"
- }
- },
- "image": "//a.storyblok.com/f/303819/1240x515/378da43f36/components-image-text-beside-right-layout.png",
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [
- {
- "id": 2277499,
- "name": "AboveLayout",
- "component_id": 6257227,
- "image": "//a.storyblok.com/f/303819/760x829/71f13c169c/components-image-text-above-layout.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277498,
- "name": "BesideRightLayout",
- "component_id": 6257227,
- "image": "//a.storyblok.com/f/303819/1240x515/378da43f36/components-image-text-beside-right-layout.png",
- "icon": null,
- "color": null,
- "description": null
- }
- ],
- "preset_id": null,
- "real_name": "Image Text",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
- "color": "#05566a",
- "icon": "block-wallet",
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null,
- "component_group_name": "Components"
- },
- {
- "name": "items",
- "display_name": "Items",
- "created_at": "2024-09-05T10:55:03.774Z",
- "updated_at": "2024-09-05T10:55:03.774Z",
- "id": 6257247,
- "schema": {
- "href": {
- "id": 0,
- "pos": 0,
- "display_name": "Href",
- "key": "href",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "required": false
- },
- "label": {
- "id": 0,
- "pos": 0,
- "display_name": "Label",
- "key": "label",
- "type": "text",
- "required": false
- },
- "active": {
- "id": 0,
- "pos": 0,
- "display_name": "Active",
- "key": "active",
- "type": "boolean",
+ "display_name": "Active",
+ "key": "active",
+ "type": "boolean",
"required": false
}
},
@@ -2830,7 +2317,7 @@
"is_nestable": true,
"all_presets": [],
"preset_id": null,
- "real_name": "Items",
+ "real_name": "NavItems",
"component_group_uuid": null,
"color": "#05566a",
"icon": "block-wallet",
@@ -2839,91 +2326,86 @@
"content_type_asset_preview": null
},
{
- "name": "links",
- "display_name": "Links",
- "created_at": "2024-09-05T10:55:01.767Z",
- "updated_at": "2024-09-05T10:55:01.767Z",
- "id": 6257243,
+ "name": "page",
+ "display_name": "Page",
+ "created_at": "2024-04-15T18:24:41.896Z",
+ "updated_at": "2024-04-15T18:24:41.896Z",
+ "id": 5657125,
"schema": {
- "icon": {
- "id": 0,
- "pos": 0,
- "display_name": "Icon",
- "key": "icon",
- "type": "text",
- "required": false
- },
- "label": {
+ "section": {
"id": 0,
"pos": 0,
- "display_name": "Label",
- "key": "label",
- "type": "text",
- "required": false
+ "display_name": "Section",
+ "key": "section",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "section"
+ ],
+ "description": "Component used to layout components into pages"
},
- "href": {
+ "seo": {
"id": 0,
"pos": 0,
- "display_name": "Href",
- "key": "href",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "required": false
+ "display_name": "Seo",
+ "key": "seo",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "seo"
+ ],
+ "description": "Abstracts SEO settings for a website into JSON schema"
},
- "newTab": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "NewTab",
- "key": "newTab",
- "type": "boolean",
- "description": "Open link in new Tab",
- "required": false
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "page"
}
},
"image": null,
"preview_field": null,
- "is_root": false,
+ "is_root": true,
"preview_tmpl": null,
- "is_nestable": true,
+ "is_nestable": false,
"all_presets": [],
"preset_id": null,
- "real_name": "Links",
+ "real_name": "Page",
"component_group_uuid": null,
- "color": "#05566a",
- "icon": "block-wallet",
+ "color": null,
+ "icon": null,
"internal_tags_list": [],
"internal_tag_ids": [],
"content_type_asset_preview": null
},
{
- "name": "logo",
- "display_name": "Logo",
- "created_at": "2024-09-05T10:54:30.901Z",
- "updated_at": "2024-09-05T10:54:30.901Z",
- "id": 6257219,
+ "name": "questions",
+ "display_name": "Questions",
+ "created_at": "2024-04-15T18:24:26.234Z",
+ "updated_at": "2024-04-15T18:24:26.234Z",
+ "id": 5657098,
"schema": {
- "src": {
+ "question": {
"id": 0,
"pos": 0,
- "display_name": "Src",
- "key": "src",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "The URL of the logo image",
+ "display_name": "Question",
+ "key": "question",
+ "type": "markdown",
+ "description": "The question",
"required": false
},
- "alt": {
+ "answer": {
"id": 0,
"pos": 0,
- "display_name": "Alt",
- "key": "alt",
- "type": "text",
- "description": "The alt text of the logo",
+ "display_name": "Answer",
+ "key": "answer",
+ "type": "markdown",
+ "description": "The answer to the question",
"required": false
}
},
@@ -2934,7 +2416,7 @@
"is_nestable": true,
"all_presets": [],
"preset_id": null,
- "real_name": "Logo",
+ "real_name": "Questions",
"component_group_uuid": null,
"color": "#05566a",
"icon": "block-wallet",
@@ -2943,1259 +2425,1353 @@
"content_type_asset_preview": null
},
{
- "name": "logos",
- "display_name": "Logos",
- "created_at": "2024-09-05T10:54:41.754Z",
- "updated_at": "2024-09-05T10:54:41.754Z",
- "id": 6257228,
+ "name": "section",
+ "display_name": "Section",
+ "created_at": "2024-04-15T18:24:37.086Z",
+ "updated_at": "2024-04-15T18:24:37.086Z",
+ "id": 5657119,
"schema": {
- "tagline": {
- "id": 0,
- "pos": 0,
- "display_name": "Tagline",
- "key": "tagline",
- "type": "text",
- "description": "A short tagline atop the logos",
- "required": false
- },
- "logo": {
- "id": 0,
- "pos": 0,
- "display_name": "Logo",
- "key": "logo",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "logo"
- ],
- "description": "Logo entry for Logos component"
- },
- "align": {
+ "width": {
"id": 0,
"pos": 0,
- "display_name": "Align",
- "key": "align",
+ "display_name": "Width",
+ "key": "width",
"type": "option",
- "default_value": "center",
- "description": "The alignment of the logo layout",
+ "default_value": "default",
+ "description": "Width of section to use",
"options": [
{
- "name": "left",
- "value": "left",
- "_uid": "a9063e54-f984-48be-bcec-80ac88eb5f04"
+ "name": "full",
+ "value": "full",
+ "_uid": "d608db28-78f1-422a-8931-bbea01f06f67"
},
{
- "name": "center",
- "value": "center",
- "_uid": "1e5f301e-295c-49c6-a46b-4ef8e65cfea7"
- }
- ],
- "required": false
- },
- "logosPerRow": {
- "id": 0,
- "pos": 0,
- "display_name": "LogosPerRow",
- "key": "logosPerRow",
- "type": "number",
- "description": "The amount of logos to display per row",
- "required": false
- },
- "tab-136c6267-1351-4a9e-8ec4-c1c224bbcc9e": {
- "id": 0,
- "pos": 0,
- "display_name": "Cta",
- "key": "tab-136c6267-1351-4a9e-8ec4-c1c224bbcc9e",
- "keys": [
- "cta_toggle",
- "cta_text",
- "cta_link",
- "cta_label",
- "cta_style"
+ "name": "max",
+ "value": "max",
+ "_uid": "f5f35703-9850-4bed-819d-5044ca78f06f"
+ },
+ {
+ "name": "wide",
+ "value": "wide",
+ "_uid": "4e60782c-5144-43d1-88c8-d5575e064bdf"
+ },
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "a26b1eba-5c60-4811-aa40-ef075fdf8eca"
+ },
+ {
+ "name": "narrow",
+ "value": "narrow",
+ "_uid": "653e1c3f-df6a-4ec4-890e-9b0458dc06d7"
+ }
],
- "type": "tab",
- "description": "The call to action",
- "required": false
- },
- "cta_toggle": {
- "id": 0,
- "pos": 0,
- "display_name": "Toggle",
- "key": "cta_toggle",
- "type": "boolean",
- "description": "Activate/disable the CTA",
"required": false
},
- "cta_text": {
+ "style": {
"id": 0,
"pos": 0,
- "display_name": "Text",
- "key": "cta_text",
- "type": "text",
- "description": "A short CTA text",
+ "display_name": "Style",
+ "key": "style",
+ "type": "option",
+ "default_value": "default",
+ "description": "Style of background",
+ "options": [
+ {
+ "name": "stagelights",
+ "value": "stagelights",
+ "_uid": "a1404d99-c41b-4300-b001-0ffc56966679"
+ },
+ {
+ "name": "horizontalGradient",
+ "value": "horizontalGradient",
+ "_uid": "c8e21d27-e995-4dc0-9b56-cf20ebe3a090"
+ },
+ {
+ "name": "verticalGradient",
+ "value": "verticalGradient",
+ "_uid": "3d7cbb43-d07b-44d4-b167-fb325d940e17"
+ },
+ {
+ "name": "accentTransition",
+ "value": "accentTransition",
+ "_uid": "d81cd40a-2bd5-47ac-8277-5ef03c65d38e"
+ },
+ {
+ "name": "boldTransition",
+ "value": "boldTransition",
+ "_uid": "73e0deb6-3d26-4f63-a652-bf7b8a9e5dab"
+ },
+ {
+ "name": "symmetricGlow",
+ "value": "symmetricGlow",
+ "_uid": "4318f413-f377-4ac1-98f3-ea35ea2e6984"
+ },
+ {
+ "name": "anchorGlow",
+ "value": "anchorGlow",
+ "_uid": "1deba45b-d73f-4cbc-a159-3893088b43c4"
+ }
+ ],
"required": false
},
- "cta_link": {
+ "backgroundColor": {
"id": 0,
"pos": 0,
- "display_name": "Link",
- "key": "cta_link",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "default_value": "#",
- "description": "The CTA link",
+ "display_name": "BackgroundColor",
+ "key": "backgroundColor",
+ "type": "option",
+ "default_value": "default",
+ "description": "Color of background",
+ "options": [
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "c35fb220-f8b6-4b1a-80a3-f79e81936223"
+ },
+ {
+ "name": "accent",
+ "value": "accent",
+ "_uid": "f6327b2c-c0ce-473c-8acf-2dfa4b8a7ff9"
+ },
+ {
+ "name": "bold",
+ "value": "bold",
+ "_uid": "38009f8e-5fde-4a6a-8f3c-e5a67b9e7699"
+ }
+ ],
"required": false
},
- "cta_label": {
+ "spotlight": {
"id": 0,
"pos": 0,
- "display_name": "Label",
- "key": "cta_label",
- "type": "text",
- "description": "The text label displayed on the link",
+ "display_name": "Spotlight",
+ "key": "spotlight",
+ "type": "boolean",
+ "description": "Show spotlight behind cursor",
"required": false
},
- "cta_style": {
+ "spaceBefore": {
"id": 0,
"pos": 0,
- "display_name": "Style",
- "key": "cta_style",
+ "display_name": "SpaceBefore",
+ "key": "spaceBefore",
"type": "option",
- "default_value": "text",
+ "default_value": "default",
+ "description": "Amount of spacing before the section",
"options": [
{
- "name": "button",
- "value": "button",
- "_uid": "3bb1d4bc-8074-4234-9ba1-f8bb1f6853f0"
+ "name": "default",
+ "value": "default",
+ "_uid": "bc7e0c8b-6eb6-436f-a308-dbaa74718d46"
},
{
- "name": "text",
- "value": "text",
- "_uid": "eb1dc43f-dfd3-4ee8-b438-ffa555d449ab"
+ "name": "small",
+ "value": "small",
+ "_uid": "1045f217-be96-4868-8af6-669e549f792b"
+ },
+ {
+ "name": "none",
+ "value": "none",
+ "_uid": "862f45e1-6577-4eab-afc1-7c5986b85561"
}
],
"required": false
},
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "logos"
- }
- },
- "image": "//a.storyblok.com/f/303819/1000x598/2d967b66e6/components-logos-centered-with-button.png",
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [
- {
- "id": 2277500,
- "name": "CenteredWithButton",
- "component_id": 6257228,
- "image": "//a.storyblok.com/f/303819/1000x598/2d967b66e6/components-logos-centered-with-button.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277501,
- "name": "LeftAlignedWithTextLink",
- "component_id": 6257228,
- "image": "//a.storyblok.com/f/303819/1000x517/15d1b71f40/components-logos-left-aligned-with-text-link.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277503,
- "name": "LogoRow",
- "component_id": 6257228,
- "image": "//a.storyblok.com/f/303819/1000x450/54812f303d/components-logos-logo-row.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277502,
- "name": "LogoWall",
- "component_id": 6257228,
- "image": "//a.storyblok.com/f/303819/1080x860/beb940194c/components-logos-logo-wall.png",
- "icon": null,
- "color": null,
- "description": null
- }
- ],
- "preset_id": null,
- "real_name": "Logos",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
- "color": "#05566a",
- "icon": "block-wallet",
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null,
- "component_group_name": "Components"
- },
- {
- "name": "mosaic",
- "display_name": "Mosaic",
- "created_at": "2024-09-05T10:54:50.983Z",
- "updated_at": "2024-09-05T10:54:50.983Z",
- "id": 6257235,
- "schema": {
- "layout": {
+ "spaceAfter": {
"id": 0,
"pos": 0,
- "display_name": "Layout",
- "key": "layout",
+ "display_name": "SpaceAfter",
+ "key": "spaceAfter",
"type": "option",
- "default_value": "alternate",
- "description": "Layout of the mosaic component",
+ "default_value": "default",
+ "description": "Amount of spacing after the section",
"options": [
{
- "name": "alternate",
- "value": "alternate",
- "_uid": "c8aaa038-780a-4c46-b2fe-8d1b6638b32e"
+ "name": "default",
+ "value": "default",
+ "_uid": "a2527731-c6dd-41a2-88b8-cea5aae1cadb"
},
{
- "name": "textLeft",
- "value": "textLeft",
- "_uid": "cb5fab7d-badd-44ab-be67-202b4f14cbfb"
+ "name": "small",
+ "value": "small",
+ "_uid": "b037470b-7c67-4c63-89d0-eccac476110f"
},
{
- "name": "textRight",
- "value": "textRight",
- "_uid": "ea76d4f6-9944-47a8-baf9-2b6c0fb210f4"
+ "name": "none",
+ "value": "none",
+ "_uid": "3482cf95-ac43-4c4d-9939-e5168545f8a2"
}
],
"required": false
},
- "largeHeadlines": {
+ "inverted": {
"id": 0,
"pos": 0,
- "display_name": "LargeHeadlines",
- "key": "largeHeadlines",
+ "display_name": "Inverted",
+ "key": "inverted",
"type": "boolean",
- "description": "Make the headlines larger",
+ "description": "Whether to invert the section",
"required": false
},
- "tile": {
+ "headerSpacing": {
"id": 0,
"pos": 0,
- "display_name": "Tile",
- "key": "tile",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "tile"
+ "display_name": "HeaderSpacing",
+ "key": "headerSpacing",
+ "type": "boolean",
+ "description": "Reserve additional spacing for a floating header",
+ "required": false
+ },
+ "tab-d3c5d9d6-5b3a-4c07-a840-34402411687b": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Headline",
+ "key": "tab-d3c5d9d6-5b3a-4c07-a840-34402411687b",
+ "keys": [
+ "headline_text",
+ "headline_large",
+ "headline_width",
+ "headline_textAlign",
+ "headline_align",
+ "headline_sub",
+ "headline_switchOrder"
],
- "description": "Tile"
+ "type": "tab",
+ "required": false
},
- "type": {
+ "headline_text": {
"id": 0,
"pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "mosaic"
- }
- },
- "image": "//a.storyblok.com/f/303819/1010x1520/92bfb7116d/components-mosaic-colorful-tiles.png",
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [
- {
- "id": 2277523,
- "name": "ColorfulTextWithIllustrations",
- "component_id": 6257235,
- "image": "//a.storyblok.com/f/303819/1010x1520/e0c38888ac/components-mosaic-colorful-text-with-illustrations.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277522,
- "name": "ColorfulTiles",
- "component_id": 6257235,
- "image": "//a.storyblok.com/f/303819/1010x1520/92bfb7116d/components-mosaic-colorful-tiles.png",
- "icon": null,
- "color": null,
- "description": null
- }
- ],
- "preset_id": null,
- "real_name": "Mosaic",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
- "color": "#05566a",
- "icon": "block-wallet",
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null,
- "component_group_name": "Components"
- },
- {
- "name": "navItems",
- "display_name": "NavItems",
- "created_at": "2024-09-05T10:55:03.885Z",
- "updated_at": "2024-09-05T10:55:03.885Z",
- "id": 6257248,
- "schema": {
- "href": {
- "id": 0,
- "pos": 0,
- "display_name": "Href",
- "key": "href",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
+ "display_name": "Text",
+ "key": "headline_text",
+ "type": "markdown",
+ "description": "Headline Text for the section",
"required": false
},
- "label": {
+ "headline_large": {
"id": 0,
"pos": 0,
- "display_name": "Label",
- "key": "label",
- "type": "text",
+ "display_name": "Large",
+ "key": "headline_large",
+ "type": "boolean",
+ "description": "Make the headline larger",
"required": false
},
- "active": {
+ "headline_width": {
"id": 0,
"pos": 0,
- "display_name": "Active",
- "key": "active",
- "type": "boolean",
+ "display_name": "Width",
+ "key": "headline_width",
+ "type": "option",
+ "default_value": "unset",
+ "description": "Width of headline to use",
+ "options": [
+ {
+ "name": "unset",
+ "value": "unset",
+ "_uid": "292b813c-cdc9-414a-9ad1-be68703045f8"
+ },
+ {
+ "name": "narrow",
+ "value": "narrow",
+ "_uid": "35a45cc6-a4b7-4ab3-bfee-8a8d13aa951b"
+ },
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "06cd9101-b64a-4057-afca-94cb275a507e"
+ },
+ {
+ "name": "wide",
+ "value": "wide",
+ "_uid": "4936ef39-8bd2-438c-99d9-097171492dc5"
+ }
+ ],
"required": false
},
- "items": {
- "id": 0,
- "pos": 0,
- "display_name": "Items",
- "key": "items",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "items"
- ]
- }
- },
- "image": null,
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [],
- "preset_id": null,
- "real_name": "NavItems",
- "component_group_uuid": null,
- "color": "#05566a",
- "icon": "block-wallet",
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null
- },
- {
- "name": "page",
- "display_name": "Page",
- "created_at": "2024-09-05T10:51:15.902Z",
- "updated_at": "2024-09-05T10:52:00.177Z",
- "id": 6257166,
- "schema": {
- "section": {
+ "headline_textAlign": {
"id": 0,
"pos": 0,
- "display_name": "Section",
- "key": "section",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "section"
+ "display_name": "TextAlign",
+ "key": "headline_textAlign",
+ "type": "option",
+ "description": "Choose the text alignment for the headline",
+ "options": [
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "a4df7360-a3b5-4e36-bf89-801788c0e6ac"
+ },
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "66790cf7-2926-431a-b7ab-3e4f19a853c8"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "df44352a-3d32-4ee4-8c33-9df31b3f73b9"
+ }
],
- "description": "Component used to layout components into pages"
+ "required": false
},
- "tab-7edb3efb-794b-42a6-bd18-f0f2deafe394": {
+ "headline_align": {
"id": 0,
"pos": 0,
- "display_name": "Header",
- "key": "tab-7edb3efb-794b-42a6-bd18-f0f2deafe394",
- "keys": [
- "header_floating",
- "header_inverted"
+ "display_name": "Align",
+ "key": "headline_align",
+ "type": "option",
+ "description": "Choose an alignment for positioning the headline",
+ "options": [
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "c99587a2-b3a5-4012-81b1-6ed1a2c8af07"
+ },
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "7e8e5a6c-6864-4e0c-8390-0a2ccfeda331"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "5bcfc87e-3bf1-4833-a1e4-71a03b9862ef"
+ }
],
- "type": "tab",
- "description": "Header settings for the page",
"required": false
},
- "header_floating": {
+ "headline_sub": {
"id": 0,
"pos": 0,
- "display_name": "Floating",
- "key": "header_floating",
- "type": "boolean",
- "description": "Toggle default floating header behaviour set in global settings",
+ "display_name": "Sub",
+ "key": "headline_sub",
+ "type": "markdown",
+ "description": "Subheadline for the section",
"required": false
},
- "header_inverted": {
+ "headline_switchOrder": {
"id": 0,
"pos": 0,
- "display_name": "Inverted",
- "key": "header_inverted",
+ "display_name": "SwitchOrder",
+ "key": "headline_switchOrder",
"type": "boolean",
- "description": "Toggle default inverted header behaviour set in global settings",
+ "description": "Switch the order of headline and subheadline",
"required": false
},
- "tab-359793c4-1666-40ee-a6a8-c2534ff9f076": {
+ "tab-4e6a4c56-442d-4eff-9d30-728a75acaee3": {
"id": 0,
"pos": 0,
- "display_name": "Footer",
- "key": "tab-359793c4-1666-40ee-a6a8-c2534ff9f076",
+ "display_name": "Content",
+ "key": "tab-4e6a4c56-442d-4eff-9d30-728a75acaee3",
"keys": [
- "footer_inverted"
+ "content_width",
+ "content_align",
+ "content_gutter",
+ "content_mode",
+ "content_tileWidth"
],
"type": "tab",
- "description": "Footer settings for the page",
"required": false
},
- "footer_inverted": {
+ "content_width": {
"id": 0,
"pos": 0,
- "display_name": "Inverted",
- "key": "footer_inverted",
- "type": "boolean",
- "description": "Toggle default inverted footer behaviour set in global settings",
+ "display_name": "Width",
+ "key": "content_width",
+ "type": "option",
+ "default_value": "unset",
+ "description": "Width of content to use",
+ "options": [
+ {
+ "name": "unset",
+ "value": "unset",
+ "_uid": "1827ef99-34d3-47d5-bea4-16a5cfb2eb44"
+ },
+ {
+ "name": "narrow",
+ "value": "narrow",
+ "_uid": "06a60d2e-91c8-4622-a089-4dec04447ee3"
+ },
+ {
+ "name": "default",
+ "value": "default",
+ "_uid": "03df78a0-7242-4904-930b-7aadecad36a1"
+ },
+ {
+ "name": "wide",
+ "value": "wide",
+ "_uid": "c4264ee9-fcad-4e33-825b-b8b827ca30a8"
+ }
+ ],
"required": false
},
- "seo": {
+ "content_align": {
"id": 0,
"pos": 0,
- "display_name": "Seo",
- "key": "seo",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "seo"
+ "display_name": "Align",
+ "key": "content_align",
+ "type": "option",
+ "default_value": "center",
+ "description": "Choose an alignment for the content",
+ "options": [
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "908e762e-80c4-43cf-9227-0d7d139a74ba"
+ },
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "3a17a32a-672d-4db9-bd38-71b9b3f40c4e"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "1b40c6ad-4444-4a70-97a1-d14127cdc742"
+ }
],
- "description": "Abstracts SEO settings for a website into JSON schema"
+ "required": false
},
- "type": {
+ "content_gutter": {
"id": 0,
"pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "page"
- }
- },
- "image": null,
- "preview_field": null,
- "is_root": true,
- "preview_tmpl": null,
- "is_nestable": false,
- "all_presets": [],
- "preset_id": null,
- "real_name": "Page",
- "component_group_uuid": null,
- "color": null,
- "icon": null,
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null
- },
- {
- "name": "questions",
- "display_name": "Questions",
- "created_at": "2024-09-05T10:54:29.893Z",
- "updated_at": "2024-09-05T10:54:29.893Z",
- "id": 6257216,
- "schema": {
- "question": {
- "id": 0,
- "pos": 0,
- "display_name": "Question",
- "key": "question",
- "type": "markdown",
- "description": "The question",
- "required": false
- },
- "answer": {
- "id": 0,
- "pos": 0,
- "display_name": "Answer",
- "key": "answer",
- "type": "markdown",
- "description": "The answer to the question",
- "required": false
- }
- },
- "image": null,
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [],
- "preset_id": null,
- "real_name": "Questions",
- "component_group_uuid": null,
- "color": "#05566a",
- "icon": "block-wallet",
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null
- },
- {
- "name": "section",
- "display_name": "Section",
- "created_at": "2024-09-05T10:54:54.987Z",
- "updated_at": "2024-09-05T10:54:54.987Z",
- "id": 6257238,
- "schema": {
- "width": {
- "id": 0,
- "pos": 0,
- "display_name": "Width",
- "key": "width",
+ "display_name": "Gutter",
+ "key": "content_gutter",
"type": "option",
"default_value": "default",
- "description": "Width of section to use",
+ "description": "Size of gutter to use",
"options": [
{
- "name": "full",
- "value": "full",
- "_uid": "71d9dfdb-db9c-4165-b3c8-8ed915f6fc6a"
- },
- {
- "name": "max",
- "value": "max",
- "_uid": "67b7fa61-6def-45eb-bcf5-4dcdc84f06bb"
- },
- {
- "name": "wide",
- "value": "wide",
- "_uid": "5587e840-adb7-4cc1-afea-693f4057a174"
+ "name": "large",
+ "value": "large",
+ "_uid": "5be44fd4-7fff-4e50-93e7-ccfc4c462fd0"
},
{
"name": "default",
"value": "default",
- "_uid": "54f6b72e-ba0a-49c4-9548-bc9f440bf967"
- },
- {
- "name": "narrow",
- "value": "narrow",
- "_uid": "29ed1c6d-6ae9-4a15-bbd2-625adf75e0f4"
- }
- ],
- "required": false
- },
- "style": {
- "id": 0,
- "pos": 0,
- "display_name": "Style",
- "key": "style",
- "type": "option",
- "default_value": "default",
- "description": "Style of background",
- "options": [
- {
- "name": "stagelights",
- "value": "stagelights",
- "_uid": "6d6085ae-f039-49ab-8841-345b816fa141"
- },
- {
- "name": "horizontalGradient",
- "value": "horizontalGradient",
- "_uid": "67f7b0c2-4eda-48b2-bbbb-0989195236c6"
- },
- {
- "name": "verticalGradient",
- "value": "verticalGradient",
- "_uid": "87b76484-4e6f-44b5-b90a-13d8a50a75e6"
- },
- {
- "name": "accentTransition",
- "value": "accentTransition",
- "_uid": "50a7b401-e0bb-4b5c-a71d-90c5eb1b94d4"
- },
- {
- "name": "boldTransition",
- "value": "boldTransition",
- "_uid": "129cce97-00d2-4b1c-b898-6d9c31c3ef10"
+ "_uid": "6be9af62-9ef0-40a0-9fa7-3d34ce5935ef"
},
{
- "name": "symmetricGlow",
- "value": "symmetricGlow",
- "_uid": "8e2bb2a6-6f83-41ba-b247-4956b6135c64"
+ "name": "small",
+ "value": "small",
+ "_uid": "2a1fa9d6-fd0c-4d04-b441-2e240394b21e"
},
{
- "name": "anchorGlow",
- "value": "anchorGlow",
- "_uid": "1d9787be-1dd0-4e6e-a789-ce0ef5668048"
+ "name": "none",
+ "value": "none",
+ "_uid": "c6ccee7a-4c6f-4592-a567-4092dd4098ac"
}
],
"required": false
},
- "backgroundColor": {
+ "content_mode": {
"id": 0,
"pos": 0,
- "display_name": "BackgroundColor",
- "key": "backgroundColor",
+ "display_name": "Mode",
+ "key": "content_mode",
"type": "option",
"default_value": "default",
- "description": "Color of background",
+ "description": "Layout mode used for section contents",
"options": [
{
"name": "default",
"value": "default",
- "_uid": "a45efa7b-1480-4fb6-9ca7-f3e184244455"
- },
- {
- "name": "accent",
- "value": "accent",
- "_uid": "90e294c0-c904-4fb9-8d1a-5c5ef38ebb68"
+ "_uid": "c0064f4b-8afe-4fd9-88ec-542df1353ed2"
},
{
- "name": "bold",
- "value": "bold",
- "_uid": "b7a9d203-44fb-446b-bb41-414868ab152d"
- }
- ],
- "required": false
- },
- "spotlight": {
- "id": 0,
- "pos": 0,
- "display_name": "Spotlight",
- "key": "spotlight",
- "type": "boolean",
- "description": "Show spotlight behind cursor",
- "required": false
- },
- "spaceBefore": {
- "id": 0,
- "pos": 0,
- "display_name": "SpaceBefore",
- "key": "spaceBefore",
- "type": "option",
- "default_value": "default",
- "description": "Amount of spacing before the section",
- "options": [
- {
- "name": "default",
- "value": "default",
- "_uid": "05541a50-da73-4d9c-968b-232bd1b699a9"
+ "name": "tile",
+ "value": "tile",
+ "_uid": "7e451f56-4958-4927-8c23-1f0b1d9466ba"
},
{
- "name": "small",
- "value": "small",
- "_uid": "d45e7b53-aef5-41a3-ad5a-8f3eb61924c6"
+ "name": "list",
+ "value": "list",
+ "_uid": "2cf2d79e-f11b-4862-ae8d-c0e2686c50c8"
},
{
- "name": "none",
- "value": "none",
- "_uid": "50f815b4-d007-4026-935d-3744c7a7a6a2"
+ "name": "slider",
+ "value": "slider",
+ "_uid": "285baf39-2b72-439a-81b8-6febfc1471f4"
}
],
"required": false
},
- "spaceAfter": {
+ "content_tileWidth": {
"id": 0,
"pos": 0,
- "display_name": "SpaceAfter",
- "key": "spaceAfter",
+ "display_name": "TileWidth",
+ "key": "content_tileWidth",
"type": "option",
"default_value": "default",
- "description": "Amount of spacing after the section",
+ "description": "Set min-width for the tiles in the grid",
"options": [
+ {
+ "name": "smallest",
+ "value": "smallest",
+ "_uid": "1a00a5fc-d620-4597-9730-7596d9b8da35"
+ },
{
"name": "default",
"value": "default",
- "_uid": "dc0f3118-d9ca-485b-a385-adc2afc19e24"
+ "_uid": "f1b1d4ed-bfcb-455f-b44a-88c4a0101a6e"
},
{
- "name": "small",
- "value": "small",
- "_uid": "860c1266-548c-492a-9f88-00c22fff23b3"
+ "name": "medium",
+ "value": "medium",
+ "_uid": "c6f19f97-8123-4773-af2e-5b7cb32aede1"
},
{
- "name": "none",
- "value": "none",
- "_uid": "d55f1df6-8973-4176-afd3-280e7cd5b803"
+ "name": "large",
+ "value": "large",
+ "_uid": "004a96a6-7ff3-4f2d-a474-eeaf92eac973"
+ },
+ {
+ "name": "largest",
+ "value": "largest",
+ "_uid": "0250cf65-6908-4b9c-9f4d-27fd2292cf53"
}
],
"required": false
},
- "inverted": {
- "id": 0,
- "pos": 0,
- "display_name": "Inverted",
- "key": "inverted",
- "type": "boolean",
- "description": "Whether to invert the section",
- "required": false
- },
- "headerSpacing": {
+ "components": {
"id": 0,
"pos": 0,
- "display_name": "HeaderSpacing",
- "key": "headerSpacing",
- "type": "boolean",
- "description": "Reserve additional spacing for a floating header",
+ "display_name": "Components",
+ "key": "components",
+ "type": "bloks",
+ "restrict_type": "groups",
+ "restrict_components": true,
+ "component_group_whitelist": [
+ "8a33eace-86e4-4471-b4ba-6f54bdc8e91c"
+ ],
+ "description": "Abstracts a page concept into JSON schema",
"required": false
},
- "tab-54ce6624-446b-4495-9665-0b269dac2e7b": {
+ "buttons": {
"id": 0,
"pos": 0,
- "display_name": "Headline",
- "key": "tab-54ce6624-446b-4495-9665-0b269dac2e7b",
- "keys": [
- "headline_text",
- "headline_large",
- "headline_width",
- "headline_textAlign",
- "headline_align",
- "headline_sub",
- "headline_switchOrder"
+ "display_name": "Buttons",
+ "key": "buttons",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "buttons"
],
- "type": "tab",
- "required": false
+ "description": "Component used for user interaction"
},
- "headline_text": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "Text",
- "key": "headline_text",
- "type": "markdown",
- "description": "Headline Text for the section",
- "required": false
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "section"
+ }
+ },
+ "image": "//a.storyblok.com/f/284892/1440x928/b710510df7/layout-section-cards.png",
+ "preview_field": null,
+ "is_root": false,
+ "preview_tmpl": null,
+ "is_nestable": true,
+ "all_presets": [
+ {
+ "id": 2131882,
+ "name": "AccentBackground",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x928/25d96e003d/layout-section-accent-background.png",
+ "icon": null,
+ "color": null,
+ "description": null
},
- "headline_large": {
- "id": 0,
- "pos": 0,
- "display_name": "Large",
- "key": "headline_large",
- "type": "boolean",
- "description": "Make the headline larger",
- "required": false
+ {
+ "id": 2131883,
+ "name": "BoldBackground",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x928/58401dd86b/layout-section-bold-background.png",
+ "icon": null,
+ "color": null,
+ "description": null
},
- "headline_width": {
- "id": 0,
- "pos": 0,
- "display_name": "Width",
- "key": "headline_width",
- "type": "option",
- "default_value": "unset",
- "description": "Width of headline to use",
- "options": [
- {
- "name": "unset",
- "value": "unset",
- "_uid": "e30dff34-a5d2-4981-b062-6bbd86461733"
- },
- {
- "name": "narrow",
- "value": "narrow",
- "_uid": "d7d6996d-4e05-41b7-bb8c-415c13113c44"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "21cd2736-f038-4128-8231-5a8b2a5842c3"
- },
- {
- "name": "wide",
- "value": "wide",
- "_uid": "c89ba3b7-1e27-461d-9716-e60ee8b0f623"
- }
+ {
+ "id": 2131877,
+ "name": "Cards",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x928/b710510df7/layout-section-cards.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131884,
+ "name": "ColorfulGradient",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x928/ddf68d31c9/layout-section-colorful-gradient.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131887,
+ "name": "FlexLayout",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x928/abe16fe1c1/layout-section-flex-layout.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131879,
+ "name": "Inverted",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x928/0436f584ba/layout-section-inverted.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131888,
+ "name": "ListLayout",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x1658/536c75034d/layout-section-list-layout.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131878,
+ "name": "Slider",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x938/15fbae61ed/layout-section-slider.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131880,
+ "name": "Spotlight",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x928/a729814f5f/layout-section-spotlight.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131881,
+ "name": "Stagelights",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x928/bc178d1e1c/layout-section-stagelights.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131886,
+ "name": "TileLayout",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x445/01240ce94b/layout-section-tile-layout.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131885,
+ "name": "WithButtons",
+ "component_id": 5657119,
+ "image": "//a.storyblok.com/f/284892/1440x1016/f6400acacd/layout-section-with-buttons.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ }
+ ],
+ "preset_id": null,
+ "real_name": "Section",
+ "component_group_uuid": null,
+ "color": "#05566a",
+ "icon": "gallery-vertical",
+ "internal_tags_list": [],
+ "internal_tag_ids": [],
+ "content_type_asset_preview": null
+ },
+ {
+ "name": "seo",
+ "display_name": "Seo",
+ "created_at": "2024-04-15T18:24:26.029Z",
+ "updated_at": "2024-04-15T18:24:26.029Z",
+ "id": 5657096,
+ "schema": {
+ "title": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Title",
+ "key": "title",
+ "type": "text",
+ "description": "Title used for the page",
+ "required": false
+ },
+ "description": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Description",
+ "key": "description",
+ "type": "text",
+ "description": "Description used for the page",
+ "required": false
+ },
+ "keywords": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Keywords",
+ "key": "keywords",
+ "type": "text",
+ "description": "Keywords used for the page",
+ "required": false
+ },
+ "image": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Image",
+ "key": "image",
+ "type": "asset",
+ "filetypes": [
+ "images"
],
+ "description": "Preview image used for the page",
+ "required": false
+ },
+ "cardImage": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "CardImage",
+ "key": "cardImage",
+ "type": "text",
+ "description": "Card preview image (larger, e.g. Twitter) used for the page",
+ "required": false
+ },
+ "type": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "seo"
+ }
+ },
+ "image": null,
+ "preview_field": null,
+ "is_root": false,
+ "preview_tmpl": null,
+ "is_nestable": true,
+ "all_presets": [],
+ "preset_id": null,
+ "real_name": "Seo",
+ "component_group_uuid": null,
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "internal_tags_list": [],
+ "internal_tag_ids": [],
+ "content_type_asset_preview": null
+ },
+ {
+ "name": "settings",
+ "display_name": "Settings",
+ "created_at": "2024-04-15T18:24:41.961Z",
+ "updated_at": "2024-04-15T18:24:41.961Z",
+ "id": 5657126,
+ "schema": {
+ "header": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Header",
+ "key": "header",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "header"
+ ],
+ "description": "Header"
+ },
+ "footer": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Footer",
+ "key": "footer",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "footer"
+ ],
+ "description": "Footer"
+ },
+ "seo": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Seo",
+ "key": "seo",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "seo"
+ ],
+ "description": "Abstracts SEO settings for a website into JSON schema"
+ },
+ "type": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "settings"
+ }
+ },
+ "image": null,
+ "preview_field": null,
+ "is_root": true,
+ "preview_tmpl": null,
+ "is_nestable": false,
+ "all_presets": [],
+ "preset_id": null,
+ "real_name": "Settings",
+ "component_group_uuid": null,
+ "color": null,
+ "icon": null,
+ "internal_tags_list": [],
+ "internal_tag_ids": [],
+ "content_type_asset_preview": null
+ },
+ {
+ "name": "socialSharing",
+ "display_name": "SocialSharing",
+ "created_at": "2024-04-15T18:24:22.838Z",
+ "updated_at": "2024-04-15T18:24:22.838Z",
+ "id": 5657092,
+ "schema": {
+ "icon": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Icon",
+ "key": "icon",
+ "type": "text",
+ "description": "The icon name for the social link",
+ "required": false
+ },
+ "href": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Href",
+ "key": "href",
+ "type": "multilink",
+ "allow_target_blank": true,
+ "email_link_type": true,
+ "asset_link_type": true,
+ "show_anchor": true,
+ "description": "The href for the social link",
+ "required": false
+ },
+ "title": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Title",
+ "key": "title",
+ "type": "text",
+ "description": "The title for the social link",
"required": false
- },
- "headline_textAlign": {
+ }
+ },
+ "image": null,
+ "preview_field": null,
+ "is_root": false,
+ "preview_tmpl": null,
+ "is_nestable": true,
+ "all_presets": [],
+ "preset_id": null,
+ "real_name": "SocialSharing",
+ "component_group_uuid": null,
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "internal_tags_list": [],
+ "internal_tag_ids": [],
+ "content_type_asset_preview": null
+ },
+ {
+ "name": "stat",
+ "display_name": "Stat",
+ "created_at": "2024-04-15T18:24:26.506Z",
+ "updated_at": "2024-04-15T18:24:26.506Z",
+ "id": 5657103,
+ "schema": {
+ "number": {
"id": 0,
"pos": 0,
- "display_name": "TextAlign",
- "key": "headline_textAlign",
- "type": "option",
- "description": "Choose the text alignment for the headline",
- "options": [
- {
- "name": "left",
- "value": "left",
- "_uid": "3697f11c-f0df-4cec-889a-e30df230cbb8"
- },
- {
- "name": "center",
- "value": "center",
- "_uid": "9a0a3efe-9c23-4639-82a9-0fcf1c4601f9"
- },
- {
- "name": "right",
- "value": "right",
- "_uid": "79b3c0e0-7b32-4a3c-9432-0b699ca15b44"
- }
- ],
+ "display_name": "Number",
+ "key": "number",
+ "type": "number",
+ "description": "The number of the stat",
"required": false
},
- "headline_align": {
+ "description": {
"id": 0,
"pos": 0,
- "display_name": "Align",
- "key": "headline_align",
- "type": "option",
- "description": "Choose an alignment for positioning the headline",
- "options": [
- {
- "name": "left",
- "value": "left",
- "_uid": "cd2b045e-0941-44c3-a041-35d5c60a52f4"
- },
- {
- "name": "center",
- "value": "center",
- "_uid": "7c44bf25-b859-4942-9564-92319d4482e7"
- },
- {
- "name": "right",
- "value": "right",
- "_uid": "b1bdc82a-bfbd-4413-916a-49c214e963c2"
- }
- ],
+ "display_name": "Description",
+ "key": "description",
+ "type": "markdown",
+ "description": "Optional description of the stat",
"required": false
},
- "headline_sub": {
+ "title": {
"id": 0,
"pos": 0,
- "display_name": "Sub",
- "key": "headline_sub",
+ "display_name": "Title",
+ "key": "title",
"type": "markdown",
- "description": "Subheadline for the section",
+ "description": "Title of the stat",
"required": false
},
- "headline_switchOrder": {
+ "icon": {
"id": 0,
"pos": 0,
- "display_name": "SwitchOrder",
- "key": "headline_switchOrder",
- "type": "boolean",
- "description": "Switch the order of headline and subheadline",
+ "display_name": "Icon",
+ "key": "icon",
+ "type": "text",
+ "description": "Optional icon of the stat",
"required": false
},
- "tab-03838523-89a4-4463-b257-f283dd7ac65c": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "Content",
- "key": "tab-03838523-89a4-4463-b257-f283dd7ac65c",
- "keys": [
- "content_width",
- "content_align",
- "content_gutter",
- "content_mode",
- "content_tileWidth"
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "stat"
+ }
+ },
+ "image": null,
+ "preview_field": null,
+ "is_root": false,
+ "preview_tmpl": null,
+ "is_nestable": true,
+ "all_presets": [],
+ "preset_id": null,
+ "real_name": "Stat",
+ "component_group_uuid": null,
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "internal_tags_list": [],
+ "internal_tag_ids": [],
+ "content_type_asset_preview": null
+ },
+ {
+ "name": "stats",
+ "display_name": "Stats",
+ "created_at": "2024-04-15T18:24:32.153Z",
+ "updated_at": "2024-04-15T18:24:32.153Z",
+ "id": 5657114,
+ "schema": {
+ "stat": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Stat",
+ "key": "stat",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "stat"
],
- "type": "tab",
- "required": false
+ "description": "Stat entry of Stats component"
},
- "content_width": {
+ "type": {
"id": 0,
"pos": 0,
- "display_name": "Width",
- "key": "content_width",
- "type": "option",
- "default_value": "unset",
- "description": "Width of content to use",
- "options": [
- {
- "name": "unset",
- "value": "unset",
- "_uid": "5a575aee-a6d1-4b9a-b4d7-6386f5ae3c77"
- },
- {
- "name": "narrow",
- "value": "narrow",
- "_uid": "0d006265-090e-432a-adf2-dc4a39e957f5"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "c93fa384-a14c-48d0-a400-1fb87b2d835c"
- },
- {
- "name": "wide",
- "value": "wide",
- "_uid": "8638c120-8d2f-4536-b44a-665c9743df2b"
- }
- ],
+ "display_name": "Type",
+ "key": "type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "stats"
+ }
+ },
+ "image": "//a.storyblok.com/f/284892/790x480/4cf6f57dfb/components-stats-count-up-with-icons.png",
+ "preview_field": null,
+ "is_root": false,
+ "preview_tmpl": null,
+ "is_nestable": true,
+ "all_presets": [
+ {
+ "id": 2131863,
+ "name": "CountUpWithDescription",
+ "component_id": 5657114,
+ "image": "//a.storyblok.com/f/284892/700x480/f62bc54b82/components-stats-count-up-with-description.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ },
+ {
+ "id": 2131862,
+ "name": "CountUpWithIcons",
+ "component_id": 5657114,
+ "image": "//a.storyblok.com/f/284892/790x480/4cf6f57dfb/components-stats-count-up-with-icons.png",
+ "icon": null,
+ "color": null,
+ "description": null
+ }
+ ],
+ "preset_id": null,
+ "real_name": "Stats",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
+ "color": "#05566a",
+ "icon": "block-wallet",
+ "internal_tags_list": [],
+ "internal_tag_ids": [],
+ "content_type_asset_preview": null,
+ "component_group_name": "Components"
+ },
+ {
+ "name": "tab-0210b3ae-ebb2-4673-87f0-bab9555ec309",
+ "display_name": "Tab 0210b3ae Ebb2 4673 87f0 Bab9555ec309",
+ "created_at": "2024-04-15T18:24:30.038Z",
+ "updated_at": "2024-04-15T18:24:30.038Z",
+ "id": 5657108,
+ "schema": {
+ "hero_headline": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Headline",
+ "key": "hero_headline",
+ "type": "text",
+ "description": "Headline for the visual",
"required": false
},
- "content_align": {
+ "hero_sub": {
"id": 0,
"pos": 0,
- "display_name": "Align",
- "key": "content_align",
- "type": "option",
- "default_value": "center",
- "description": "Choose an alignment for the content",
- "options": [
- {
- "name": "left",
- "value": "left",
- "_uid": "34161893-41fb-4289-92b9-2686c87f1cf4"
- },
- {
- "name": "center",
- "value": "center",
- "_uid": "22984837-aa1b-4e57-9922-a9a0b037bfa3"
- },
- {
- "name": "right",
- "value": "right",
- "_uid": "908284d2-1cfc-4f2e-9666-00465a6b50b9"
- }
- ],
+ "display_name": "Sub",
+ "key": "hero_sub",
+ "type": "text",
+ "description": "Subheadline below the module headline",
"required": false
},
- "content_gutter": {
+ "hero_text": {
"id": 0,
"pos": 0,
- "display_name": "Gutter",
- "key": "content_gutter",
- "type": "option",
- "default_value": "default",
- "description": "Size of gutter to use",
- "options": [
- {
- "name": "large",
- "value": "large",
- "_uid": "9e9ebf6e-8edf-4895-8374-c0e52c8aa7de"
- },
- {
- "name": "default",
- "value": "default",
- "_uid": "4aa22145-d973-4a86-b416-5c458cb5c154"
- },
- {
- "name": "small",
- "value": "small",
- "_uid": "7e9e38dd-9c1f-4540-8422-9454e5947079"
- },
- {
- "name": "none",
- "value": "none",
- "_uid": "dfa0337c-7014-4992-ba2e-158bc89251ce"
- }
- ],
+ "display_name": "Text",
+ "key": "hero_text",
+ "type": "text",
+ "description": "Info text for the module element",
+ "required": false
+ },
+ "hero_highlightText": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "HighlightText",
+ "key": "hero_highlightText",
+ "type": "boolean",
+ "description": "Visually highlight the text",
"required": false
},
- "content_mode": {
+ "hero_colorNeutral": {
"id": 0,
"pos": 0,
- "display_name": "Mode",
- "key": "content_mode",
- "type": "option",
- "default_value": "list",
- "description": "Layout mode used for section contents",
- "options": [
- {
- "name": "default",
- "value": "default",
- "_uid": "2cde62b8-0bc9-4e26-bf58-fc9dff0037a9"
- },
- {
- "name": "tile",
- "value": "tile",
- "_uid": "a5d02f75-8713-4f0b-bca7-81a5ef0af790"
- },
- {
- "name": "list",
- "value": "list",
- "_uid": "5ff7a8eb-31b4-466a-ab86-44b248d4d8c6"
- },
- {
- "name": "slider",
- "value": "slider",
- "_uid": "0839b5db-f55b-4491-acbb-ed499ac6978c"
- }
- ],
+ "display_name": "ColorNeutral",
+ "key": "hero_colorNeutral",
+ "type": "boolean",
+ "description": "Make the text and buttons color neutral",
"required": false
},
- "content_tileWidth": {
+ "hero_height": {
"id": 0,
"pos": 0,
- "display_name": "TileWidth",
- "key": "content_tileWidth",
+ "display_name": "Height",
+ "key": "hero_height",
"type": "option",
"default_value": "default",
- "description": "Set min-width for the tiles in the grid",
+ "description": "Height",
"options": [
{
- "name": "smallest",
- "value": "smallest",
- "_uid": "c7b039b1-9d7b-405c-af60-1a50af65a98a"
+ "name": "small",
+ "value": "small",
+ "_uid": "8490a65c-cd00-42eb-b642-d1be9ee1e091"
},
{
"name": "default",
"value": "default",
- "_uid": "a50d772d-549c-4807-b366-55e5c159e7e1"
- },
- {
- "name": "medium",
- "value": "medium",
- "_uid": "8a9a99ec-5421-402e-9dd2-b92ddc86842f"
+ "_uid": "6bfd0f65-66bb-474b-943e-b4619b294df8"
},
{
- "name": "large",
- "value": "large",
- "_uid": "9c04ea2e-69f8-413a-ad71-8b55e973be76"
+ "name": "fullImage",
+ "value": "fullImage",
+ "_uid": "5850c766-735f-47b8-895c-d2bc55756fe1"
},
{
- "name": "largest",
- "value": "largest",
- "_uid": "d99e2200-4753-495e-b9e5-a91a65229c3c"
+ "name": "fullScreen",
+ "value": "fullScreen",
+ "_uid": "66cb4bbe-44e2-4dc3-aefd-ab31d6a689f5"
}
],
"required": false
},
- "components": {
+ "hero_textbox": {
"id": 0,
"pos": 0,
- "display_name": "Components",
- "key": "components",
- "type": "bloks",
- "restrict_type": "groups",
- "restrict_components": true,
- "component_group_whitelist": [
- "bed7508e-f5dd-444c-b6f2-ac5176848f9e"
- ],
- "description": "Abstracts a blog overview concept into JSON schema",
+ "display_name": "Textbox",
+ "key": "hero_textbox",
+ "type": "boolean",
+ "default_value": true,
+ "description": "Toggle wether you want your text to be displayed within in box",
"required": false
},
- "buttons": {
+ "hero_buttons": {
"id": 0,
"pos": 0,
"display_name": "Buttons",
- "key": "buttons",
+ "key": "hero_buttons",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
"buttons"
],
- "description": "Component used for user interaction"
+ "description": "Button"
},
- "type": {
+ "hero_overlay": {
"id": 0,
"pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "section"
- }
- },
- "image": "//a.storyblok.com/f/303819/1440x928/41f21c45ec/layout-section-cards.png",
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [
- {
- "id": 2277536,
- "name": "AccentBackground",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x928/883092baf8/layout-section-accent-background.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277537,
- "name": "BoldBackground",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x928/c6ead652fb/layout-section-bold-background.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277531,
- "name": "Cards",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x928/41f21c45ec/layout-section-cards.png",
- "icon": null,
- "color": null,
- "description": null
+ "display_name": "Overlay",
+ "key": "hero_overlay",
+ "type": "boolean",
+ "description": "Enable grid layer",
+ "required": false
},
- {
- "id": 2277538,
- "name": "ColorfulGradient",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x928/152b0f3f78/layout-section-colorful-gradient.png",
- "icon": null,
- "color": null,
- "description": null
+ "hero_tab-7ddc9fb5-a2a6-41a3-b779-114aaf465e66": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Image",
+ "key": "hero_tab-7ddc9fb5-a2a6-41a3-b779-114aaf465e66",
+ "keys": [
+ "image_srcMobile",
+ "image_srcTablet",
+ "image_srcDesktop",
+ "image_src",
+ "image_indent",
+ "image_alt"
+ ],
+ "type": "tab",
+ "description": "Sources of background images for different screen sizes",
+ "required": false
},
- {
- "id": 2277541,
- "name": "FlexLayout",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x928/453e6f32fe/layout-section-flex-layout.png",
- "icon": null,
- "color": null,
- "description": null
+ "image_srcMobile": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "SrcMobile",
+ "key": "image_srcMobile",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "Background image source for small screens",
+ "required": false
},
- {
- "id": 2277533,
- "name": "Inverted",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x928/1718619ad3/layout-section-inverted.png",
- "icon": null,
- "color": null,
- "description": null
+ "image_srcTablet": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "SrcTablet",
+ "key": "image_srcTablet",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "Background image source for medium screens",
+ "required": false
},
- {
- "id": 2277542,
- "name": "ListLayout",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x1658/abd99fdaf3/layout-section-list-layout.png",
- "icon": null,
- "color": null,
- "description": null
+ "image_srcDesktop": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "SrcDesktop",
+ "key": "image_srcDesktop",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "Background image source for large screens",
+ "required": false
},
- {
- "id": 2277532,
- "name": "Slider",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x938/e83454f899/layout-section-slider.png",
- "icon": null,
- "color": null,
- "description": null
+ "image_src": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Src",
+ "key": "image_src",
+ "type": "asset",
+ "filetypes": [
+ "images"
+ ],
+ "description": "Override for img tag of picture element, if needed",
+ "required": false
},
- {
- "id": 2277534,
- "name": "Spotlight",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x928/1378b40b2d/layout-section-spotlight.png",
- "icon": null,
- "color": null,
- "description": null
+ "image_indent": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Indent",
+ "key": "image_indent",
+ "type": "option",
+ "default_value": "none",
+ "description": "Choose to indent the image horizontally on small screens",
+ "options": [
+ {
+ "name": "none",
+ "value": "none",
+ "_uid": "8b8725dc-e166-4786-bf74-725ca90bb725"
+ },
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "8ca17d25-08e4-4c93-a4a3-24808ff6e2e1"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "b1ec073b-5378-447c-91fd-df8f8d685d10"
+ }
+ ],
+ "required": false
},
- {
- "id": 2277535,
- "name": "Stagelights",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x928/ae7d888786/layout-section-stagelights.png",
- "icon": null,
- "color": null,
- "description": null
+ "image_alt": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Alt",
+ "key": "image_alt",
+ "type": "text",
+ "description": "Alt text to display for picture",
+ "required": false
},
- {
- "id": 2277540,
- "name": "TileLayout",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x445/b1bc0e559f/layout-section-tile-layout.png",
- "icon": null,
- "color": null,
- "description": null
+ "hero_textPosition": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "TextPosition",
+ "key": "hero_textPosition",
+ "type": "option",
+ "default_value": "bottom",
+ "description": "Choose the alginment of the module content",
+ "options": [
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "aa739812-517e-494c-901b-3952e04cc1cb"
+ },
+ {
+ "name": "below",
+ "value": "below",
+ "_uid": "19fe5c32-c90c-43e5-a6bf-88141b5d06ea"
+ },
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "48aff8fe-5965-4f22-a685-a3071a576d64"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "885ad793-8e1b-427f-9ee3-a720e4be76de"
+ }
+ ],
+ "required": false
},
- {
- "id": 2277539,
- "name": "WithButtons",
- "component_id": 6257238,
- "image": "//a.storyblok.com/f/303819/1440x1016/7a4244285d/layout-section-with-buttons.png",
- "icon": null,
- "color": null,
- "description": null
+ "hero_type": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Type",
+ "key": "hero_type",
+ "type": "text",
+ "description": "Internal type for interface resolution",
+ "default_value": "hero"
}
- ],
+ },
+ "image": null,
+ "preview_field": null,
+ "is_root": false,
+ "preview_tmpl": null,
+ "is_nestable": true,
+ "all_presets": [],
"preset_id": null,
- "real_name": "Section",
- "component_group_uuid": null,
+ "real_name": "Tab 0210b3ae Ebb2 4673 87f0 Bab9555ec309",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
- "icon": "gallery-vertical",
+ "icon": "block-wallet",
"internal_tags_list": [],
"internal_tag_ids": [],
- "content_type_asset_preview": null
+ "content_type_asset_preview": null,
+ "component_group_name": "Components"
},
{
- "name": "seo",
- "display_name": "Seo",
- "created_at": "2024-09-05T10:55:00.767Z",
- "updated_at": "2024-09-05T10:55:00.767Z",
- "id": 6257241,
+ "name": "tab-1468e511-c968-40a1-b267-ea720c1ca9ed",
+ "display_name": "Tab 1468e511 C968 40a1 B267 Ea720c1ca9ed",
+ "created_at": "2024-04-15T18:24:32.025Z",
+ "updated_at": "2024-04-15T18:24:32.025Z",
+ "id": 5657112,
"schema": {
- "title": {
- "id": 0,
- "pos": 0,
- "display_name": "Title",
- "key": "title",
- "type": "text",
- "description": "Title used for the page",
- "required": false
- },
- "description": {
- "id": 0,
- "pos": 0,
- "display_name": "Description",
- "key": "description",
- "type": "text",
- "description": "Description used for the page",
- "required": false
- },
- "keywords": {
+ "mosaic_layout": {
"id": 0,
"pos": 0,
- "display_name": "Keywords",
- "key": "keywords",
- "type": "text",
- "description": "Keywords used for the page",
+ "display_name": "Layout",
+ "key": "mosaic_layout",
+ "type": "option",
+ "default_value": "alternate",
+ "description": "Layout of the mosaic component",
+ "options": [
+ {
+ "name": "alternate",
+ "value": "alternate",
+ "_uid": "69ddbfba-2517-43f1-8910-88adc72f5948"
+ },
+ {
+ "name": "textLeft",
+ "value": "textLeft",
+ "_uid": "3a83e041-c2cf-42a0-ab4e-836ff2912e5f"
+ },
+ {
+ "name": "textRight",
+ "value": "textRight",
+ "_uid": "1dc539af-574b-40b1-974a-265553bb880f"
+ }
+ ],
"required": false
},
- "image": {
+ "mosaic_largeHeadlines": {
"id": 0,
"pos": 0,
- "display_name": "Image",
- "key": "image",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Preview image used for the page",
+ "display_name": "LargeHeadlines",
+ "key": "mosaic_largeHeadlines",
+ "type": "boolean",
+ "description": "Make the headlines larger",
"required": false
},
- "cardImage": {
+ "mosaic_tiles": {
"id": 0,
"pos": 0,
- "display_name": "CardImage",
- "key": "cardImage",
- "type": "asset",
- "filetypes": [
- "images"
- ],
- "description": "Card preview image (larger, e.g. Twitter) used for the page",
- "required": false
+ "display_name": "Tiles",
+ "key": "mosaic_tiles",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "tiles"
+ ]
},
- "type": {
+ "mosaic_type": {
"id": 0,
"pos": 0,
"display_name": "Type",
- "key": "type",
+ "key": "mosaic_type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "seo"
+ "default_value": "mosaic"
}
},
"image": null,
@@ -4205,292 +3781,381 @@
"is_nestable": true,
"all_presets": [],
"preset_id": null,
- "real_name": "Seo",
- "component_group_uuid": null,
+ "real_name": "Tab 1468e511 C968 40a1 B267 Ea720c1ca9ed",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
"internal_tag_ids": [],
- "content_type_asset_preview": null
+ "content_type_asset_preview": null,
+ "component_group_name": "Components"
},
{
- "name": "settings",
- "display_name": "Settings",
- "created_at": "2024-09-05T10:55:06.892Z",
- "updated_at": "2024-09-05T10:55:06.892Z",
- "id": 6257253,
+ "name": "tab-8726807f-12bd-4d53-ae34-3df7360494c9",
+ "display_name": "Tab 8726807f 12bd 4d53 Ae34 3df7360494c9",
+ "created_at": "2024-04-15T18:24:37.027Z",
+ "updated_at": "2024-04-15T18:24:37.027Z",
+ "id": 5657118,
"schema": {
- "header": {
+ "video-curtain_headline": {
"id": 0,
"pos": 0,
- "display_name": "Header",
- "key": "header",
+ "display_name": "Headline",
+ "key": "video-curtain_headline",
+ "type": "text",
+ "description": "Headline for the visual",
+ "required": false
+ },
+ "video-curtain_sub": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Sub",
+ "key": "video-curtain_sub",
+ "type": "text",
+ "description": "Subheadline below the module headline",
+ "required": false
+ },
+ "video-curtain_text": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Text",
+ "key": "video-curtain_text",
+ "type": "text",
+ "description": "Info text for the module element",
+ "required": false
+ },
+ "video-curtain_highlightText": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "HighlightText",
+ "key": "video-curtain_highlightText",
+ "type": "boolean",
+ "description": "Visually highlight the text",
+ "required": false
+ },
+ "video-curtain_colorNeutral": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "ColorNeutral",
+ "key": "video-curtain_colorNeutral",
+ "type": "boolean",
+ "description": "Make the text and buttons color neutral",
+ "required": false
+ },
+ "video-curtain_buttons": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Buttons",
+ "key": "video-curtain_buttons",
"type": "bloks",
"restrict_type": "",
"restrict_components": true,
"component_whitelist": [
- "header"
+ "buttons"
],
- "description": "Header layered on top by the CMS"
+ "description": "Button"
},
- "footer": {
+ "video-curtain_overlay": {
"id": 0,
"pos": 0,
- "display_name": "Footer",
- "key": "footer",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "footer"
+ "display_name": "Overlay",
+ "key": "video-curtain_overlay",
+ "type": "boolean",
+ "description": "Enable grid layer",
+ "required": false
+ },
+ "video-curtain_tab-bf9d0675-1df7-4f54-8eef-07de14cbda68": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Video",
+ "key": "video-curtain_tab-bf9d0675-1df7-4f54-8eef-07de14cbda68",
+ "keys": [
+ "video_srcMobile",
+ "video_srcTablet",
+ "video_srcDesktop"
],
- "description": "Footer"
+ "type": "tab",
+ "description": "Sources of background videos for different screen sizes",
+ "required": false
},
- "seo": {
+ "video_srcMobile": {
"id": 0,
"pos": 0,
- "display_name": "Seo",
- "key": "seo",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "seo"
+ "display_name": "SrcMobile",
+ "key": "video_srcMobile",
+ "type": "asset",
+ "filetypes": [
+ "videos"
],
- "description": "Abstracts SEO settings for a website into JSON schema"
+ "description": "Background video source for small screens",
+ "required": false
},
- "type": {
+ "video_srcTablet": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "SrcTablet",
+ "key": "video_srcTablet",
+ "type": "asset",
+ "filetypes": [
+ "videos"
+ ],
+ "description": "Background video source for medium screens",
+ "required": false
+ },
+ "video_srcDesktop": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "SrcDesktop",
+ "key": "video_srcDesktop",
+ "type": "asset",
+ "filetypes": [
+ "videos"
+ ],
+ "description": "Background video source for large screens",
+ "required": false
+ },
+ "video-curtain_textPosition": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "TextPosition",
+ "key": "video-curtain_textPosition",
+ "type": "option",
+ "default_value": "bottom",
+ "description": "Choose the alginment of the module content",
+ "options": [
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "40fa59ad-5a52-4bf6-9c78-bc3f4fd9d90d"
+ },
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "b4ec3bcf-6c16-4240-866a-1b9425ffd46f"
+ },
+ {
+ "name": "right",
+ "value": "right",
+ "_uid": "19634ae6-b36e-4263-a8b8-cdee8fc0b696"
+ }
+ ],
+ "required": false
+ },
+ "video-curtain_type": {
"id": 0,
"pos": 0,
"display_name": "Type",
- "key": "type",
+ "key": "video-curtain_type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "settings"
+ "default_value": "video-curtain"
}
},
"image": null,
"preview_field": null,
- "is_root": true,
+ "is_root": false,
"preview_tmpl": null,
- "is_nestable": false,
+ "is_nestable": true,
"all_presets": [],
"preset_id": null,
- "real_name": "Settings",
- "component_group_uuid": null,
- "color": null,
- "icon": null,
+ "real_name": "Tab 8726807f 12bd 4d53 Ae34 3df7360494c9",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
+ "color": "#05566a",
+ "icon": "block-wallet",
"internal_tags_list": [],
"internal_tag_ids": [],
- "content_type_asset_preview": null
+ "content_type_asset_preview": null,
+ "component_group_name": "Components"
},
{
- "name": "slider",
- "display_name": "Slider",
- "created_at": "2024-09-05T10:54:51.983Z",
- "updated_at": "2024-09-05T10:54:51.983Z",
- "id": 6257236,
+ "name": "tab-b5ece91f-9fc3-46fd-bcfc-107686351188",
+ "display_name": "Tab B5ece91f 9fc3 46fd Bcfc 107686351188",
+ "created_at": "2024-04-15T18:24:30.102Z",
+ "updated_at": "2024-04-15T18:24:30.102Z",
+ "id": 5657109,
"schema": {
- "autoplay": {
+ "image-story_headline": {
"id": 0,
- "pos": 0,
- "display_name": "Autoplay",
- "key": "autoplay",
- "type": "boolean",
- "description": "Automatically move to next slide after 4 seconds without user interaction",
+ "pos": 0,
+ "display_name": "Headline",
+ "key": "image-story_headline",
+ "type": "text",
+ "description": "Headline for the module element",
"required": false
},
- "nav": {
+ "image-story_largeHeadline": {
"id": 0,
"pos": 0,
- "display_name": "Nav",
- "key": "nav",
+ "display_name": "LargeHeadline",
+ "key": "image-story_largeHeadline",
"type": "boolean",
- "description": "Add bullet navigation",
+ "description": "Make the headline larger",
"required": false
},
- "teaseNeighbours": {
+ "image-story_sub": {
"id": 0,
"pos": 0,
- "display_name": "TeaseNeighbours",
- "key": "teaseNeighbours",
- "type": "boolean",
- "description": "Tease Neighbour Slides",
+ "display_name": "Sub",
+ "key": "image-story_sub",
+ "type": "text",
+ "description": "Subheadline below the module headline",
"required": false
},
- "equalHeight": {
+ "image-story_text": {
"id": 0,
"pos": 0,
- "display_name": "EqualHeight",
- "key": "equalHeight",
- "type": "boolean",
- "default_value": true,
- "description": "Equalize slides heights",
+ "display_name": "Text",
+ "key": "image-story_text",
+ "type": "text",
+ "description": "Info text for the module element",
"required": false
},
- "gap": {
+ "image-story_layout": {
"id": 0,
"pos": 0,
- "display_name": "Gap",
- "key": "gap",
- "type": "number",
- "description": "Size of the gap added between slides in pixels",
+ "display_name": "Layout",
+ "key": "image-story_layout",
+ "type": "option",
+ "default_value": "imageLeft",
+ "description": "Choose the layout for the component",
+ "options": [
+ {
+ "name": "textLeft",
+ "value": "textLeft",
+ "_uid": "7b30f262-cb3b-4d36-b431-34d5ca909920"
+ },
+ {
+ "name": "imageLeft",
+ "value": "imageLeft",
+ "_uid": "9922ca20-3d8a-4dea-b57f-b80c0885543a"
+ }
+ ],
"required": false
},
- "arrows": {
+ "image-story_padding": {
"id": 0,
"pos": 0,
- "display_name": "Arrows",
- "key": "arrows",
+ "display_name": "Padding",
+ "key": "image-story_padding",
"type": "boolean",
- "description": "Add arrows on the left and right to navigate to next or previous slide",
+ "description": "Give the component padding",
"required": false
},
- "type": {
+ "image-story_buttons": {
"id": 0,
"pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "slider"
+ "display_name": "Buttons",
+ "key": "image-story_buttons",
+ "type": "bloks",
+ "restrict_type": "",
+ "restrict_components": true,
+ "component_whitelist": [
+ "buttons"
+ ],
+ "description": "Component used for user interaction"
},
- "className": {
+ "image-story_tab-e81d87ae-553a-4cb2-b064-750d3ecfd872": {
"id": 0,
"pos": 0,
- "display_name": "ClassName",
- "key": "className",
- "type": "text",
- "description": "Additional css classes attached to the wrapping element",
+ "display_name": "Image",
+ "key": "image-story_tab-e81d87ae-553a-4cb2-b064-750d3ecfd872",
+ "keys": [
+ "image_src",
+ "image_ratio",
+ "image_alt"
+ ],
+ "type": "tab",
+ "description": "Image displayed alongside the text content",
"required": false
},
- "components": {
+ "image_src": {
"id": 0,
"pos": 0,
- "display_name": "Components",
- "key": "components",
- "type": "bloks",
- "restrict_type": "groups",
- "restrict_components": true,
- "component_group_whitelist": [
- "bed7508e-f5dd-444c-b6f2-ac5176848f9e"
+ "display_name": "Src",
+ "key": "image_src",
+ "type": "asset",
+ "filetypes": [
+ "images"
],
- "description": "Abstracts a blog overview concept into JSON schema",
+ "description": "Image source to use",
"required": false
},
- "typeProp": {
+ "image_ratio": {
"id": 0,
"pos": 0,
- "display_name": "TypeProp",
- "key": "typeProp",
+ "display_name": "Ratio",
+ "key": "image_ratio",
"type": "option",
- "default_value": "carousel",
- "description": "Type of the movement",
+ "default_value": "none",
+ "description": "Select an aspect ratio to use for cropping and displaying the image",
"options": [
{
- "name": "slider",
- "value": "slider",
- "_uid": "632f635a-2c73-4678-9b13-9d9d09911c4e"
+ "name": "4:3",
+ "value": "VALUE_4_3",
+ "_uid": "d0d3ff23-df20-4e07-b8d8-27caeef4bf20"
},
{
- "name": "carousel",
- "value": "carousel",
- "_uid": "b7b5d81b-afc3-4635-9081-b3efa99ae93c"
+ "name": "3:2",
+ "value": "VALUE_3_2",
+ "_uid": "df267467-e563-4cc3-a526-0737b77178f4"
+ },
+ {
+ "name": "16:9",
+ "value": "VALUE_16_9",
+ "_uid": "629bda5f-917a-4496-b77f-72a95a9c05c4"
+ },
+ {
+ "name": "1:1",
+ "value": "VALUE_1_1",
+ "_uid": "58214ab2-c4ae-4912-9f67-f2acfaffab03"
+ },
+ {
+ "name": "none",
+ "value": "none",
+ "_uid": "e9a99e88-0fad-41d4-bc3c-068763b2bbf3"
}
],
"required": false
- }
- },
- "image": "//a.storyblok.com/f/303819/1110x400/8aa668f893/layout-slider-with-arrows.png",
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [
- {
- "id": 2277524,
- "name": "WithArrows",
- "component_id": 6257236,
- "image": "//a.storyblok.com/f/303819/1110x400/8aa668f893/layout-slider-with-arrows.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277527,
- "name": "WithAutoplay",
- "component_id": 6257236,
- "image": "//a.storyblok.com/f/303819/1110x400/162d960ffd/layout-slider-with-autoplay.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277526,
- "name": "WithNav",
- "component_id": 6257236,
- "image": "//a.storyblok.com/f/303819/1110x400/5ecc170620/layout-slider-with-nav.png",
- "icon": null,
- "color": null,
- "description": null
},
- {
- "id": 2277525,
- "name": "WithTeasedNeighbours",
- "component_id": 6257236,
- "image": "//a.storyblok.com/f/303819/1110x400/aa59dbbcd5/layout-slider-with-teased-neighbours.png",
- "icon": null,
- "color": null,
- "description": null
- }
- ],
- "preset_id": null,
- "real_name": "Slider",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
- "color": "#05566a",
- "icon": "block-wallet",
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null,
- "component_group_name": "Components"
- },
- {
- "name": "socialSharing",
- "display_name": "SocialSharing",
- "created_at": "2024-09-05T10:55:02.767Z",
- "updated_at": "2024-09-05T10:55:02.767Z",
- "id": 6257245,
- "schema": {
- "icon": {
+ "image_alt": {
"id": 0,
"pos": 0,
- "display_name": "Icon",
- "key": "icon",
+ "display_name": "Alt",
+ "key": "image_alt",
"type": "text",
- "description": "The icon name for the social link",
+ "description": "Image description",
"required": false
},
- "href": {
+ "image-story_textAlign": {
"id": 0,
"pos": 0,
- "display_name": "Href",
- "key": "href",
- "type": "multilink",
- "allow_target_blank": true,
- "email_link_type": true,
- "asset_link_type": true,
- "show_anchor": true,
- "description": "The href for the social link",
+ "display_name": "TextAlign",
+ "key": "image-story_textAlign",
+ "type": "option",
+ "default_value": "left",
+ "description": "Choose the alginment of the text",
+ "options": [
+ {
+ "name": "left",
+ "value": "left",
+ "_uid": "b2a472ed-c33e-49d9-8d1c-90b9874b465b"
+ },
+ {
+ "name": "center",
+ "value": "center",
+ "_uid": "21b0c48a-ca0d-447d-a21e-f856498e87c1"
+ }
+ ],
"required": false
},
- "title": {
+ "image-story_type": {
"id": 0,
"pos": 0,
- "display_name": "Title",
- "key": "title",
+ "display_name": "Type",
+ "key": "image-story_type",
"type": "text",
- "description": "The title for the social link",
- "required": false
+ "description": "Internal type for interface resolution",
+ "default_value": "image-story"
}
},
"image": null,
@@ -4500,140 +4165,127 @@
"is_nestable": true,
"all_presets": [],
"preset_id": null,
- "real_name": "SocialSharing",
- "component_group_uuid": null,
+ "real_name": "Tab B5ece91f 9fc3 46fd Bcfc 107686351188",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
"internal_tag_ids": [],
- "content_type_asset_preview": null
+ "content_type_asset_preview": null,
+ "component_group_name": "Components"
},
{
- "name": "stat",
- "display_name": "Stat",
- "created_at": "2024-09-05T10:54:31.747Z",
- "updated_at": "2024-09-05T10:54:31.747Z",
- "id": 6257221,
+ "name": "tab-fb45d475-9bc5-4d99-8ba5-53c6149b34c0",
+ "display_name": "Tab Fb45d475 9bc5 4d99 8ba5 53c6149b34c0",
+ "created_at": "2024-04-15T18:24:32.094Z",
+ "updated_at": "2024-04-15T18:24:32.094Z",
+ "id": 5657113,
"schema": {
- "number": {
+ "slider_autoplay": {
"id": 0,
"pos": 0,
- "display_name": "Number",
- "key": "number",
- "type": "number",
- "description": "The number of the stat",
+ "display_name": "Autoplay",
+ "key": "slider_autoplay",
+ "type": "boolean",
+ "description": "Automatically move to next slide after 4 seconds without user interaction",
"required": false
},
- "description": {
+ "slider_nav": {
"id": 0,
"pos": 0,
- "display_name": "Description",
- "key": "description",
- "type": "markdown",
- "description": "Optional description of the stat",
+ "display_name": "Nav",
+ "key": "slider_nav",
+ "type": "boolean",
+ "description": "Add bullet navigation",
"required": false
},
- "title": {
+ "slider_teaseNeighbours": {
"id": 0,
"pos": 0,
- "display_name": "Title",
- "key": "title",
- "type": "markdown",
- "description": "Title of the stat",
+ "display_name": "TeaseNeighbours",
+ "key": "slider_teaseNeighbours",
+ "type": "boolean",
+ "description": "Tease Neighbour Slides",
"required": false
},
- "icon": {
+ "slider_equalHeight": {
"id": 0,
"pos": 0,
- "display_name": "Icon",
- "key": "icon",
- "type": "text",
- "description": "Optional icon of the stat",
+ "display_name": "EqualHeight",
+ "key": "slider_equalHeight",
+ "type": "boolean",
+ "default_value": true,
+ "description": "Equalize slides heights",
"required": false
},
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "stat"
- }
- },
- "image": null,
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [],
- "preset_id": null,
- "real_name": "Stat",
- "component_group_uuid": null,
- "color": "#05566a",
- "icon": "block-wallet",
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null
- },
- {
- "name": "stats",
- "display_name": "Stats",
- "created_at": "2024-09-05T10:54:42.986Z",
- "updated_at": "2024-09-05T10:54:42.986Z",
- "id": 6257229,
- "schema": {
- "stat": {
+ "slider_gap": {
"id": 0,
"pos": 0,
- "display_name": "Stat",
- "key": "stat",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "stat"
- ],
- "description": "Stat entry of Stats component"
+ "display_name": "Gap",
+ "key": "slider_gap",
+ "type": "number",
+ "description": "Size of the gap added between slides in pixels",
+ "required": false
},
- "type": {
+ "slider_arrows": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "Arrows",
+ "key": "slider_arrows",
+ "type": "boolean",
+ "description": "Add arrows on the left and right to navigate to next or previous slide",
+ "required": false
+ },
+ "slider_type": {
"id": 0,
"pos": 0,
"display_name": "Type",
- "key": "type",
+ "key": "slider_type",
"type": "text",
"description": "Internal type for interface resolution",
- "default_value": "stats"
+ "default_value": "slider"
+ },
+ "slider_className": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "ClassName",
+ "key": "slider_className",
+ "type": "text",
+ "description": "Additional css classes attached to the wrapping element",
+ "required": false
+ },
+ "slider_typeProp": {
+ "id": 0,
+ "pos": 0,
+ "display_name": "TypeProp",
+ "key": "slider_typeProp",
+ "type": "option",
+ "default_value": "carousel",
+ "description": "Type of the movement",
+ "options": [
+ {
+ "name": "slider",
+ "value": "slider",
+ "_uid": "5eb47d71-0a1a-43b0-bb5d-7e130da1dd40"
+ },
+ {
+ "name": "carousel",
+ "value": "carousel",
+ "_uid": "e78713c8-8bca-47e0-a53b-c31794b5cd92"
+ }
+ ],
+ "required": false
}
},
- "image": "//a.storyblok.com/f/303819/790x480/093157157d/components-stats-count-up-with-icons.png",
+ "image": null,
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
- "all_presets": [
- {
- "id": 2277505,
- "name": "CountUpWithDescription",
- "component_id": 6257229,
- "image": "//a.storyblok.com/f/303819/700x480/179df4ceed/components-stats-count-up-with-description.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277504,
- "name": "CountUpWithIcons",
- "component_id": 6257229,
- "image": "//a.storyblok.com/f/303819/790x480/093157157d/components-stats-count-up-with-icons.png",
- "icon": null,
- "color": null,
- "description": null
- }
- ],
+ "all_presets": [],
"preset_id": null,
- "real_name": "Stats",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "real_name": "Tab Fb45d475 9bc5 4d99 8ba5 53c6149b34c0",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -4644,27 +4296,17 @@
{
"name": "tags",
"display_name": "Tags",
- "created_at": "2024-09-05T10:54:59.765Z",
- "updated_at": "2024-09-05T10:54:59.765Z",
- "id": 6257239,
+ "created_at": "2024-04-15T18:24:22.569Z",
+ "updated_at": "2024-04-15T18:24:22.569Z",
+ "id": 5657090,
"schema": {
"entry": {
"id": 0,
"pos": 0,
- "display_name": "Entry",
- "key": "entry",
+ "display_name": "Tags",
+ "key": "tags",
"type": "text",
- "description": "Name of the tag entry",
"required": false
- },
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "blog-tag"
}
},
"image": null,
@@ -4685,9 +4327,9 @@
{
"name": "teaser-card",
"display_name": "Teaser Card",
- "created_at": "2024-09-05T10:54:43.983Z",
- "updated_at": "2024-09-05T10:54:43.983Z",
- "id": 6257230,
+ "created_at": "2024-04-15T18:24:32.761Z",
+ "updated_at": "2024-04-15T18:24:32.761Z",
+ "id": 5657115,
"schema": {
"headline": {
"id": 0,
@@ -4728,12 +4370,12 @@
{
"name": "stack",
"value": "stack",
- "_uid": "3efbbbdc-37c3-42e9-8c1e-ece7cbc575a2"
+ "_uid": "95e6eb29-ba78-4d12-bb35-05c0b113a729"
},
{
"name": "row",
"value": "row",
- "_uid": "336ab3ce-b5fe-44fd-9ae1-0e5217f126e3"
+ "_uid": "9890ac27-477c-4943-ad57-8dd461167dbf"
}
],
"required": false
@@ -4751,11 +4393,11 @@
"description": "Target that should be linked",
"required": false
},
- "tab-a6806588-09ba-4c08-b7ce-5195f89eb12d": {
+ "tab-1eaec756-09d3-4ab8-84d7-6c249c5beaf0": {
"id": 0,
"pos": 0,
"display_name": "Button",
- "key": "tab-a6806588-09ba-4c08-b7ce-5195f89eb12d",
+ "key": "tab-1eaec756-09d3-4ab8-84d7-6c249c5beaf0",
"keys": [
"button_label",
"button_chevron",
@@ -4815,22 +4457,22 @@
{
"name": "wide",
"value": "wide",
- "_uid": "ce437b27-6c67-431f-8a21-ae86b19e8540"
+ "_uid": "117097fe-5fb7-4d3b-a5f4-e58d7ddc535a"
},
{
"name": "landscape",
"value": "landscape",
- "_uid": "12712f3a-eb7e-4f00-b47b-208f6491be3e"
+ "_uid": "c0a6b856-e23c-446e-b54f-1cddc223be50"
},
{
"name": "square",
"value": "square",
- "_uid": "71288d8d-dc45-437e-8100-f16e85f26bf6"
+ "_uid": "9015b64d-37c0-489b-b1bf-08da01f187ea"
},
{
"name": "unset",
"value": "unset",
- "_uid": "c1967827-7d9f-4693-9b32-b87d9465c747"
+ "_uid": "1c5a307f-03cc-4eef-a4f0-adb5ba7f94ef"
}
],
"required": false
@@ -4845,35 +4487,35 @@
"default_value": "teaser-card"
}
},
- "image": "//a.storyblok.com/f/303819/650x653/bd51864d6d/components-teaser-card-product-tiles.png",
+ "image": "//a.storyblok.com/f/284892/650x653/d0ada7f5df/components-teaser-card-product-tiles.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277507,
+ "id": 2131865,
"name": "PageNavigation",
- "component_id": 6257230,
- "image": "//a.storyblok.com/f/303819/650x678/756a8dd5d6/components-teaser-card-page-navigation.png",
+ "component_id": 5657115,
+ "image": "//a.storyblok.com/f/284892/650x678/6783f80d3e/components-teaser-card-page-navigation.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277506,
+ "id": 2131864,
"name": "ProductTiles",
- "component_id": 6257230,
- "image": "//a.storyblok.com/f/303819/650x653/bd51864d6d/components-teaser-card-product-tiles.png",
+ "component_id": 5657115,
+ "image": "//a.storyblok.com/f/284892/650x653/d0ada7f5df/components-teaser-card-product-tiles.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277508,
+ "id": 2131866,
"name": "ShowcasePreview",
- "component_id": 6257230,
- "image": "//a.storyblok.com/f/303819/650x750/0057d9edba/components-teaser-card-showcase-preview.png",
+ "component_id": 5657115,
+ "image": "//a.storyblok.com/f/284892/650x750/0140092d95/components-teaser-card-showcase-preview.png",
"icon": null,
"color": null,
"description": null
@@ -4881,7 +4523,7 @@
],
"preset_id": null,
"real_name": "Teaser Card",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -4892,9 +4534,9 @@
{
"name": "testimonial",
"display_name": "Testimonial",
- "created_at": "2024-09-05T10:54:31.889Z",
- "updated_at": "2024-09-05T10:54:31.889Z",
- "id": 6257222,
+ "created_at": "2024-04-15T18:24:26.564Z",
+ "updated_at": "2024-04-15T18:24:26.564Z",
+ "id": 5657104,
"schema": {
"quote": {
"id": 0,
@@ -4923,11 +4565,11 @@
"description": "The title of the quote author",
"required": false
},
- "tab-52d1f659-405d-48fd-91b3-8911ac23e2c1": {
+ "tab-31874ddb-dd55-4a8c-bbea-44a56dea00fa": {
"id": 0,
"pos": 0,
"display_name": "Image",
- "key": "tab-52d1f659-405d-48fd-91b3-8911ac23e2c1",
+ "key": "tab-31874ddb-dd55-4a8c-bbea-44a56dea00fa",
"keys": [
"image_src",
"image_alt"
@@ -4993,9 +4635,9 @@
{
"name": "testimonials",
"display_name": "Testimonials",
- "created_at": "2024-09-05T10:54:45.760Z",
- "updated_at": "2024-09-05T10:54:45.760Z",
- "id": 6257231,
+ "created_at": "2024-04-15T18:24:33.778Z",
+ "updated_at": "2024-04-15T18:24:33.778Z",
+ "id": 5657116,
"schema": {
"layout": {
"id": 0,
@@ -5009,17 +4651,17 @@
{
"name": "slider",
"value": "slider",
- "_uid": "fc8c7a18-c6de-4082-993e-de70ac4ed0a6"
+ "_uid": "e58fbc2a-641b-4b11-8ced-70bea43d7e78"
},
{
"name": "list",
"value": "list",
- "_uid": "de709224-9964-47b0-8f7e-9c419c2efcef"
+ "_uid": "1f972020-2948-4adc-bd4d-64e4394974b6"
},
{
"name": "alternating",
"value": "alternating",
- "_uid": "3b4a957b-ff69-40a1-ab25-b338563fb4eb"
+ "_uid": "efb71c44-90e5-47a5-9a59-456f1bd84db4"
}
],
"required": false
@@ -5047,62 +4689,62 @@
"default_value": "testimonials"
}
},
- "image": "//a.storyblok.com/f/303819/1000x409/9e3083f521/components-testimonials-simple.png",
+ "image": "//a.storyblok.com/f/284892/1000x409/65b04b65b7/components-testimonials-simple.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277514,
+ "id": 2131872,
"name": "AlternatingLayout",
- "component_id": 6257231,
- "image": "//a.storyblok.com/f/303819/1000x1080/7d0b12bf32/components-testimonials-alternating-layout.png",
+ "component_id": 5657116,
+ "image": "//a.storyblok.com/f/284892/1000x1080/668327269e/components-testimonials-alternating-layout.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277511,
+ "id": 2131869,
"name": "ListLayout",
- "component_id": 6257231,
- "image": "//a.storyblok.com/f/303819/1000x1080/4c9921d814/components-testimonials-list-layout.png",
+ "component_id": 5657116,
+ "image": "//a.storyblok.com/f/284892/1000x1080/57ba7571df/components-testimonials-list-layout.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277509,
+ "id": 2131867,
"name": "Simple",
- "component_id": 6257231,
- "image": "//a.storyblok.com/f/303819/1000x409/9e3083f521/components-testimonials-simple.png",
+ "component_id": 5657116,
+ "image": "//a.storyblok.com/f/284892/1000x409/65b04b65b7/components-testimonials-simple.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277512,
+ "id": 2131870,
"name": "SliderLayout",
- "component_id": 6257231,
- "image": "//a.storyblok.com/f/303819/1000x1080/e2d6740906/components-testimonials-slider-layout.png",
+ "component_id": 5657116,
+ "image": "//a.storyblok.com/f/284892/1000x1080/e3b626bef9/components-testimonials-slider-layout.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277513,
+ "id": 2131871,
"name": "WithRating",
- "component_id": 6257231,
- "image": "//a.storyblok.com/f/303819/1000x1080/2475869f35/components-testimonials-with-rating.png",
+ "component_id": 5657116,
+ "image": "//a.storyblok.com/f/284892/1000x1080/68e3ef018e/components-testimonials-with-rating.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277510,
+ "id": 2131868,
"name": "WithTitle",
- "component_id": 6257231,
- "image": "//a.storyblok.com/f/303819/1000x409/b89186ab9a/components-testimonials-with-title.png",
+ "component_id": 5657116,
+ "image": "//a.storyblok.com/f/284892/1000x409/539bee911b/components-testimonials-with-title.png",
"icon": null,
"color": null,
"description": null
@@ -5110,7 +4752,7 @@
],
"preset_id": null,
"real_name": "Testimonials",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -5121,9 +4763,9 @@
{
"name": "text",
"display_name": "Text",
- "created_at": "2024-09-05T10:54:47.891Z",
- "updated_at": "2024-09-05T10:54:47.891Z",
- "id": 6257232,
+ "created_at": "2024-04-15T18:24:35.771Z",
+ "updated_at": "2024-04-15T18:24:35.771Z",
+ "id": 5657117,
"schema": {
"text": {
"id": 0,
@@ -5146,12 +4788,12 @@
{
"name": "singleColumn",
"value": "singleColumn",
- "_uid": "3d52efa9-51ca-455b-9b64-83e7af64b588"
+ "_uid": "36e6642b-1a13-4896-a7c5-b81c7be839fe"
},
{
"name": "multiColumn",
"value": "multiColumn",
- "_uid": "e655bb1f-7142-4c41-9b50-f4123eae6a3f"
+ "_uid": "324b8623-20ef-4eab-8da6-428e5acc11a4"
}
],
"required": false
@@ -5168,12 +4810,12 @@
{
"name": "left",
"value": "left",
- "_uid": "68a4b4b4-6d3d-4f37-b218-75f3b83ee0ad"
+ "_uid": "66a43d88-358a-44ad-b780-1ac91935be1a"
},
{
"name": "center",
"value": "center",
- "_uid": "359e877b-6a68-40ea-be5b-f119584c2603"
+ "_uid": "776a0d84-0e9b-4f6b-98b3-a66155619de1"
}
],
"required": false
@@ -5197,44 +4839,44 @@
"default_value": "text"
}
},
- "image": "//a.storyblok.com/f/303819/1000x407/15f7209661/components-text-single-column.png",
+ "image": "//a.storyblok.com/f/284892/1000x407/aa915fbe76/components-text-single-column.png",
"preview_field": null,
"is_root": false,
"preview_tmpl": null,
"is_nestable": true,
"all_presets": [
{
- "id": 2277516,
+ "id": 2131874,
"name": "Centered",
- "component_id": 6257232,
- "image": "//a.storyblok.com/f/303819/1000x407/525c81f2dc/components-text-centered.png",
+ "component_id": 5657117,
+ "image": "//a.storyblok.com/f/284892/1000x407/acf9f936b2/components-text-centered.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277518,
+ "id": 2131876,
"name": "Highlight",
- "component_id": 6257232,
- "image": "//a.storyblok.com/f/303819/1000x482/f14aaca036/components-text-highlight.png",
+ "component_id": 5657117,
+ "image": "//a.storyblok.com/f/284892/1000x482/ce2bcee974/components-text-highlight.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277517,
+ "id": 2131875,
"name": "MultiColumn",
- "component_id": 6257232,
- "image": "//a.storyblok.com/f/303819/1000x330/7c9274a317/components-text-multi-column.png",
+ "component_id": 5657117,
+ "image": "//a.storyblok.com/f/284892/1000x330/60b90fbb8d/components-text-multi-column.png",
"icon": null,
"color": null,
"description": null
},
{
- "id": 2277515,
+ "id": 2131873,
"name": "SingleColumn",
- "component_id": 6257232,
- "image": "//a.storyblok.com/f/303819/1000x407/15f7209661/components-text-single-column.png",
+ "component_id": 5657117,
+ "image": "//a.storyblok.com/f/284892/1000x407/aa915fbe76/components-text-single-column.png",
"icon": null,
"color": null,
"description": null
@@ -5242,7 +4884,7 @@
],
"preset_id": null,
"real_name": "Text",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
+ "component_group_uuid": "8a33eace-86e4-4471-b4ba-6f54bdc8e91c",
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
@@ -5251,18 +4893,18 @@
"component_group_name": "Components"
},
{
- "name": "tile",
- "display_name": "Tile",
- "created_at": "2024-09-05T10:54:30.979Z",
- "updated_at": "2024-09-05T10:54:30.979Z",
- "id": 6257220,
+ "name": "tiles",
+ "display_name": "Tiles",
+ "created_at": "2024-04-15T18:24:26.455Z",
+ "updated_at": "2024-04-15T18:24:26.455Z",
+ "id": 5657102,
"schema": {
"headline": {
"id": 0,
"pos": 0,
"display_name": "Headline",
"key": "headline",
- "type": "markdown",
+ "type": "text",
"description": "Headline for the tile",
"required": false
},
@@ -5271,7 +4913,7 @@
"pos": 0,
"display_name": "Sub",
"key": "sub",
- "type": "markdown",
+ "type": "text",
"description": "Subheadline below the tile headline",
"required": false
},
@@ -5280,15 +4922,15 @@
"pos": 0,
"display_name": "Text",
"key": "text",
- "type": "markdown",
+ "type": "text",
"description": "Text for tile",
"required": false
},
- "tab-ba1bc552-2d04-4141-acae-042be9976bc4": {
+ "tab-5c4a5488-1f9f-4e7d-85d4-7f8fef8e7b19": {
"id": 0,
"pos": 0,
"display_name": "Image",
- "key": "tab-ba1bc552-2d04-4141-acae-042be9976bc4",
+ "key": "tab-5c4a5488-1f9f-4e7d-85d4-7f8fef8e7b19",
"keys": [
"image_src",
"image_alt"
@@ -5317,11 +4959,11 @@
"description": "Alt text to display for picture",
"required": false
},
- "tab-cbf9a923-1cd8-4ff5-9d5e-cfb478f90d02": {
+ "tab-15a1aa08-d353-48b3-9e1d-c11b9bbb4c6f": {
"id": 0,
"pos": 0,
"display_name": "Button",
- "key": "tab-cbf9a923-1cd8-4ff5-9d5e-cfb478f90d02",
+ "key": "tab-15a1aa08-d353-48b3-9e1d-c11b9bbb4c6f",
"keys": [
"button_toggle",
"button_label",
@@ -5401,15 +5043,6 @@
"type": "text",
"description": "Overwrite the color to use for the text content",
"required": false
- },
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "tile"
}
},
"image": null,
@@ -5419,218 +5052,13 @@
"is_nestable": true,
"all_presets": [],
"preset_id": null,
- "real_name": "Tile",
+ "real_name": "Tiles",
"component_group_uuid": null,
"color": "#05566a",
"icon": "block-wallet",
"internal_tags_list": [],
"internal_tag_ids": [],
"content_type_asset_preview": null
- },
- {
- "name": "video-curtain",
- "display_name": "Video Curtain",
- "created_at": "2024-09-05T10:54:53.893Z",
- "updated_at": "2024-09-05T10:54:53.893Z",
- "id": 6257237,
- "schema": {
- "headline": {
- "id": 0,
- "pos": 0,
- "display_name": "Headline",
- "key": "headline",
- "type": "markdown",
- "description": "Headline for the visual",
- "required": false
- },
- "sub": {
- "id": 0,
- "pos": 0,
- "display_name": "Sub",
- "key": "sub",
- "type": "markdown",
- "description": "Subheadline below the module headline",
- "required": false
- },
- "text": {
- "id": 0,
- "pos": 0,
- "display_name": "Text",
- "key": "text",
- "type": "markdown",
- "description": "Info text for the module element",
- "required": false
- },
- "highlightText": {
- "id": 0,
- "pos": 0,
- "display_name": "HighlightText",
- "key": "highlightText",
- "type": "boolean",
- "description": "Visually highlight the text",
- "required": false
- },
- "colorNeutral": {
- "id": 0,
- "pos": 0,
- "display_name": "ColorNeutral",
- "key": "colorNeutral",
- "type": "boolean",
- "description": "Make the text and buttons color neutral",
- "required": false
- },
- "buttons": {
- "id": 0,
- "pos": 0,
- "display_name": "Buttons",
- "key": "buttons",
- "type": "bloks",
- "restrict_type": "",
- "restrict_components": true,
- "component_whitelist": [
- "buttons"
- ],
- "description": "Button"
- },
- "overlay": {
- "id": 0,
- "pos": 0,
- "display_name": "Overlay",
- "key": "overlay",
- "type": "boolean",
- "description": "Enable grid layer",
- "required": false
- },
- "tab-c602b06b-d94b-485f-9c08-e6a86577cc4f": {
- "id": 0,
- "pos": 0,
- "display_name": "Video",
- "key": "tab-c602b06b-d94b-485f-9c08-e6a86577cc4f",
- "keys": [
- "video_srcMobile",
- "video_srcTablet",
- "video_srcDesktop"
- ],
- "type": "tab",
- "description": "Sources of background videos for different screen sizes",
- "required": false
- },
- "video_srcMobile": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcMobile",
- "key": "video_srcMobile",
- "type": "asset",
- "filetypes": [
- "videos"
- ],
- "description": "Background video source for small screens",
- "required": false
- },
- "video_srcTablet": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcTablet",
- "key": "video_srcTablet",
- "type": "asset",
- "filetypes": [
- "videos"
- ],
- "description": "Background video source for medium screens",
- "required": false
- },
- "video_srcDesktop": {
- "id": 0,
- "pos": 0,
- "display_name": "SrcDesktop",
- "key": "video_srcDesktop",
- "type": "asset",
- "filetypes": [
- "videos"
- ],
- "description": "Background video source for large screens",
- "required": false
- },
- "textPosition": {
- "id": 0,
- "pos": 0,
- "display_name": "TextPosition",
- "key": "textPosition",
- "type": "option",
- "default_value": "bottom",
- "description": "Choose the alginment of the module content",
- "options": [
- {
- "name": "center",
- "value": "center",
- "_uid": "f86274b2-3d76-4e3e-b23d-099604442cb6"
- },
- {
- "name": "left",
- "value": "left",
- "_uid": "6763cece-ae3d-432a-8007-06229e9f1499"
- },
- {
- "name": "right",
- "value": "right",
- "_uid": "f29d54f0-05c2-4ffd-8592-f26f68aab13b"
- }
- ],
- "required": false
- },
- "type": {
- "id": 0,
- "pos": 0,
- "display_name": "Type",
- "key": "type",
- "type": "text",
- "description": "Internal type for interface resolution",
- "default_value": "video-curtain"
- }
- },
- "image": "//a.storyblok.com/f/303819/1559x720/6c966bf236/components-video-curtain-atmospheric-video-with-overlay.png",
- "preview_field": null,
- "is_root": false,
- "preview_tmpl": null,
- "is_nestable": true,
- "all_presets": [
- {
- "id": 2277528,
- "name": "AtmosphericVideoWithOverlay",
- "component_id": 6257237,
- "image": "//a.storyblok.com/f/303819/1559x720/6c966bf236/components-video-curtain-atmospheric-video-with-overlay.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277529,
- "name": "ColorNeutralText",
- "component_id": 6257237,
- "image": "//a.storyblok.com/f/303819/1559x720/b78a8c3700/components-video-curtain-color-neutral-text.png",
- "icon": null,
- "color": null,
- "description": null
- },
- {
- "id": 2277530,
- "name": "ColorNeutralVideo",
- "component_id": 6257237,
- "image": "//a.storyblok.com/f/303819/1559x720/834a78153a/components-video-curtain-color-neutral-video.png",
- "icon": null,
- "color": null,
- "description": null
- }
- ],
- "preset_id": null,
- "real_name": "Video Curtain",
- "component_group_uuid": "bed7508e-f5dd-444c-b6f2-ac5176848f9e",
- "color": "#05566a",
- "icon": "block-wallet",
- "internal_tags_list": [],
- "internal_tag_ids": [],
- "content_type_asset_preview": null,
- "component_group_name": "Components"
}
]
}
\ No newline at end of file