Client Portal | Internal Tools | Web App Builder | Free Website Builder Made with Softr
store the red, green, blue values in separate variables color = color.match( /^rgba?\((\d+),\s*(\d+),\s*(\d+)(?:,\s*(\d+(?:\.\d+)?))?\)$/ ); r = color[1]; g = color[2]; b = color[3]; } else { // If hex --> Convert it to RGB: http://gist.github.com/983661 color = +( "0x" + color.slice(1).replace(color.length < 5 && /./g, "$&$&") ); r = color >> 16; g = (color >> 8) & 255; b = color & 255; } // HSP (Highly Sensitive Poo) equation from http://alienryderflex.com/hsp.html hsp = Math.sqrt(0.299 * (r * r) + 0.587 * (g * g) + 0.114 * (b * b)); // Using the HSP value, determine whether the color is light or dark if (hsp > 127.5) { return "light"; } else { return "dark"; } } function rgb2hex(orig) { const rgb = orig.replace(/\s/g, "").match(/^rgba?\((\d+),(\d+),(\d+)/i); return rgb && rgb.length === 4 ? "#" + ("0" + parseInt(rgb[1], 10).toString(16)).slice(-2) + ("0" + parseInt(rgb[2], 10).toString(16)).slice(-2) + ("0" + parseInt(rgb[3], 10).toString(16)).slice(-2) : orig; } function isHidden(el) { if (!el) { return true; } if (el.ariaHidden) { return false; } const style = window.getComputedStyle(el); return (style.display === 'none'); } function init() { const madeWithSoftrEl = document.querySelector(".made-with-softr"); const softrEl = document.querySelector(".made-with-softr a"); if (!madeWithSoftrEl) { createBudgetWrapperDivEl(); } if (!softrEl && madeWithSoftrEl) { madeWithSoftrEl.remove(); createBudgetWrapperDivEl(); } if (isHidden(madeWithSoftrEl) || isHidden(softrEl)) { madeWithSoftrEl.remove(); createBudgetWrapperDivEl(); } const headers = document.querySelectorAll("header"); const sections = document.querySelectorAll("section"); const footers = document.querySelectorAll("footer"); const allSections = [...headers, ...sections, ...footers] setRightTheme(allSections, softrEl); function onScroll() { setRightTheme(allSections, softrEl); } document.addEventListener("scroll", onScroll); function onBlocksRendered() { moveBadgeToTheRightIfHeaderIsVertical(); } window.addEventListener(BlocksRenderedEventName, onBlocksRendered); moveBadgeToTheRightIfHeaderIsVertical(); return function cleanup() { document.removeEventListener("scroll", onScroll); document.removeEventListener(BlocksRenderedEventName, onBlocksRendered); } } function moveBadgeToTheRightIfHeaderIsVertical () { const madeWithSoftrEl = document.querySelector(".made-with-softr"); const allBlocks = document.querySelector('[data-appid]').children; let headers = [...allBlocks].filter((block)=>{ if (block.hasAttribute('category')){ return block.getAttribute('category') === 'Header'; } }); if (headers.length === 0) { return false;} if(headers.length > 0) { [...headers].map((header)=>{ let blockHrId = header.getAttribute('id'); if (isReactBlock(header)) { setTimeout(()=>{ window.addEventListener('block-loaded-' + blockHrId, function () { if(isVerticalHeader(header)){ madeWithSoftrEl.style.left='320px'; } }, 2500); if(isVerticalHeader(header)){ madeWithSoftrEl.style.left='320px'; } }) } else { if(isVerticalHeader(header)){ madeWithSoftrEl.style.left='320px'; } } }) } } function isVerticalHeader (block){ //react vertical header structure is: div > div //react horizontal header structure is: div > header //non react vertical header structure is: div > nav //non react horizontal header structure is: nav if(block.hasAttribute('category')){ if (block.getAttribute('category') !== 'Header'){ return false; } } if (block.tagName.toLowerCase() === 'nav'){ return false; } if(block.tagName.toLowerCase() === 'section') { return false; } let firstElementChild = block.firstElementChild; return firstElementChild && (firstElementChild.tagName.toLowerCase() === 'div' || firstElementChild.tagName.toLowerCase() === 'nav'); } function isReactBlock (block) { return block.tagName.toLowerCase() === 'div'; } let cleanup = init(); setInterval(() => { cleanup(); cleanup = init(); }, (Math.floor(2 + Math.random() * 5)) * 1000); })(); --> \"Publish
\"Publish
","compiled_style":".sw-font-size-m { font-size: 1rem!important; } .sw-text-color-000000 { color: #000000!important; } .sw-font-family-default { } .sw-font-weight-semibold { font-weight: 600!important; } .sw-letter-spacing-normal { letter-spacing: 0rem!important; } .sw-display-block { display: block!important; } .sw-padding-top-6xs { padding-top: 0.5rem!important; } .sw-padding-bottom-6xs { padding-bottom: 0.5rem!important; } .sw-padding-left-6xs { padding-left: 0.5rem!important; } .sw-padding-right-xs { padding-right: 2rem!important; } .hover\\:sw-text-decoration-no-underline:hover { text-decoration: none!important; } .active\\:sw-background-color-transparent:active { background-color: transparent!important; } .sw-font-size-s { font-size: 0.875rem!important; } .sw-font-weight-normal { font-weight: 400!important; } .sw-display-flex { display: flex!important; } .sw-padding-top-7xs { padding-top: 0.25rem!important; } .sw-padding-bottom-7xs { padding-bottom: 0.25rem!important; } .sw-padding-left-7xs { padding-left: 0.25rem!important; } .sw-padding-right-7xs { padding-right: 0.25rem!important; } .sw-text-color-13324b { color: #13324b!important; } .sw-width-11xs { width: 2rem!important; } .sw-margin-right-7xs { margin-right: 0.25rem!important; } .sw-margin-left-7xs { margin-left: 0.25rem!important; } .sw-text-align-left { text-align: left!important; } .sw-text-color-default { } .sw-border-radius-default { } .sw-background-color-default { } .sw-padding-left-2xs { padding-left: 1.5rem!important; } .sw-padding-right-2xs { padding-right: 1.5rem!important; } .sw-padding-top-5xs { padding-top: 0.75rem!important; } .sw-padding-bottom-5xs { padding-bottom: 0.75rem!important; } .sw-border-style-none { border-style: none!important; } .sw-border-width-xs { border-width: 1px!important; } .sw-border-color-000000 { border-color: #000000!important; } .sw-text-decoration-no-underline { text-decoration: none!important; } .hover\\:sw-box-shadow-m:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)!important; } @media (min-width: 768px) { .m\\:sw-margin-left-6xs { margin-left: 0.5rem!important; } } .sw-background-color-ffffff { background-color: #ffffff!important; } .sw-border-top-style-none { border-top-style: none!important; } .sw-border-top-width-xs { border-top-width: 1px!important; } .sw-border-top-color-000000 { border-top-color: #000000!important; } .sw-border-bottom-style-none { border-bottom-style: none!important; } .sw-border-bottom-width-xs { border-bottom-width: 1px!important; } .sw-border-bottom-color-000000 { border-bottom-color: #000000!important; } .sw-width-2xs { width: 16rem!important; } .sw-font-family-ubuntu { font-family: \"Ubuntu\"!important; } .sw-text-color-ffffff { color: #ffffff!important; } .sw-background-color-9ea5b4 { background-color: #9ea5b4!important; } .sw-border-style-solid { border-style: solid!important; } .sw-border-color-9ea5b4 { border-color: #9ea5b4!important; } .sw-background-attachment-scroll { background-attachment: scroll!important; } .sw-background-repeat-no-repeat { background-repeat: no-repeat!important; } .sw-background-position-center { background-position: center!important; } .sw-background-size-cover { background-size: cover!important; } .home_header1-fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; box-shadow: 0 1px 7px rgba(0, 0, 0, 0.1); } #home_header1 .navbar-nav .dropdown-menu { border: 0; box-shadow: 0 1px 3px #00000014, 0 10px 40px -10px #00000059; min-width: 180px; } #home_header1 .nav-link.dropdown-toggle{ border-radius: 50%; text-align: center; line-height: 10px; display: flex; align-items: center; justify-content: center; } #home_header1 .dropdown-menu-profile { left: -148px; top: 25px; border-radius: 0; box-shadow: 0 1px 3px #00000014, 0 10px 40px -10px #00000059; border: 0; } #home_header1 .dropdown-menu-profile a{ text-decoration: none; border-bottom: 1px solid rgba(0,0,0,.15); padding: 6px 12px; } #home_header1 .dropdown-menu{ min-width: 11rem!important; } #home_header1 .nav-link.dropdown-toggle:after{ display: none; } #home_header1 .mob-menu-body .dropdown-menu-profile { border-top: 1px solid #dedede; } #home_header1 .navbar-nav .links-dropdown a { padding-left: 1.5rem !important; } #home_header1 .toggle-button{ display: none; } #home_header1 .mob-menu-header{ padding: 8px 24px; display: flex; justify-content: space-between; } #home_header1 .mob-menu-body{ height: 90%; position: relative; } #home_header1 .navigation-section{ padding: 10px 24px; } #home_header1 .navigation-section p a{ width: 100%; } #home_header1 .buttons-section{ margin: 24px; display: flex; justify-content: flex-start; } #home_header1 .navbar-nav .dropdown-menu-profile a:hover{ box-shadow: 0 1px 3px #00000014, 0 4px 5px -5px #00000059; } #home_header1 .arrow { position: absolute; right: 15px; top: 5px; display: inline-block; width: 8px; height: 8px; border-left: 2px solid #29394c; border-top: 2px solid #29394c; transform: rotate(225deg); transition: .2s linear; margin-top: 10px; } #home_header1 .link{ background: #f5f5f5; padding: 3px 10px; } #home_header1 .collapsed.link{ background: none; } #home_header1 .collapsed .arrow { transform: rotate(135deg); } #home_header1 .buttons-section button{ margin-left: 0!important; } #home_header1 .navbar-close i{ font-size: 24px; margin-top: 10px; margin-right: 3px; cursor: pointer; } #home_header1 .mob-menu-content{ display: none; } @media (max-width: 992px) { #home_header1 .buttons-section { margin-left: 24px; margin-right: 0; display: inline-block; } #home_header1 .buttons-section a { margin-right: 10px; margin-bottom: 16px; } #home_header1 .desktop-menu{ display: none; } #home_header1 .dropdown-menu-profile { box-shadow: none; } #home_header1 .dropdown-menu-profile a{ border: 0; } #home_header1 .toggle-button{ display: block; } #home_header1 .mob-menu-content{ display: block; position: fixed; z-index: 5; width: 100%; height: 100%; opacity: 0; top:0; left: 0; background: #fff; -webkit-transition: ease-in all 0.5s; transition: ease-in all 0.5s; -webkit-transform: translateX(200%); -ms-transform: translateX(200%); transform: translateX(200%); } #home_header1 .mob-menu-content.show{ display: block; opacity: 1; /*left: 0;*/ -webkit-transition: ease-in all 0.5s; transition: ease-in all 0.5s; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); } #home_header1 a.dropdown-item { padding-left: 1.5rem !important; } } .navbar-dark .navbar-toggler-icon { cursor: pointer; background-image: url(\"data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='https://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\") !important; } .navbar-light .navbar-toggler-icon { cursor: pointer; background-image: url(\"data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='https://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\") !important; } ","compiled_script":";(function () { $('.navbar-toggler-icon').click(function () { $('.mob-menu-content').toggleClass('show'); }); $('.navbar-close').click(function () { $('.mob-menu-content').toggleClass('show'); }); oneButtonView($(window)); $(window).on('resize', function () { var win = $(this); oneButtonView(win) }); /* close the mobile menu */ $('.mob-menu-body a').click(function () { if($(this).attr('aria-controls')) { return; } $('.mob-menu-content').toggleClass('show'); }); var bgColor = window.getComputedStyle(document.querySelector('nav#home_header1'), null).getPropertyValue('background-color'); if (lightOrDark(bgColor) === 'dark') { $('nav#home_header1').removeClass('navbar-light'); $('nav#home_header1').addClass('navbar-dark'); $('#home_header1 .navbar-close i').css('color', '#ffffff'); $('#home_header1 .arrow').css('border-left', '2px solid #ffffff'); $('#home_header1 .arrow').css('border-top', '2px solid #ffffff'); } profileIconSizeCalculation(); $('#home_header1 a.dropdown-item').hover(function () { $(this).css('background-color', bgColor); }); $('#home_header1 .navbar-nav .dropdown-menu').css('background-color', bgColor); $('#home_header1 .mob-menu-content').css('background-color', bgColor); $('#home_header1 .link').css('background-color', bgColor); function lightOrDark(color) { /* Variables for red, green, blue values */ var r, g, b, hsp; /* Check the format of the color, HEX or RGB? */ if (color.match(/^rgb/)) { /* If HEX --> store the red, green, blue values in separate variables */ color = color.match(/^rgba?\\((\\d+),\\s*(\\d+),\\s*(\\d+)(?:,\\s*(\\d+(?:\\.\\d+)?))?\\)$/); r = color[1]; g = color[2]; b = color[3]; } else { /* If RGB --> Convert it to HEX: https://gist.github.com/983661 */ color = +(\"0x\" + color.slice(1).replace( color.length < 5 && /./g, '$&$&')); r = color >> 16; g = color >> 8 & 255; b = color & 255; } /* HSP (Highly Sensitive Poo) equation from https://alienryderflex.com/hsp.html */ hsp = Math.sqrt( 0.299 * (r * r) + 0.587 * (g * g) + 0.114 * (b * b) ); /* Using the HSP value, determine whether the color is light or dark */ if (hsp > 127.5) { return 'light'; } else { return 'dark'; } } function oneButtonView(win) { if (win.width() <= 414) { if ($('.navbar-nav').hasClass('empty-links') && $('.navbar-nav').hasClass('one-button')) { $('.desktop-menu').hide(); $('.toggle-button').show(); } } if (win.width() <= 992 && win.width() > 414) { if ($('.navbar-nav').hasClass('empty-links') && $('.navbar-nav').hasClass('one-button')) { $('.desktop-menu').show(); $('.toggle-button').hide(); } } if (win.width() <= 992) { if ($('.navbar-nav').hasClass('empty-links') && $('.navbar-nav').hasClass('empty-buttons')) { $('.desktop-menu').show(); $('.toggle-button').hide(); } } } function signout() { deleteCookie('jwtToken'); window.location.href = '/'; } function deleteCookie(name) { document.cookie = name + \"=; expires=Thu, 01 Jan 1970 00:00:00 UTC\"; } function profileIconSizeCalculation(){ const headerLinks = document.querySelector('nav#home_header1 .nav-item a'); if(!headerLinks) { return; } const fSize = window.getComputedStyle(headerLinks, null).getPropertyValue('font-size'); if(fSize <= '16px'){ $('#home_header1 .nav-item.dropdown a.profile-dropdown-toggle').css({ 'width': '24px', 'height': '24px', }); } else if(fSize > '16px' && fSize <= '24px') { $('#home_header1 .nav-item.dropdown a.profile-dropdown-toggle').css({ 'width': '30px', 'height': '30px', }); }else { $('#home_header1 .nav-item.dropdown a.profile-dropdown-toggle').css({ 'width': '34px', 'height': '34px', }); } } $(\"a[href='action:signout']\").click(function(event) { event.preventDefault(); signout(); }); })(); "}; window['hero1'] = {}; const block_a238d5da413f4c44a3f5199bd611cb21_defJson = {"id":"a238d5da-413f-4c44-a3f5-199bd611cb21","version":"1.0.0","hrid":"hero1","name":"hero1","title":"Hero with call to action","image":"https://softr-assets-eu-shared.s3.eu-central-1.amazonaws.com/studio/blocks/assets/hero1.png","category":"Hero","keywords":"hero, simple","elements":{"imagePosition":["LEFT","RIGHT","TOP","BOTTOM"],"selectedImagePosition":"LEFT","definitions":{"button":{"tag":"a","type":"button","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-default"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-semibold"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-full"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-default"]},{"name":"padding-left-right","label":"Padding left/right","isPrimary":true,"classes":["sw-padding-left-s","sw-padding-right-s"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-5xs","sw-padding-bottom-5xs"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-none","sw-border-width-xs","sw-border-color-000000"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","isPrimary":true,"classes":["sw-text-decoration-no-underline","hover:sw-text-decoration-no-underline","hover:sw-box-shadow-m","sw-margin-bottom-6xs","sw-margin-right-5xs","sw-display-inline-block"]}],"label":"Button label","action":{"type":"navigate","options":{"url":{"destination":"","target":""}}}}},"container":{"tag":"header","type":"container","primaryStyles":[{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"padding-top","label":"Padding top","isPrimary":true,"classes":["sw-padding-top-2xl"]},{"name":"padding-bottom","label":"Padding bottom","isPrimary":true,"classes":["sw-padding-bottom-2xl"]},{"name":"border-top","label":"Border top","isPrimary":true,"classes":["sw-border-top-style-none","sw-border-top-width-xs","sw-border-top-color-000000"]},{"name":"border-bottom","label":"Border bottom","isPrimary":true,"classes":["sw-border-bottom-style-none","sw-border-bottom-width-xs","sw-border-bottom-color-000000"]}]},"header":{"tag":"h1","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-5xl","sw-text-color-default"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-ubuntu"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-default"]},{"name":"padding-top","label":"Padding top","isPrimary":true,"classes":["sw-padding-top-none"]},{"name":"padding-bottom","label":"Padding bottom","isPrimary":true,"classes":["sw-padding-bottom-4xs"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]},{"name":"line-height","label":"Line height","isPrimary":true,"classes":["sw-line-height-tight"]}],"value":"We are Bantu Tech"},"text":{"tag":"p","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-xl","sw-text-color-default"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-default"]},{"name":"padding-top","label":"Padding top","isPrimary":true,"classes":["sw-padding-top-none"]},{"name":"padding-bottom","label":"Padding bottom","isPrimary":true,"classes":["sw-padding-bottom-3xs"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]},{"name":"line-height","label":"Line height","isPrimary":true,"classes":["sw-line-height-loose"]}],"value":"Struggling to find a dedicated and experienced cyber resource for your business? Our consultants are able to support your security and infrastructure projects and offer remote server patch management, service architecture and ad-hoc security services. "},"buttons":{"type":"array","item_type":"#/elements/definitions/button","items":[]},"image":{"tag":"img","primaryStyles":[{"name":"percentage-width","label":"Size","isPrimary":true,"classes":["sw-percentage-width-full"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-none","sw-border-width-xs","sw-border-color-000000"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-none"]}],"otherStyles":[],"src":"https://assets.softr-files.com/applications/cf1af38d-12bb-46e0-967b-1e76b59131da/assets/ce539d27-5474-4a38-a23c-028fde5b69b5.png","alt":"Image alt"},"backgroundImage":{"tag":"img","primaryStyles":[{"name":"background-repeat","label":"Repeat","isPrimary":true,"classes":["sw-background-repeat-no-repeat"]},{"name":"background-size","label":"Size","isPrimary":true,"classes":["sw-background-size-cover"]},{"name":"background-position","label":"Position","isPrimary":true,"classes":["sw-background-position-center"]},{"name":"background-attachment","label":"Behaviour","isPrimary":true,"classes":["sw-background-attachment-scroll"]}],"otherStyles":[],"src":""}},"type":null,"collection":null,"enabled":"null","order":"null","updated":null,"visibility":{"userGroup":{"predefinedUserGroupType":"ALL_USERS","customUserGroupIds":[],"enabledPredefinedUserGroupTypes":["ALL_USERS","LOGGED_IN_USERS","NON_LOGGED_IN_USERS"]},"devices":null,"detailsPageRecordCondition":null},"settings":{},"container":null,"presets":null,"created_at":null,"compiled_markup":"
\"Image

We are Bantu Tech

Struggling to find a dedicated and experienced cyber resource for your business? Our consultants are able to support your security and infrastructure projects and offer remote server patch management, service architecture and ad-hoc security services.

","compiled_style":".sw-font-size-m { font-size: 1rem!important; } .sw-text-color-default { } .sw-font-family-default { } .sw-font-weight-semibold { font-weight: 600!important; } .sw-border-radius-full { border-radius: 9999rem!important; } .sw-background-color-default { } .sw-padding-left-s { padding-left: 2.5rem!important; } .sw-padding-right-s { padding-right: 2.5rem!important; } .sw-padding-top-5xs { padding-top: 0.75rem!important; } .sw-padding-bottom-5xs { padding-bottom: 0.75rem!important; } .sw-border-style-none { border-style: none!important; } .sw-border-width-xs { border-width: 1px!important; } .sw-border-color-000000 { border-color: #000000!important; } .sw-letter-spacing-normal { letter-spacing: 0rem!important; } .sw-text-decoration-no-underline { text-decoration: none!important; } .hover\\:sw-text-decoration-no-underline:hover { text-decoration: none!important; } .hover\\:sw-box-shadow-m:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)!important; } .sw-margin-bottom-6xs { margin-bottom: 0.5rem!important; } .sw-margin-right-5xs { margin-right: 0.75rem!important; } .sw-display-inline-block { display: inline-block!important; } .sw-background-color-ffffff { background-color: #ffffff!important; } .sw-padding-top-2xl { padding-top: 6rem!important; } .sw-padding-bottom-2xl { padding-bottom: 6rem!important; } .sw-border-top-style-none { border-top-style: none!important; } .sw-border-top-width-xs { border-top-width: 1px!important; } .sw-border-top-color-000000 { border-top-color: #000000!important; } .sw-border-bottom-style-none { border-bottom-style: none!important; } .sw-border-bottom-width-xs { border-bottom-width: 1px!important; } .sw-border-bottom-color-000000 { border-bottom-color: #000000!important; } .sw-font-size-5xl { font-size: 3rem!important; } .sw-font-family-ubuntu { font-family: \"Ubuntu\"!important; } .sw-font-weight-default { } .sw-padding-top-none { padding-top: 0rem!important; } .sw-padding-bottom-4xs { padding-bottom: 1rem!important; } .sw-line-height-tight { line-height: 1.25!important; } .sw-font-size-xl { font-size: 1.25rem!important; } .sw-padding-bottom-3xs { padding-bottom: 1.25rem!important; } .sw-line-height-loose { line-height: 2!important; } .sw-percentage-width-full { width: 100%!important; } .sw-border-radius-none { border-radius: 0rem!important; } .sw-background-repeat-no-repeat { background-repeat: no-repeat!important; } .sw-background-size-cover { background-size: cover!important; } .sw-background-position-center { background-position: center!important; } .sw-background-attachment-scroll { background-attachment: scroll!important; } ","compiled_script":""}; window['team2'] = {}; const block_fbab2d316c304646a877ff88401dd34f_defJson = {"id":"fbab2d31-6c30-4646-a877-ff88401dd34f","version":"1.0.0","hrid":"team2","name":"team1","title":"Team with horizontal view","image":"https://softr-assets-eu-shared.s3.eu-central-1.amazonaws.com/studio/blocks/assets/team1.png","category":"Team","keywords":"team, simple","elements":{"definitions":{"member":{"picture":{"tag":"img","type":"image","primaryStyles":[{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-none","sw-border-width-xs","sw-border-color-000000"]},{"name":"border-radius","label":"Roundness","classes":["sw-border-radius-full"]},{"name":"width","label":"Size","classes":["sw-width-4xs","sw-height-4xs"]}],"src":"https://softr-assets-eu-shared.s3.eu-central-1.amazonaws.com/studio/blocks/assets/team_profile_picture_placeholder.png"},"name":{"tag":"h5","type":"header","primaryStyles":[{"name":"size-color","label":"Text Size/Color","classes":["sw-font-size-xl","sw-text-color-default"]},{"name":"font-family","label":"Font family","classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-normal"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","classes":[]}],"value":"Member name"},"title":{"tag":"small","type":"text","primaryStyles":[{"name":"size-color","label":"Text Size/Color","classes":["sw-font-size-m","sw-text-color-default"]},{"name":"font-family","label":"Font family","classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","classes":["sw-font-weight-normal"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-padding-bottom-4xs","sw-display-block"]}],"value":"Title"},"description":{"tag":"p","type":"text","primaryStyles":[{"name":"size-color","label":"Text Size/Color","classes":["sw-font-size-m","sw-text-color-default"]},{"name":"font-family","label":"Font family","classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-default"]},{"name":"line-height","label":"Line height","isPrimary":true,"classes":["sw-line-height-loose"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","classes":[]}],"value":"About this person..."},"socialLinks":{"type":"array","item_type":"#/elements/definitions/socialLink","items":[{"tag":"a","type":"social-icon","value":"fab fa-linkedin-in","url":"https://linkedin.com/myprofile","primaryStyles":[{"name":"size-color","label":"Icon Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-000000"]},{"name":"width","label":"Width","isPrimary":true,"classes":["sw-width-11xs"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-display-inline-block"]}]},{"tag":"a","type":"social-icon","value":"fab fa-twitter","url":"https://twitter.com/myprofile","primaryStyles":[{"name":"size-color","label":"Icon Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-000000"]},{"name":"width","label":"Width","isPrimary":true,"classes":["sw-width-11xs"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-display-inline-block"]}]},{"tag":"a","type":"social-icon","value":"fab fa-instagram","url":"https://instagram.com/myprofile","primaryStyles":[{"name":"size-color","label":"Icon Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-000000"]},{"name":"width","label":"Width","isPrimary":true,"classes":["sw-width-11xs"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-display-inline-block"]}]}]}},"socialLink":{"tag":"a","type":"social-icon","value":"fab fa-linkedin-in","url":"https://linkedin.com/myprofile","primaryStyles":[{"name":"size-color","label":"Icon Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-000000"]},{"name":"width","label":"Width","isPrimary":true,"classes":["sw-width-11xs"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-display-inline-block"]}]}},"container":{"tag":"section","type":"container","primaryStyles":[{"name":"background-color","label":"Background color","classes":["sw-background-color-ffffff"]},{"name":"padding-top","label":"Padding top","classes":["sw-padding-top-2xl"]},{"name":"padding-bottom","label":"Padding bottom","classes":["sw-padding-bottom-2xl"]},{"name":"border-top","label":"Border top","classes":["sw-border-top-style-none","sw-border-top-width-xs","sw-border-top-color-000000"]},{"name":"border-bottom","label":"Border bottom","classes":["sw-border-bottom-style-none","sw-border-bottom-width-xs","sw-border-bottom-color-000000"]}],"otherStyles":[]},"header":{"tag":"h2","type":"text","primaryStyles":[{"name":"size-color","label":"Text Size/Color","classes":["sw-font-size-4xl","sw-text-color-default"]},{"name":"font-family","label":"Font family","classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","classes":["sw-font-weight-default"]},{"name":"padding-top","label":"Padding top","isPrimary":true,"classes":["sw-padding-top-none"]},{"name":"padding-bottom","label":"Padding bottom","isPrimary":true,"classes":["sw-padding-bottom-4xs"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]},{"name":"line-height","label":"Line height","isPrimary":true,"classes":["sw-line-height-normal"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-letter-spacing-normal"]}],"value":""},"text":{"tag":"p","type":"text","primaryStyles":[{"name":"size-color","label":"Text Size/Color","classes":["sw-font-size-xl","sw-text-color-default"]},{"name":"font-family","label":"Font family","classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","classes":["sw-font-weight-default"]},{"name":"padding-top","label":"Padding top","classes":["sw-padding-top-none"]},{"name":"padding-bottom","label":"Padding bottom","classes":["sw-padding-bottom-3xs"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]},{"name":"line-height","label":"Line height","isPrimary":true,"classes":["sw-line-height-loose"]}],"otherStyles":[],"value":""},"members":{"type":"array","item_type":"#/elements/definitions/member","items":[{"picture":{"tag":"img","type":"image","primaryStyles":[{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-none","sw-border-width-xs","sw-border-color-000000"]},{"name":"border-radius","label":"Roundness","classes":["sw-border-radius-full"]},{"name":"width","label":"Size","classes":["sw-width-4xs","sw-height-4xs"]}],"src":"https://assets.softr-files.com/applications/cf1af38d-12bb-46e0-967b-1e76b59131da/assets/55a8086f-f5b6-472a-b33c-0f075ee9b1dc.jpeg"},"name":{"tag":"h5","type":"header","primaryStyles":[{"name":"size-color","label":"Text Size/Color","classes":["sw-font-size-xl","sw-text-color-default"]},{"name":"font-family","label":"Font family","classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-normal"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","classes":[]}],"value":"Stephen Chapendama"},"title":{"tag":"small","type":"text","primaryStyles":[{"name":"size-color","label":"Text Size/Color","classes":["sw-font-size-m","sw-text-color-default"]},{"name":"font-family","label":"Font family","classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","classes":["sw-font-weight-normal"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-padding-bottom-4xs","sw-display-block"]}],"value":"Founder of Bantu Tech"},"description":{"tag":"p","type":"text","primaryStyles":[{"name":"size-color","label":"Text Size/Color","classes":["sw-font-size-m","sw-text-color-default"]},{"name":"font-family","label":"Font family","classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-default"]},{"name":"line-height","label":"Line height","isPrimary":true,"classes":["sw-line-height-loose"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","classes":[]}],"value":"Stephen Chapendama, founder of Bantu Tech is a cybersecurity professional with experience advising startups on cyber policies and strategy. With experience working on DevSecOps projects in Higher Education, Cyber & Intelligence and the architecture, deploymenent and monitoring of SIEM Infrastrucutre. Stephen is a DevOps professional operating mainly in Azure and GCP environments. "},"socialLinks":{"type":"array","item_type":"#/elements/definitions/socialLink","items":[{"tag":"a","type":"social-icon","value":"fab fa-linkedin-in","url":"https://www.linkedin.com/in/stephenchapendama/","primaryStyles":[{"name":"size-color","label":"Icon Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-000000"]},{"name":"width","label":"Width","isPrimary":true,"classes":["sw-width-11xs"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-display-inline-block"]}]},{"tag":"a","type":"social-icon","value":"fab fa-twitter","url":"https://twitter.com/bantu_tech","primaryStyles":[{"name":"size-color","label":"Icon Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-000000"]},{"name":"width","label":"Width","isPrimary":true,"classes":["sw-width-11xs"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-display-inline-block"]}]},{"tag":"a","type":"social-icon","value":"fab fa-medium","url":"https://stephen-chapendama.medium.com/","primaryStyles":[{"name":"size-color","label":"Icon Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-000000"]},{"name":"width","label":"Width","isPrimary":true,"classes":["sw-width-11xs"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-display-inline-block"]}]}]}}]}},"type":null,"collection":null,"enabled":"null","order":"null","updated":null,"visibility":{"userGroup":{"predefinedUserGroupType":"ALL_USERS","customUserGroupIds":[],"enabledPredefinedUserGroupTypes":["ALL_USERS","LOGGED_IN_USERS","NON_LOGGED_IN_USERS"]},"devices":null,"detailsPageRecordCondition":null},"settings":{},"container":null,"presets":null,"created_at":null,"compiled_markup":"
Stephen Chapendama
Founder of Bantu Tech

Stephen Chapendama, founder of Bantu Tech is a cybersecurity professional with experience advising startups on cyber policies and strategy. With experience working on DevSecOps projects in Higher Education, Cyber & Intelligence and the architecture, deploymenent and monitoring of SIEM Infrastrucutre. Stephen is a DevOps professional operating mainly in Azure and GCP environments.

","compiled_style":".sw-border-style-none { border-style: none!important; } .sw-border-width-xs { border-width: 1px!important; } .sw-border-color-000000 { border-color: #000000!important; } .sw-border-radius-full { border-radius: 9999rem!important; } .sw-width-4xs { width: 10rem!important; } .sw-height-4xs { height: 10rem!important; } .sw-font-size-xl { font-size: 1.25rem!important; } .sw-text-color-default { } .sw-font-family-default { } .sw-font-weight-normal { font-weight: 400!important; } .sw-letter-spacing-normal { letter-spacing: 0rem!important; } .sw-font-size-m { font-size: 1rem!important; } .sw-padding-bottom-4xs { padding-bottom: 1rem!important; } .sw-display-block { display: block!important; } .sw-font-weight-default { } .sw-line-height-loose { line-height: 2!important; } .sw-text-color-000000 { color: #000000!important; } .sw-width-11xs { width: 2rem!important; } .sw-display-inline-block { display: inline-block!important; } .sw-background-color-ffffff { background-color: #ffffff!important; } .sw-padding-top-2xl { padding-top: 6rem!important; } .sw-padding-bottom-2xl { padding-bottom: 6rem!important; } .sw-border-top-style-none { border-top-style: none!important; } .sw-border-top-width-xs { border-top-width: 1px!important; } .sw-border-top-color-000000 { border-top-color: #000000!important; } .sw-border-bottom-style-none { border-bottom-style: none!important; } .sw-border-bottom-width-xs { border-bottom-width: 1px!important; } .sw-border-bottom-color-000000 { border-bottom-color: #000000!important; } .sw-font-size-4xl { font-size: 2.25rem!important; } .sw-padding-top-none { padding-top: 0rem!important; } .sw-line-height-normal { line-height: 1.5!important; } .sw-padding-bottom-3xs { padding-bottom: 1.25rem!important; } ","compiled_script":""}; window['list2'] = {}; window['list2']['baseId'] = 'appBUywxfJ4m2GWMR';window['list2']['tableName'] = 'Speaking Engagements';const block_5c7bed17af744ae699c5a76a3ecce5ac_defJson = {"id":"5c7bed17-af74-4ae6-99c5-a76a3ecce5ac","version":"1.0.2","hrid":"list2","name":"list6","title":"List with vertical cards and video","image":"https://softr-assets-eu-shared.s3.eu-central-1.amazonaws.com/studio/blocks/assets/list6.png","category":"List","keywords":"list, simple","elements":{"definitions":{"collectionItem":{"container":{"tag":"div","primaryStyles":[{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"margin-bottom","label":"Margin Bottom","isPrimary":true,"classes":["sw-margin-bottom-none"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-solid","sw-border-width-s","sw-border-color-e6e6e6"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-none"]},{"name":"shadow","label":"Shadow","isPrimary":true,"classes":["sw-box-shadow-none"]},{"name":"hover-shadow","label":"Hover Shadow","isPrimary":true,"classes":["hover:sw-box-shadow-s"]}],"otherStyles":[{"name":"others","label":"Others","isPrimary":true,"classes":["sw-cursor-default"]}]},"imageOrVideo":{"tag":"img","primaryStyles":[{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-none","sw-border-width-xs","sw-border-color-000000"]},{"name":"border-radius","label":"Roundness","classes":["sw-border-radius-none"]},{"name":"height","label":"Size","isPrimary":true,"classes":["sw-height-3xs"]}],"otherStyles":[],"src":"","alt":""},"title":{"tag":"h4","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-333333"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-bold"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-6xs","sw-padding-bottom-6xs"]}],"value":"Versailles Palace & Gardens Full Access Ticket & Audio Guide"},"subtitle":{"tag":"p","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-969696"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-medium"]},{"name":"line-height","label":"Line height","isPrimary":true,"classes":["sw-line-height-normal"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-none","sw-padding-bottom-5xs"]}],"value":"Enjoy 1 or 2 days full access to Versailles' whole domain, including the palace, Trianon, Marie Antoinette's Estate and gardens. Benefit from an audio guide in the palace. Upgrade and see the famous Musical Gardens or Fountain Show."},"button":{"tag":"a","type":"button","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-353535"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-semibold"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-m"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffe019"]},{"name":"padding-left-right","label":"Padding left/right","isPrimary":true,"classes":["sw-padding-left-2xs","sw-padding-right-2xs"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-5xs","sw-padding-bottom-5xs"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-none","sw-border-width-xs","sw-border-color-000000"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","isPrimary":true,"classes":["sw-text-decoration-no-underline","hover:sw-text-decoration-no-underline","sw-display-inline-block"]}],"label":"Button label","action":{"type":"navigate","options":{"url":{"destination":"","target":""}}}}},"tag":{"tag":"p","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-868686"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-bold"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-solid","sw-border-width-xs","sw-border-color-868686"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-m"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-padding-top-7xs","sw-padding-bottom-7xs","sw-padding-right-5xs","sw-padding-left-5xs","sw-margin-right-6xs","sw-margin-top-none","sw-margin-bottom-5xs","sw-cursor-default"]}],"value":"Likely to sell out"},"button":{"tag":"a","type":"button","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-default"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-semibold"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-m"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-default"]},{"name":"padding-left-right","label":"Padding left/right","isPrimary":true,"classes":["sw-padding-left-2xs","sw-padding-right-2xs"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-5xs","sw-padding-bottom-5xs"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-none","sw-border-width-xs","sw-border-color-000000"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","isPrimary":true,"classes":["sw-text-decoration-no-underline","hover:sw-text-decoration-no-underline","sw-display-inline-block"]}],"label":"Button label","action":{"type":"navigate","options":{"url":{"destination":"","target":""}}}},"filterItemOption":{"tag":"p","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-999999"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-semibold"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"hover-background-color","label":"Hover Background color","isPrimary":true,"classes":["hover:sw-background-color-eaeaea"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-solid","sw-border-width-xs","sw-border-color-d9d9d9"]},{"name":"hover-border","label":"Hover Border","isPrimary":true,"classes":["hover:sw-border-style-solid","hover:sw-border-width-xs","hover:sw-border-color-5f5f5f"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-full"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-padding-top-7xs","sw-padding-bottom-7xs","sw-margin-right-6xs","sw-cursor-default"]}],"value":"Likely to sell out"},"filterItem":{"values":"Tag1; Tag2; Tag3; Tag4; Tag5","multiselect":false,"showAll":false,"mappedTo":"","showAs":["List","Dropdown"],"selectedShowAs":"List","positions":["TOP","LEFT","RIGHT"],"selectedPosition":"TOP","container":{"tag":"div","primaryStyles":[{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"margin-bottom","label":"Margin Bottom","isPrimary":true,"classes":["sw-margin-bottom-none"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-solid","sw-border-width-xs","sw-border-color-e8e9ec"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-s"]},{"name":"shadow","label":"Shadow","isPrimary":true,"classes":["sw-box-shadow-s"]},{"name":"hover-shadow","label":"Hover Shadow","isPrimary":true,"classes":["hover:sw-box-shadow-l"]}],"otherStyles":[{"name":"others","label":"Others","isPrimary":true,"classes":["sw-padding-top-6xs","sw-padding-bottom-none","sw-cursor-default"]}]},"label":{"tag":"div","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-xs","sw-text-color-3b3b3b"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-normal"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-7xs","sw-padding-bottom-6xs"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-padding-right-6xs","sw-padding-left-6xs","sw-margin-right-6xs","sw-cursor-default"]}],"value":"ALL CATEGORIES"},"allLabel":{"tag":"p","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-999999"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-semibold"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"hover-background-color","label":"Hover Background color","isPrimary":true,"classes":["hover:sw-background-color-eaeaea"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-solid","sw-border-width-xs","sw-border-color-d9d9d9"]},{"name":"hover-border","label":"Hover Border","isPrimary":true,"classes":["hover:sw-border-style-solid","hover:sw-border-width-xs","hover:sw-border-color-5f5f5f"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-full"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-padding-top-7xs","sw-padding-bottom-7xs","sw-margin-right-6xs","sw-cursor-default"]}],"value":"All"},"options":{"tag":"p","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-999999"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-semibold"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"hover-background-color","label":"Hover Background color","isPrimary":true,"classes":["hover:sw-background-color-eaeaea"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-solid","sw-border-width-xs","sw-border-color-d9d9d9"]},{"name":"hover-border","label":"Hover Border","isPrimary":true,"classes":["hover:sw-border-style-solid","hover:sw-border-width-xs","hover:sw-border-color-5f5f5f"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-full"]}],"otherStyles":[{"name":"others","label":"Others","classes":["sw-padding-top-7xs","sw-padding-bottom-7xs","sw-margin-right-6xs","sw-cursor-default"]}],"value":""}}},"container":{"tag":"section","primaryStyles":[{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"padding-top","label":"Padding top","isPrimary":true,"classes":["sw-padding-top-2xl"]},{"name":"padding-bottom","label":"Padding bottom","isPrimary":true,"classes":["sw-padding-bottom-2xl"]},{"name":"border-top","label":"Border top","isPrimary":true,"classes":["sw-border-top-style-none","sw-border-top-width-xs","sw-border-top-color-000000"]},{"name":"border-bottom","label":"Border bottom","isPrimary":true,"classes":["sw-border-bottom-style-none","sw-border-bottom-width-xs","sw-border-bottom-color-000000"]}]},"searchInput":{"tag":"input","type":"text","format":"text","enabled":false,"primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-000000"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-m"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-5xs","sw-padding-bottom-5xs"]},{"name":"margin-top-bottom","label":"Margin top/bottom","isPrimary":true,"classes":["sw-margin-top-5xs","sw-margin-bottom-4xs"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-solid","sw-border-width-xs","sw-border-color-999999"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"shadow","label":"Shadow","isPrimary":true,"classes":["sw-box-shadow-none"]}],"otherStyles":[{"name":"others","label":"Others","isPrimary":true,"classes":["sw-display-inline-block","sw-padding-left-m","sw-outline-none","sw-width-full"]}],"placeholder":"Type here to search"},"loadMoreButton":{"tag":"a","type":"button","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-353535"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-semibold"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-none"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"padding-left-right","label":"Padding left/right","isPrimary":true,"classes":["sw-padding-left-2xs","sw-padding-right-2xs"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-5xs","sw-padding-bottom-5xs"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-solid","sw-border-width-xs","sw-border-color-d9d9d9"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","isPrimary":true,"classes":["sw-text-decoration-no-underline","hover:sw-text-decoration-no-underline","sw-display-inline-block"]}],"label":"Show more","action":{"type":"navigate","options":{"url":{"destination":"","target":""}}}},"emptyStateMessage":{"tag":"p","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-6f6f6f"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-normal"]},{"name":"line-height","label":"Line height","isPrimary":true,"classes":["sw-line-height-normal"]},{"name":"padding-top","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-2xl","sw-padding-bottom-none"]}],"value":"No results found, try adjusting your search and filters."},"collection":{"type":"array","item_type":"#/elements/definitions/collectionItem","items":[{"container":{"tag":"div","primaryStyles":[{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffffff"]},{"name":"margin-bottom","label":"Margin Bottom","isPrimary":true,"classes":["sw-margin-bottom-none"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-solid","sw-border-width-s","sw-border-color-e6e6e6"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-none"]},{"name":"shadow","label":"Shadow","isPrimary":true,"classes":["sw-box-shadow-none"]},{"name":"hover-shadow","label":"Hover Shadow","isPrimary":true,"classes":["hover:sw-box-shadow-s"]}],"otherStyles":[{"name":"others","label":"Others","isPrimary":true,"classes":["sw-cursor-default"]}]},"imageOrVideo":{"tag":"img","primaryStyles":[{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-none","sw-border-width-xs","sw-border-color-000000"]},{"name":"border-radius","label":"Roundness","classes":["sw-border-radius-none"]},{"name":"height","label":"Size","isPrimary":true,"classes":["sw-height-3xs"]}],"otherStyles":[],"src":"","alt":""},"title":{"tag":"h4","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-m","sw-text-color-333333"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-bold"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-6xs","sw-padding-bottom-6xs"]}],"value":"Versailles Palace & Gardens Full Access Ticket & Audio Guide"},"subtitle":{"tag":"p","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-969696"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-medium"]},{"name":"line-height","label":"Line height","isPrimary":true,"classes":["sw-line-height-normal"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-none","sw-padding-bottom-5xs"]}],"value":"Enjoy 1 or 2 days full access to Versailles' whole domain, including the palace, Trianon, Marie Antoinette's Estate and gardens. Benefit from an audio guide in the palace. Upgrade and see the famous Musical Gardens or Fountain Show."},"button":{"tag":"a","type":"button","primaryStyles":[{"name":"size-color","label":"Text Size/Color","isPrimary":true,"classes":["sw-font-size-s","sw-text-color-353535"]},{"name":"font-family","label":"Font family","isPrimary":true,"classes":["sw-font-family-default"]},{"name":"font-weight","label":"Font weight","isPrimary":true,"classes":["sw-font-weight-semibold"]},{"name":"border-radius","label":"Roundness","isPrimary":true,"classes":["sw-border-radius-m"]},{"name":"background-color","label":"Background color","isPrimary":true,"classes":["sw-background-color-ffe019"]},{"name":"padding-left-right","label":"Padding left/right","isPrimary":true,"classes":["sw-padding-left-2xs","sw-padding-right-2xs"]},{"name":"padding-top-bottom","label":"Padding top/bottom","isPrimary":true,"classes":["sw-padding-top-5xs","sw-padding-bottom-5xs"]},{"name":"border","label":"Border","isPrimary":true,"classes":["sw-border-style-none","sw-border-width-xs","sw-border-color-000000"]},{"name":"letter-spacing","label":"Letter spacing","isPrimary":true,"classes":["sw-letter-spacing-normal"]}],"otherStyles":[{"name":"others","label":"Others","isPrimary":true,"classes":["sw-text-decoration-no-underline","hover:sw-text-decoration-no-underline","sw-display-inline-block"]}],"label":"Button label","action":{"type":"navigate","options":{"url":{"destination":"","target":""}}}}}]},"filters":{"type":"array","item_type":"#/elements/definitions/filterItem","items":[]}},"type":null,"collection":{"dataSourceTypes":["airtable","softr","gsheet"],"dataSource":{"type":"airtable","airtable":{"url":"https://api.airtable.com/v0/appBUywxfJ4m2GWMR/Speaking%20Engagements","baseId":"appBUywxfJ4m2GWMR","tableName":"Speaking Engagements","viewName":"Grid view"},"softr":{"applicationId":"cf1af38d-12bb-46e0-967b-1e76b59131da","collectionId":""},"gsheet":{},"fieldMapping":[{"id":"imageOrVideo","name":"Image/Video","enabled":true,"mappedTo":"Link","showInUI":true,"isStatic":false},{"id":"title","name":"Title","enabled":true,"mappedTo":"Title","showInUI":true,"isStatic":false},{"id":"subtitle","name":"Subtitle","enabled":true,"mappedTo":"Organisation","showInUI":true,"isStatic":false},{"id":"url","name":"Url","enabled":true,"mappedTo":"","showInUI":false,"isStatic":false}],"id":"679d326d-952a-4505-b554-d6459d0a11cc","isComplete":true},"defaultFilter":"ALL","customFilters":{"logical_operator":"OR","conditions":[]},"itemsPerPage":"3","sortOptions":[{"field":"Link","direction":"asc","isDefault":true}],"searchOptions":{"fields":[]},"listItemClickAction":{"supportedActionTypes":["DO_NOTHING","OPEN_MEDIA","OPEN_DYNAMIC_EXTERNAL_URL","OPEN_DETAILS_PAGE"],"selectedActionType":"OPEN_MEDIA"},"mockData":[{"title":{"value":"Title"},"subtitle":{"value":"Subtitle"},"imageOrVideo":{"src":"https://softr-assets-eu-shared.s3.eu-central-1.amazonaws.com/studio/blocks/assets/list_video_placeholder.png"},"url":{"value":"https://example.com/"},"record":{"id":""}},{"title":{"value":"Title"},"subtitle":{"value":"Subtitle"},"imageOrVideo":{"src":"https://softr-assets-eu-shared.s3.eu-central-1.amazonaws.com/studio/blocks/assets/list_video_placeholder.png"},"url":{"value":"https://example.com/"},"record":{"id":""}},{"title":{"value":"Title"},"subtitle":{"value":"Subtitle"},"imageOrVideo":{"src":"https://softr-assets-eu-shared.s3.eu-central-1.amazonaws.com/studio/blocks/assets/list_video_placeholder.png"},"url":{"value":"https://example.com/"},"record":{"id":""}}],"possibleItemsPerPage":[{"value":6}],"dataSources":[{"id":"679d326d-952a-4505-b554-d6459d0a11cc","integrationId":"9b693ea2-fa40-4ae9-a659-7ab24adae20b","referenceType":"BLOCK","datasourceIntegrationType":"AIRTABLE","resourceIdentifier":{"keys":{"base":"appBUywxfJ4m2GWMR","view":"Grid view","table":"Speaking Engagements"}}}]},"enabled":"null","order":"null","updated":null,"visibility":{"userGroup":{"predefinedUserGroupType":"ALL_USERS","customUserGroupIds":[],"enabledPredefinedUserGroupTypes":["ALL_USERS","LOGGED_IN_USERS","NON_LOGGED_IN_USERS"]},"devices":null,"detailsPageRecordCondition":null},"settings":{},"container":null,"presets":null,"created_at":null,"compiled_markup":"
No results found, try adjusting your search and filters.
Something went wrong, contact us if refreshing doesn’t fix this.
-->