diff --git a/apps/sanity/src/app/globals.css b/apps/sanity/src/app/globals.css index 22a0589..a902cce 100644 --- a/apps/sanity/src/app/globals.css +++ b/apps/sanity/src/app/globals.css @@ -8,7 +8,7 @@ } .light { - --bg: #f6f6f6; + --bg: #fff; --text: #222222; --text-secondary: #666666; --primary: #4f46e5; @@ -20,3 +20,17 @@ --text-secondary: #999999; --primary: #4f46e5; } + +.light-gray { + --bg: #f6f6f6; + --text: #222222; + --text-secondary: #666666; + --primary: #4f46e5; +} + +.dark-gray { + --bg: #5b5b5b; + --text: #f6f6f6; + --text-secondary: #bababa; + --primary: #4f46e5; +} diff --git a/apps/sanity/src/components/SectionContainer/index.tsx b/apps/sanity/src/components/SectionContainer/index.tsx index 926f6f2..db6f48b 100644 --- a/apps/sanity/src/components/SectionContainer/index.tsx +++ b/apps/sanity/src/components/SectionContainer/index.tsx @@ -1,37 +1,68 @@ import { stegaClean } from "@sanity/client/stega"; +import imageUrlBuilder from "@sanity/image-url"; import { cn } from "@shared/ui"; +import { client } from "@/lib/api/client"; + import type { ISectionContainerProps } from "./types"; +const builder = imageUrlBuilder(client); + export default function SectionContainer({ children, className, sectionData, }: ISectionContainerProps) { - const { _key, marginTop, marginBottom, paddingX, paddingY, noMaxWidth } = - sectionData; + const { + _key, + marginTop, + marginBottom, + paddingX, + paddingY, + maxWidth, + backgroundColor, + backgroundImage, + } = sectionData; + + const backgroundImageUrl = backgroundImage + ? builder.image(backgroundImage).auto("format").fit("max").url() + : null; + const style = backgroundImageUrl + ? { + background: `url(${backgroundImageUrl}) no-repeat center/cover`, + } + : {}; const cleanMarginTop = stegaClean(marginTop); const cleanMarginBottom = stegaClean(marginBottom); + const cleanBackgroundColor = stegaClean(backgroundColor); + const cleanMaxWidth = stegaClean(maxWidth); return (
{children} diff --git a/apps/sanity/src/components/SectionContainer/types.ts b/apps/sanity/src/components/SectionContainer/types.ts index dabb3e4..0b0e928 100644 --- a/apps/sanity/src/components/SectionContainer/types.ts +++ b/apps/sanity/src/components/SectionContainer/types.ts @@ -1,10 +1,14 @@ +import type { SectionHero } from "@/generated/extracted-types"; + interface ISectionData { _key: string; paddingX?: "none"; paddingY?: "none"; marginTop?: "none" | "base" | "lg"; marginBottom?: "none" | "base" | "lg"; - noMaxWidth?: boolean; + maxWidth?: SectionHero["maxWidth"]; + backgroundColor?: SectionHero["backgroundColor"]; + backgroundImage?: SectionHero["backgroundImage"]; } export interface ISectionContainerProps { diff --git a/apps/sanity/src/contentSections/Blog/schema.ts b/apps/sanity/src/contentSections/Blog/schema.ts index 41d5f37..2d434f2 100644 --- a/apps/sanity/src/contentSections/Blog/schema.ts +++ b/apps/sanity/src/contentSections/Blog/schema.ts @@ -5,7 +5,7 @@ import customRichText from "@/lib/schemas/customRichText"; import { CommonGroup, commonGroups, - sectionMarginFields, + sectionCommonFields, } from "../commonFields"; export const blogPost = defineType({ @@ -90,7 +90,7 @@ export default { of: [{ type: blogPost.name }], validation: (Rule) => Rule.required(), }), - ...sectionMarginFields, + ...sectionCommonFields, ], preview: { select: { diff --git a/apps/sanity/src/contentSections/CardsGrid/schema.ts b/apps/sanity/src/contentSections/CardsGrid/schema.ts index 0fa8f55..01d6ef1 100644 --- a/apps/sanity/src/contentSections/CardsGrid/schema.ts +++ b/apps/sanity/src/contentSections/CardsGrid/schema.ts @@ -5,7 +5,7 @@ import customImage from "@/lib/schemas/customImage"; import { CommonGroup, commonGroups, - sectionMarginFields, + sectionCommonFields, } from "../commonFields"; const featurePointStyles = [ @@ -108,7 +108,7 @@ export default { of: [{ type: "defaultCard" }], validation: (Rule) => Rule.required().min(1), }), - ...sectionMarginFields, + ...sectionCommonFields, ], preview: { select: { diff --git a/apps/sanity/src/contentSections/carousels/SimpleCarousel/index.tsx b/apps/sanity/src/contentSections/Carousel/index.tsx similarity index 75% rename from apps/sanity/src/contentSections/carousels/SimpleCarousel/index.tsx rename to apps/sanity/src/contentSections/Carousel/index.tsx index 82c7cc9..15fb0d9 100644 --- a/apps/sanity/src/contentSections/carousels/SimpleCarousel/index.tsx +++ b/apps/sanity/src/contentSections/Carousel/index.tsx @@ -1,23 +1,23 @@ import { stegaClean } from "@sanity/client/stega"; import EmptyBlock from "@shared/ui/components/EmptyBlock"; -import { SimpleCarousel as SimpleCarouselUI } from "@shared/ui"; +import { Carousel as CarouselUI } from "@shared/ui"; import { prepareImageProps } from "@/lib/adapters/prepareImageProps"; import { prepareRichTextProps } from "@/lib/adapters/prepareRichTextProps"; import SectionContainer from "@/components/SectionContainer"; -import type { ISimpleCarouselProps } from "./types"; +import type { ICarouselProps } from "./types"; -export default function SimpleCarousel({ data }: ISimpleCarouselProps) { +export default function Carousel({ data }: ICarouselProps) { if (!data) return null; - const { text, slides, fullWidth, params } = data; + const { text, slides, params } = data; const effect = stegaClean(data.effect); const { loop, slidesPerView, spaceBetween } = params || {}; if (!slides || slides.length === 0) - return ; + return ; const carouselSlides = slides.map((slide) => ({ image: prepareImageProps(slide.image), @@ -30,10 +30,9 @@ export default function SimpleCarousel({ data }: ISimpleCarouselProps) { sectionData={{ ...data, paddingX: "none", - noMaxWidth: fullWidth, }} > - Rule.required(), }), defineField({ @@ -73,11 +73,6 @@ export default { }, initialValue: "slide", }), - defineField({ - name: "fullWidth", - type: "boolean", - group: CommonGroup.Style, - }), defineField({ name: "params", type: "object", @@ -97,14 +92,14 @@ export default { }), ], }), - ...sectionMarginFields, + ...sectionCommonFields, ], preview: { select: { slides: "slides", }, prepare: ({ slides }: any) => ({ - title: `Simple Carousel - ${slides.length} slides`, + title: `Carousel - ${slides.length} slides`, }), }, }; diff --git a/apps/sanity/src/contentSections/Carousel/types.ts b/apps/sanity/src/contentSections/Carousel/types.ts new file mode 100644 index 0000000..11d6a54 --- /dev/null +++ b/apps/sanity/src/contentSections/Carousel/types.ts @@ -0,0 +1,7 @@ +import { type SectionCarousel } from "@/generated/extracted-types"; + +export interface ICarouselProps { + data: SectionCarousel & { + _key: string; + }; +} diff --git a/apps/sanity/src/contentSections/Copy/schema.ts b/apps/sanity/src/contentSections/Copy/schema.ts index 3a36298..a2e8e1b 100644 --- a/apps/sanity/src/contentSections/Copy/schema.ts +++ b/apps/sanity/src/contentSections/Copy/schema.ts @@ -5,7 +5,7 @@ import customRichText from "@/lib/schemas/customRichText"; import { CommonGroup, commonGroups, - sectionMarginFields, + sectionCommonFields, } from "../commonFields"; export default { @@ -26,11 +26,11 @@ export default { defineField({ name: "isReversedOnMobile", type: "boolean", - group: CommonGroup.Style, + group: CommonGroup.Style, initialValue: false, validation: (Rule) => Rule.required(), }), - ...sectionMarginFields, + ...sectionCommonFields, ], preview: { select: { diff --git a/apps/sanity/src/contentSections/Hero/schema.ts b/apps/sanity/src/contentSections/Hero/schema.ts index 2fc189d..6c87d5d 100644 --- a/apps/sanity/src/contentSections/Hero/schema.ts +++ b/apps/sanity/src/contentSections/Hero/schema.ts @@ -6,7 +6,7 @@ import customLink from "@/lib/schemas/customLink"; import { CommonGroup, commonGroups, - sectionMarginFields, + sectionCommonFields, } from "../commonFields"; export default { @@ -39,7 +39,7 @@ export default { of: [{ type: customLink.name }], validation: (Rule) => Rule.required(), }), - ...sectionMarginFields, + ...sectionCommonFields, ], preview: { select: { diff --git a/apps/sanity/src/contentSections/LinksList/schema.ts b/apps/sanity/src/contentSections/LinksList/schema.ts index 7fe2c17..25e1aad 100644 --- a/apps/sanity/src/contentSections/LinksList/schema.ts +++ b/apps/sanity/src/contentSections/LinksList/schema.ts @@ -6,7 +6,7 @@ import customLink from "@/lib/schemas/customLink"; import { CommonGroup, commonGroups, - sectionMarginFields, + sectionCommonFields, } from "../commonFields"; export default { @@ -38,7 +38,7 @@ export default { validation: (Rule) => Rule.required(), initialValue: AlignVariant.Left, }), - ...sectionMarginFields, + ...sectionCommonFields, ], preview: { select: { diff --git a/apps/sanity/src/contentSections/Logos/schema.ts b/apps/sanity/src/contentSections/Logos/schema.ts index 61edf00..58c2d97 100644 --- a/apps/sanity/src/contentSections/Logos/schema.ts +++ b/apps/sanity/src/contentSections/Logos/schema.ts @@ -7,7 +7,7 @@ import customLink from "@/lib/schemas/customLink"; import { CommonGroup, commonGroups, - sectionMarginFields, + sectionCommonFields, } from "../commonFields"; export const logoItem = defineType({ @@ -78,7 +78,7 @@ export default { validation: (Rule) => Rule.required(), initialValue: AlignVariant.Left, }), - ...sectionMarginFields, + ...sectionCommonFields, ], preview: { prepare: () => ({ diff --git a/apps/sanity/src/contentSections/Pricing/types.ts b/apps/sanity/src/contentSections/Pricing/types.ts deleted file mode 100644 index 50948eb..0000000 --- a/apps/sanity/src/contentSections/Pricing/types.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { type SectionPricing } from "@/generated/extracted-types"; - -export interface IPricingSectionProps { - data: SectionPricing & { - _key: string; - }; -} diff --git a/apps/sanity/src/contentSections/Pricing/index.tsx b/apps/sanity/src/contentSections/PricingTable/index.tsx similarity index 66% rename from apps/sanity/src/contentSections/Pricing/index.tsx rename to apps/sanity/src/contentSections/PricingTable/index.tsx index 4f6ce28..d449ec2 100644 --- a/apps/sanity/src/contentSections/Pricing/index.tsx +++ b/apps/sanity/src/contentSections/PricingTable/index.tsx @@ -1,16 +1,16 @@ import EmptyBlock from "@shared/ui/components/EmptyBlock"; -import { Pricing } from "@shared/ui"; +import { PricingTable as PricingTableUI } from "@shared/ui"; import { prepareImageProps } from "@/lib/adapters/prepareImageProps"; import { prepareLinkProps } from "@/lib/adapters/prepareLinkProps"; import SectionContainer from "@/components/SectionContainer"; -import type { IPricingSectionProps } from "./types"; +import type { IPricingTableProps } from "./types"; -export default function PricingSection({ data }: IPricingSectionProps) { +export default function PricingTable({ data }: IPricingTableProps) { if (!data || data.tiers.length === 0) - return ; + return ; const { tiers } = data; @@ -22,7 +22,7 @@ export default function PricingSection({ data }: IPricingSectionProps) { return ( - + ); } diff --git a/apps/sanity/src/contentSections/Pricing/schema.ts b/apps/sanity/src/contentSections/PricingTable/schema.ts similarity index 91% rename from apps/sanity/src/contentSections/Pricing/schema.ts rename to apps/sanity/src/contentSections/PricingTable/schema.ts index 0e1cd78..a2eced4 100644 --- a/apps/sanity/src/contentSections/Pricing/schema.ts +++ b/apps/sanity/src/contentSections/PricingTable/schema.ts @@ -1,7 +1,7 @@ import { CommonGroup, commonGroups, - sectionMarginFields, + sectionCommonFields, } from "@/contentSections/commonFields"; import { defineField, defineType } from "sanity"; @@ -9,9 +9,9 @@ import customImage from "@/lib/schemas/customImage"; import customLink from "@/lib/schemas/customLink"; export const pricingTier = defineType({ - name: "pricingTier", + name: "pricingTableTier", type: "object", - title: "Pricing Tier", + title: "Pricing Table Tier", fields: [ defineField({ name: "name", @@ -57,8 +57,8 @@ export const pricingTier = defineType({ }); export default { - name: "section.pricing", - title: "Pricing", + name: "section.pricingTable", + title: "Pricing Table", type: "object", groups: commonGroups, fields: [ @@ -98,11 +98,11 @@ export default { }), ], }), - ...sectionMarginFields, + ...sectionCommonFields, ], preview: { prepare: () => ({ - title: `Pricing`, + title: `Pricing Table`, }), }, }; diff --git a/apps/sanity/src/contentSections/PricingTable/types.ts b/apps/sanity/src/contentSections/PricingTable/types.ts new file mode 100644 index 0000000..2fdda4b --- /dev/null +++ b/apps/sanity/src/contentSections/PricingTable/types.ts @@ -0,0 +1,7 @@ +import { type SectionPricingTable } from "@/generated/extracted-types"; + +export interface IPricingTableProps { + data: SectionPricingTable & { + _key: string; + }; +} diff --git a/apps/sanity/src/contentSections/StepGuide/schema.ts b/apps/sanity/src/contentSections/StepGuide/schema.ts index 6c878f3..015f2cd 100644 --- a/apps/sanity/src/contentSections/StepGuide/schema.ts +++ b/apps/sanity/src/contentSections/StepGuide/schema.ts @@ -1,7 +1,7 @@ import { CommonGroup, commonGroups, - sectionMarginFields, + sectionCommonFields, } from "@/contentSections/commonFields"; import { defineField, defineType } from "sanity"; @@ -52,7 +52,7 @@ export default { validation: (Rule) => Rule.required(), group: CommonGroup.Content, }), - ...sectionMarginFields, + ...sectionCommonFields, ], preview: { select: { diff --git a/apps/sanity/src/contentSections/ThreeDElement/schema.ts b/apps/sanity/src/contentSections/ThreeDElement/schema.ts index 49ad82a..f97f0b5 100644 --- a/apps/sanity/src/contentSections/ThreeDElement/schema.ts +++ b/apps/sanity/src/contentSections/ThreeDElement/schema.ts @@ -1,7 +1,7 @@ import { CommonGroup, commonGroups, - sectionMarginFields, + sectionCommonFields, } from "@/contentSections/commonFields"; import { defineField } from "sanity"; @@ -26,6 +26,6 @@ export default { initialValue: "donut", validation: (Rule) => Rule.required(), }), - ...sectionMarginFields, + ...sectionCommonFields, ], }; diff --git a/apps/sanity/src/contentSections/carousels/SimpleCarousel/types.ts b/apps/sanity/src/contentSections/carousels/SimpleCarousel/types.ts deleted file mode 100644 index 757bd5e..0000000 --- a/apps/sanity/src/contentSections/carousels/SimpleCarousel/types.ts +++ /dev/null @@ -1,7 +0,0 @@ -import type { SectionSimpleCarousel } from "@/generated/extracted-types"; - -export interface ISimpleCarouselProps { - data: SectionSimpleCarousel & { - _key: string; - }; -} diff --git a/apps/sanity/src/contentSections/carousels/WideSimpleCarousel/index.tsx b/apps/sanity/src/contentSections/carousels/WideSimpleCarousel/index.tsx deleted file mode 100644 index 55554fc..0000000 --- a/apps/sanity/src/contentSections/carousels/WideSimpleCarousel/index.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import EmptyBlock from "@shared/ui/components/EmptyBlock"; - -import { WideSimpleCarousel as WideSimpleCarouselUI } from "@shared/ui"; - -import { prepareImageProps } from "@/lib/adapters/prepareImageProps"; -import SectionContainer from "@/components/SectionContainer"; - -import type { IWideSimpleCarouselProps } from "./types"; - -export default function WideSimpleCarousel({ data }: IWideSimpleCarouselProps) { - if (!data) return null; - - const { slides } = data; - - if (!slides || slides.length === 0) - return ; - - const carouselSlides = slides.map((slide) => ({ - image: prepareImageProps(slide.image), - })); - - return ( - - - - ); -} diff --git a/apps/sanity/src/contentSections/carousels/WideSimpleCarousel/schema.ts b/apps/sanity/src/contentSections/carousels/WideSimpleCarousel/schema.ts deleted file mode 100644 index 0feae3f..0000000 --- a/apps/sanity/src/contentSections/carousels/WideSimpleCarousel/schema.ts +++ /dev/null @@ -1,61 +0,0 @@ -import { defineField, defineType } from "sanity"; - -import customImage from "@/lib/schemas/customImage"; // Ensure this is correctly defined and imported - -import { - CommonGroup, - commonGroups, - sectionMarginFields, -} from "../../commonFields"; - -// Ensure these imports are correct and do not create circular dependencies - -export const wideSimpleCarouselCard = defineType({ - name: "wideSimpleCarouselCard", - type: "object", - title: "Wide Simple Carousel Card", - options: {}, - fields: [ - defineField({ - name: "image", - type: customImage.name, - validation: (Rule) => Rule.required(), - }), - ], - preview: { - select: { - image: "image.image", - }, - prepare({ image }) { - return { - media: image, - }; - }, - }, -}); - -export default { - options: {}, - name: "section.wideSimpleCarousel", - title: "Wide Simple Carousel", - type: "object", - groups: commonGroups, - fields: [ - defineField({ - group: CommonGroup.Style, - name: "slides", - type: "array", - of: [{ type: wideSimpleCarouselCard.name }], - validation: (Rule) => Rule.required(), - }), - ...sectionMarginFields, - ], - preview: { - select: { - slides: "slides.length", - }, - prepare: ({ slides }: any) => ({ - title: `Wide Simple Carousel - ${slides.length} slides`, - }), - }, -}; diff --git a/apps/sanity/src/contentSections/carousels/WideSimpleCarousel/types.ts b/apps/sanity/src/contentSections/carousels/WideSimpleCarousel/types.ts deleted file mode 100644 index 7d3f13c..0000000 --- a/apps/sanity/src/contentSections/carousels/WideSimpleCarousel/types.ts +++ /dev/null @@ -1,7 +0,0 @@ -import type { SectionWideSimpleCarousel } from "@/generated/extracted-types"; - -export interface IWideSimpleCarouselProps { - data: SectionWideSimpleCarousel & { - _key: string; - }; -} diff --git a/apps/sanity/src/contentSections/commonFields.tsx b/apps/sanity/src/contentSections/commonFields.tsx index 5352192..6564498 100644 --- a/apps/sanity/src/contentSections/commonFields.tsx +++ b/apps/sanity/src/contentSections/commonFields.tsx @@ -33,7 +33,7 @@ export const themeField = defineField({ validation: (Rule) => Rule.required(), }); -export const sectionMarginFields = [ +export const sectionCommonFields = [ defineField({ name: "marginTop", type: "string", @@ -64,4 +64,41 @@ export const sectionMarginFields = [ initialValue: "base", validation: (Rule) => Rule.required(), }), + defineField({ + name: "maxWidth", + type: "string", + group: CommonGroup.Style, + options: { + list: [ + { title: "none", value: "none" }, + { title: "base", value: "base" }, + { title: "small", value: "small" }, + ], + layout: "dropdown", + }, + initialValue: "base", + validation: (Rule) => Rule.required(), + }), + defineField({ + name: "backgroundColor", + type: "string", + group: CommonGroup.Style, + options: { + list: [ + { title: "light", value: "light" }, + { title: "light gray", value: "light-gray" }, + { title: "dark gray", value: "dark-gray" }, + { title: "dark", value: "dark" }, + { title: "none", value: "none" }, + ], + layout: "dropdown", + }, + initialValue: "none", + validation: (Rule) => Rule.required(), + }), + defineField({ + name: "backgroundImage", + type: "image", + group: CommonGroup.Style, + }), ]; diff --git a/apps/sanity/src/contentSections/index.tsx b/apps/sanity/src/contentSections/index.tsx index c709043..c5c5af4 100644 --- a/apps/sanity/src/contentSections/index.tsx +++ b/apps/sanity/src/contentSections/index.tsx @@ -1,13 +1,12 @@ // start of section imports import Blog from "./Blog"; import CardsGrid from "./CardsGrid"; -import SimpleCarousel from "./carousels/SimpleCarousel"; -import WideSimpleCarousel from "./carousels/WideSimpleCarousel"; +import Carousel from "./Carousel"; import Copy from "./Copy"; import Hero from "./Hero"; import LinksList from "./LinksList"; import Logos from "./Logos"; -import Pricing from "./Pricing"; +import Pricing from "./PricingTable"; import StepGuide from "./StepGuide"; import ThreeDElement from "./ThreeDElement"; @@ -20,8 +19,7 @@ export const sections: Record = { "section.linksList": LinksList, "section.cardsGrid": CardsGrid, "section.blog": Blog, - "section.simpleCarousel": SimpleCarousel, - "section.wideSimpleCarousel": WideSimpleCarousel, + "section.carousel": Carousel, "section.hero": Hero, "section.pricing": Pricing, "section.stepGuide": StepGuide, diff --git a/apps/sanity/src/generated/extracted-schema.json b/apps/sanity/src/generated/extracted-schema.json index 14c7c6e..0daac95 100644 --- a/apps/sanity/src/generated/extracted-schema.json +++ b/apps/sanity/src/generated/extracted-schema.json @@ -400,6 +400,118 @@ ] }, "optional": false + }, + "maxWidth": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "small" + } + ] + }, + "optional": false + }, + "backgroundColor": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "light" + }, + { + "type": "string", + "value": "light-gray" + }, + { + "type": "string", + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" + } + ] + }, + "optional": false + }, + "backgroundImage": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true + }, + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true + }, + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } + } + } + }, + "optional": true } } } @@ -488,12 +600,124 @@ ] }, "optional": false + }, + "maxWidth": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "small" + } + ] + }, + "optional": false + }, + "backgroundColor": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "light" + }, + { + "type": "string", + "value": "light-gray" + }, + { + "type": "string", + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" + } + ] + }, + "optional": false + }, + "backgroundImage": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true + }, + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true + }, + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } + } + } + }, + "optional": true } } } }, { - "name": "section.pricing", + "name": "section.pricingTable", "type": "type", "value": { "type": "object", @@ -502,7 +726,7 @@ "type": "objectAttribute", "value": { "type": "string", - "value": "section.pricing" + "value": "section.pricingTable" } }, "tiers": { @@ -521,7 +745,7 @@ }, "rest": { "type": "inline", - "name": "pricingTier" + "name": "pricingTableTier" } } }, @@ -605,115 +829,124 @@ ] }, "optional": false - } - } - } - }, - { - "name": "section.hero", - "type": "type", - "value": { - "type": "object", - "attributes": { - "_type": { - "type": "objectAttribute", - "value": { - "type": "string", - "value": "section.hero" - } }, - "title": { + "maxWidth": { "type": "objectAttribute", "value": { - "type": "string" + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "small" + } + ] }, "optional": false }, - "text": { - "type": "objectAttribute", - "value": { - "type": "inline", - "name": "customRichText" - }, - "optional": true - }, - "image": { - "type": "objectAttribute", - "value": { - "type": "inline", - "name": "customImage" - }, - "optional": true - }, - "links": { - "type": "objectAttribute", - "value": { - "type": "array", - "of": { - "type": "object", - "attributes": { - "_key": { - "type": "objectAttribute", - "value": { - "type": "string" - } - } - }, - "rest": { - "type": "inline", - "name": "customLink" - } - } - }, - "optional": false - }, - "marginTop": { + "backgroundColor": { "type": "objectAttribute", "value": { "type": "union", "of": [ { "type": "string", - "value": "none" + "value": "light" }, { "type": "string", - "value": "base" + "value": "light-gray" }, { "type": "string", - "value": "lg" + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" } ] }, "optional": false }, - "marginBottom": { + "backgroundImage": { "type": "objectAttribute", "value": { - "type": "union", - "of": [ - { - "type": "string", - "value": "none" + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true }, - { - "type": "string", - "value": "base" + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true }, - { - "type": "string", - "value": "lg" + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } } - ] + } }, - "optional": false + "optional": true } } } }, { - "name": "section.wideSimpleCarousel", + "name": "section.hero", "type": "type", "value": { "type": "object", @@ -722,10 +955,33 @@ "type": "objectAttribute", "value": { "type": "string", - "value": "section.wideSimpleCarousel" + "value": "section.hero" } }, - "slides": { + "title": { + "type": "objectAttribute", + "value": { + "type": "string" + }, + "optional": false + }, + "text": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "customRichText" + }, + "optional": true + }, + "image": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "customImage" + }, + "optional": true + }, + "links": { "type": "objectAttribute", "value": { "type": "array", @@ -741,7 +997,7 @@ }, "rest": { "type": "inline", - "name": "wideSimpleCarouselCard" + "name": "customLink" } } }, @@ -788,12 +1044,124 @@ ] }, "optional": false + }, + "maxWidth": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "small" + } + ] + }, + "optional": false + }, + "backgroundColor": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "light" + }, + { + "type": "string", + "value": "light-gray" + }, + { + "type": "string", + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" + } + ] + }, + "optional": false + }, + "backgroundImage": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true + }, + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true + }, + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } + } + } + }, + "optional": true } } } }, { - "name": "section.simpleCarousel", + "name": "section.carousel", "type": "type", "value": { "type": "object", @@ -802,7 +1170,7 @@ "type": "objectAttribute", "value": { "type": "string", - "value": "section.simpleCarousel" + "value": "section.carousel" } }, "text": { @@ -829,7 +1197,7 @@ }, "rest": { "type": "inline", - "name": "simpleCarouselCard" + "name": "carouselCard" } } }, @@ -868,13 +1236,6 @@ }, "optional": true }, - "fullWidth": { - "type": "objectAttribute", - "value": { - "type": "boolean" - }, - "optional": true - }, "params": { "type": "objectAttribute", "value": { @@ -946,12 +1307,345 @@ ] }, "optional": false + }, + "maxWidth": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "small" + } + ] + }, + "optional": false + }, + "backgroundColor": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "light" + }, + { + "type": "string", + "value": "light-gray" + }, + { + "type": "string", + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" + } + ] + }, + "optional": false + }, + "backgroundImage": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true + }, + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true + }, + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } + } + } + }, + "optional": true + } + } + } + }, + { + "name": "section.blog", + "type": "type", + "value": { + "type": "object", + "attributes": { + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "section.blog" + } + }, + "text": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "customRichText" + }, + "optional": false + }, + "style": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "three-column" + }, + { + "type": "string", + "value": "three-column-with-images" + }, + { + "type": "string", + "value": "three-column-with-background-images" + } + ] + }, + "optional": false + }, + "posts": { + "type": "objectAttribute", + "value": { + "type": "array", + "of": { + "type": "object", + "attributes": { + "_key": { + "type": "objectAttribute", + "value": { + "type": "string" + } + } + }, + "rest": { + "type": "inline", + "name": "blogSection.post" + } + } + }, + "optional": false + }, + "marginTop": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "lg" + } + ] + }, + "optional": false + }, + "marginBottom": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "lg" + } + ] + }, + "optional": false + }, + "maxWidth": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "small" + } + ] + }, + "optional": false + }, + "backgroundColor": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "light" + }, + { + "type": "string", + "value": "light-gray" + }, + { + "type": "string", + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" + } + ] + }, + "optional": false + }, + "backgroundImage": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true + }, + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true + }, + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } + } + } + }, + "optional": true } } } }, { - "name": "section.blog", + "name": "section.cardsGrid", "type": "type", "value": { "type": "object", @@ -960,39 +1654,31 @@ "type": "objectAttribute", "value": { "type": "string", - "value": "section.blog" + "value": "section.cardsGrid" } }, - "text": { - "type": "objectAttribute", - "value": { - "type": "inline", - "name": "customRichText" - }, - "optional": false - }, - "style": { + "columns": { "type": "objectAttribute", "value": { "type": "union", "of": [ { - "type": "string", - "value": "three-column" + "type": "number", + "value": 1 }, { - "type": "string", - "value": "three-column-with-images" + "type": "number", + "value": 2 }, { - "type": "string", - "value": "three-column-with-background-images" + "type": "number", + "value": 3 } ] }, "optional": false }, - "posts": { + "items": { "type": "objectAttribute", "value": { "type": "array", @@ -1008,7 +1694,7 @@ }, "rest": { "type": "inline", - "name": "blogSection.post" + "name": "defaultCard" } } }, @@ -1055,107 +1741,118 @@ ] }, "optional": false - } - } - } - }, - { - "name": "section.cardsGrid", - "type": "type", - "value": { - "type": "object", - "attributes": { - "_type": { - "type": "objectAttribute", - "value": { - "type": "string", - "value": "section.cardsGrid" - } }, - "columns": { + "maxWidth": { "type": "objectAttribute", "value": { "type": "union", "of": [ { - "type": "number", - "value": 1 + "type": "string", + "value": "none" }, { - "type": "number", - "value": 2 + "type": "string", + "value": "base" }, { - "type": "number", - "value": 3 + "type": "string", + "value": "small" } ] }, "optional": false }, - "items": { - "type": "objectAttribute", - "value": { - "type": "array", - "of": { - "type": "object", - "attributes": { - "_key": { - "type": "objectAttribute", - "value": { - "type": "string" - } - } - }, - "rest": { - "type": "inline", - "name": "defaultCard" - } - } - }, - "optional": false - }, - "marginTop": { + "backgroundColor": { "type": "objectAttribute", "value": { "type": "union", "of": [ { "type": "string", - "value": "none" + "value": "light" }, { "type": "string", - "value": "base" + "value": "light-gray" }, { "type": "string", - "value": "lg" + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" } ] }, "optional": false }, - "marginBottom": { + "backgroundImage": { "type": "objectAttribute", "value": { - "type": "union", - "of": [ - { - "type": "string", - "value": "none" + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true }, - { - "type": "string", - "value": "base" + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true }, - { - "type": "string", - "value": "lg" + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } } - ] + } }, - "optional": false + "optional": true } } } @@ -1254,9 +1951,121 @@ "type": "string", "value": "lg" } - ] + ] + }, + "optional": false + }, + "maxWidth": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "small" + } + ] + }, + "optional": false + }, + "backgroundColor": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "light" + }, + { + "type": "string", + "value": "light-gray" + }, + { + "type": "string", + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" + } + ] + }, + "optional": false + }, + "backgroundImage": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true + }, + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true + }, + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } + } + } }, - "optional": false + "optional": true } } } @@ -1358,6 +2167,118 @@ ] }, "optional": false + }, + "maxWidth": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "small" + } + ] + }, + "optional": false + }, + "backgroundColor": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "light" + }, + { + "type": "string", + "value": "light-gray" + }, + { + "type": "string", + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" + } + ] + }, + "optional": false + }, + "backgroundImage": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true + }, + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true + }, + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } + } + } + }, + "optional": true } } } @@ -1445,6 +2366,118 @@ ] }, "optional": false + }, + "maxWidth": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "none" + }, + { + "type": "string", + "value": "base" + }, + { + "type": "string", + "value": "small" + } + ] + }, + "optional": false + }, + "backgroundColor": { + "type": "objectAttribute", + "value": { + "type": "union", + "of": [ + { + "type": "string", + "value": "light" + }, + { + "type": "string", + "value": "light-gray" + }, + { + "type": "string", + "value": "dark-gray" + }, + { + "type": "string", + "value": "dark" + }, + { + "type": "string", + "value": "none" + } + ] + }, + "optional": false + }, + "backgroundImage": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "asset": { + "type": "objectAttribute", + "value": { + "type": "object", + "attributes": { + "_ref": { + "type": "objectAttribute", + "value": { + "type": "string" + } + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "reference" + } + }, + "_weak": { + "type": "objectAttribute", + "value": { + "type": "boolean" + }, + "optional": true + } + }, + "dereferencesTo": "sanity.imageAsset" + }, + "optional": true + }, + "hotspot": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageHotspot" + }, + "optional": true + }, + "crop": { + "type": "objectAttribute", + "value": { + "type": "inline", + "name": "sanity.imageCrop" + }, + "optional": true + }, + "_type": { + "type": "objectAttribute", + "value": { + "type": "string", + "value": "image" + } + } + } + }, + "optional": true } } } @@ -1488,7 +2521,7 @@ } }, { - "name": "pricingTier", + "name": "pricingTableTier", "type": "type", "value": { "type": "object", @@ -1497,7 +2530,7 @@ "type": "objectAttribute", "value": { "type": "string", - "value": "pricingTier" + "value": "pricingTableTier" } }, "name": { @@ -1558,31 +2591,7 @@ } }, { - "name": "wideSimpleCarouselCard", - "type": "type", - "value": { - "type": "object", - "attributes": { - "_type": { - "type": "objectAttribute", - "value": { - "type": "string", - "value": "wideSimpleCarouselCard" - } - }, - "image": { - "type": "objectAttribute", - "value": { - "type": "inline", - "name": "customImage" - }, - "optional": false - } - } - } - }, - { - "name": "simpleCarouselCard", + "name": "carouselCard", "type": "type", "value": { "type": "object", @@ -1591,7 +2600,7 @@ "type": "objectAttribute", "value": { "type": "string", - "value": "simpleCarouselCard" + "value": "carouselCard" } }, "text": { @@ -2399,22 +3408,7 @@ }, "rest": { "type": "inline", - "name": "section.simpleCarousel" - } - }, - { - "type": "object", - "attributes": { - "_key": { - "type": "objectAttribute", - "value": { - "type": "string" - } - } - }, - "rest": { - "type": "inline", - "name": "section.wideSimpleCarousel" + "name": "section.carousel" } }, { @@ -2444,7 +3438,7 @@ }, "rest": { "type": "inline", - "name": "section.pricing" + "name": "section.pricingTable" } }, { diff --git a/apps/sanity/src/generated/extracted-types.ts b/apps/sanity/src/generated/extracted-types.ts index 460b24e..5b73e66 100644 --- a/apps/sanity/src/generated/extracted-types.ts +++ b/apps/sanity/src/generated/extracted-types.ts @@ -73,6 +73,19 @@ export type SectionThreeDElement = { model: "donut" | "globe" | "kubik-rubik"; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; export type SectionStepGuide = { @@ -85,14 +98,27 @@ export type SectionStepGuide = { link: CustomLink; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; -export type SectionPricing = { - _type: "section.pricing"; +export type SectionPricingTable = { + _type: "section.pricingTable"; tiers: Array< { _key: string; - } & PricingTier + } & PricingTableTier >; yearlyDiscountPercentage: number; extraServiceEnabled?: boolean; @@ -102,6 +128,19 @@ export type SectionPricing = { }; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; export type SectionHero = { @@ -116,29 +155,30 @@ export type SectionHero = { >; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; -export type SectionWideSimpleCarousel = { - _type: "section.wideSimpleCarousel"; - slides: Array< - { - _key: string; - } & WideSimpleCarouselCard - >; - marginTop: "none" | "base" | "lg"; - marginBottom: "none" | "base" | "lg"; -}; - -export type SectionSimpleCarousel = { - _type: "section.simpleCarousel"; +export type SectionCarousel = { + _type: "section.carousel"; text?: CustomRichText; slides: Array< { _key: string; - } & SimpleCarouselCard + } & CarouselCard >; effect?: "slide" | "coverflow" | "cube" | "fade" | "flip" | "cards"; - fullWidth?: boolean; params?: { loop?: boolean; slidesPerView?: number; @@ -146,6 +186,19 @@ export type SectionSimpleCarousel = { }; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; export type SectionBlog = { @@ -162,6 +215,19 @@ export type SectionBlog = { >; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; export type SectionCardsGrid = { @@ -174,6 +240,19 @@ export type SectionCardsGrid = { >; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; export type SectionLinksList = { @@ -186,6 +265,19 @@ export type SectionLinksList = { alignVariant: "left" | "center" | "right"; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; export type SectionLogos = { @@ -198,6 +290,19 @@ export type SectionLogos = { alignVariant: "left" | "center" | "right"; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; export type SectionCopy = { @@ -210,6 +315,19 @@ export type SectionCopy = { isReversedOnMobile: boolean; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "none" | "base" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; }; export type StepGuideItem = { @@ -219,8 +337,8 @@ export type StepGuideItem = { image: CustomImage; }; -export type PricingTier = { - _type: "pricingTier"; +export type PricingTableTier = { + _type: "pricingTableTier"; name: string; icon: CustomImage; price?: number; @@ -230,13 +348,8 @@ export type PricingTier = { popular?: boolean; }; -export type WideSimpleCarouselCard = { - _type: "wideSimpleCarouselCard"; - image: CustomImage; -}; - -export type SimpleCarouselCard = { - _type: "simpleCarouselCard"; +export type CarouselCard = { + _type: "carouselCard"; text?: CustomRichText; image: CustomImage; }; @@ -372,16 +485,13 @@ export type Page = { } & SectionBlog) | ({ _key: string; - } & SectionSimpleCarousel) - | ({ - _key: string; - } & SectionWideSimpleCarousel) + } & SectionCarousel) | ({ _key: string; } & SectionHero) | ({ _key: string; - } & SectionPricing) + } & SectionPricingTable) | ({ _key: string; } & SectionStepGuide) @@ -614,19 +724,17 @@ export type AllSanitySchemaTypes = | Geopoint | SectionThreeDElement | SectionStepGuide - | SectionPricing + | SectionPricingTable | SectionHero - | SectionWideSimpleCarousel - | SectionSimpleCarousel + | SectionCarousel | SectionBlog | SectionCardsGrid | SectionLinksList | SectionLogos | SectionCopy | StepGuideItem - | PricingTier - | WideSimpleCarouselCard - | SimpleCarouselCard + | PricingTableTier + | CarouselCard | BlogSectionPost | BasicRichText | Break @@ -650,7 +758,7 @@ export type AllSanitySchemaTypes = export declare const internalGroqTypeReferenceTo: unique symbol; // Source: ./src/lib/api/queries.ts // Variable: PAGE_BY_SLUG_QUERY -// Query: *[_type == "page" && pathname.current == $slug][0] { _id, header->{ ..., links[] { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } }, sectionsBody[] { ..., _type == "section.hero" => { ..., links[] { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } }, _type == "section.linksList" => { ..., links[] { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } }, _type == "section.cardsGrid" => { ..., items[] { ..., link { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } } }, _type == "section.logos" => { ..., items[] { ..., link { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } } }, _type == "section.blog" => { ..., posts[] { ..., link { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } } }, }, footer->{ ..., links[] { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } }, title, "slug": pathname.current, seoTitle, seoDescription, ogImage, robots, } +// Query: *[_type == "page" && pathname.current == $slug][0] { _id, header->{ ..., links[] { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } }, sectionsBody[] { ..., _type == "section.hero" => { ..., links[] { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } }, _type == "section.linksList" => { ..., links[] { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } }, _type == "section.cardsGrid" => { ..., items[] { ..., link { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } } }, _type == "section.logos" => { ..., items[] { ..., link { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } } }, _type == "section.blog" => { ..., posts[] { ..., link { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } } }, }, footer->{ ..., links[] { ...,type == "internal" => { url->{ _type == "page" => { "slug": [pathname.current], }, },} } }, title, "slug": pathname.current, seoTitle, seoDescription, ogImage, robots, theme, } export type PAGE_BY_SLUG_QUERYResult = { _id: string; header: { @@ -720,6 +828,19 @@ export type PAGE_BY_SLUG_QUERYResult = { }>; marginTop: "base" | "lg" | "none"; marginBottom: "base" | "lg" | "none"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; } | { _key: string; @@ -760,6 +881,50 @@ export type PAGE_BY_SLUG_QUERYResult = { }>; marginTop: "base" | "lg" | "none"; marginBottom: "base" | "lg" | "none"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; + } + | { + _key: string; + _type: "section.carousel"; + text?: CustomRichText; + slides: Array< + { + _key: string; + } & CarouselCard + >; + effect?: "cards" | "coverflow" | "cube" | "fade" | "flip" | "slide"; + params?: { + loop?: boolean; + slidesPerView?: number; + spaceBetween?: number; + }; + marginTop: "base" | "lg" | "none"; + marginBottom: "base" | "lg" | "none"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; } | { _key: string; @@ -772,6 +937,19 @@ export type PAGE_BY_SLUG_QUERYResult = { isReversedOnMobile: boolean; marginTop: "base" | "lg" | "none"; marginBottom: "base" | "lg" | "none"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; } | { _key: string; @@ -801,6 +979,19 @@ export type PAGE_BY_SLUG_QUERYResult = { }>; marginTop: "base" | "lg" | "none"; marginBottom: "base" | "lg" | "none"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; } | { _key: string; @@ -828,6 +1019,19 @@ export type PAGE_BY_SLUG_QUERYResult = { alignVariant: "center" | "left" | "right"; marginTop: "base" | "lg" | "none"; marginBottom: "base" | "lg" | "none"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; } | { _key: string; @@ -860,14 +1064,27 @@ export type PAGE_BY_SLUG_QUERYResult = { alignVariant: "center" | "left" | "right"; marginTop: "base" | "lg" | "none"; marginBottom: "base" | "lg" | "none"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; } | { _key: string; - _type: "section.pricing"; + _type: "section.pricingTable"; tiers: Array< { _key: string; - } & PricingTier + } & PricingTableTier >; yearlyDiscountPercentage: number; extraServiceEnabled?: boolean; @@ -877,25 +1094,19 @@ export type PAGE_BY_SLUG_QUERYResult = { }; marginTop: "base" | "lg" | "none"; marginBottom: "base" | "lg" | "none"; - } - | { - _key: string; - _type: "section.simpleCarousel"; - text?: CustomRichText; - slides: Array< - { - _key: string; - } & SimpleCarouselCard - >; - effect?: "cards" | "coverflow" | "cube" | "fade" | "flip" | "slide"; - fullWidth?: boolean; - params?: { - loop?: boolean; - slidesPerView?: number; - spaceBetween?: number; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; }; - marginTop: "base" | "lg" | "none"; - marginBottom: "base" | "lg" | "none"; } | { _key: string; @@ -908,6 +1119,19 @@ export type PAGE_BY_SLUG_QUERYResult = { link: CustomLink; marginTop: "base" | "lg" | "none"; marginBottom: "base" | "lg" | "none"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; } | { _key: string; @@ -915,17 +1139,19 @@ export type PAGE_BY_SLUG_QUERYResult = { model: "donut" | "globe" | "kubik-rubik"; marginTop: "base" | "lg" | "none"; marginBottom: "base" | "lg" | "none"; - } - | { - _key: string; - _type: "section.wideSimpleCarousel"; - slides: Array< - { - _key: string; - } & WideSimpleCarouselCard - >; - marginTop: "base" | "lg" | "none"; - marginBottom: "base" | "lg" | "none"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "dark-gray" | "dark" | "light-gray" | "light" | "none"; + backgroundImage?: { + asset?: { + _ref: string; + _type: "reference"; + _weak?: boolean; + [internalGroqTypeReferenceTo]?: "sanity.imageAsset"; + }; + hotspot?: SanityImageHotspot; + crop?: SanityImageCrop; + _type: "image"; + }; } > | null; footer: { @@ -976,4 +1202,5 @@ export type PAGE_BY_SLUG_QUERYResult = { _type: "image"; } | null; robots: "index" | "no-index" | null; + theme: "dark" | "light"; } | null; diff --git a/apps/sanity/src/lib/schemas/index.ts b/apps/sanity/src/lib/schemas/index.ts index 465dfe9..1725c37 100644 --- a/apps/sanity/src/lib/schemas/index.ts +++ b/apps/sanity/src/lib/schemas/index.ts @@ -1,9 +1,8 @@ import { blogPost } from "@/contentSections/Blog/schema"; import { defaultCard } from "@/contentSections/CardsGrid/schema"; -import { simpleCarouselCard } from "@/contentSections/carousels/SimpleCarousel/schema"; -import { wideSimpleCarouselCard } from "@/contentSections/carousels/WideSimpleCarousel/schema"; +import { carouselCard } from "@/contentSections/Carousel/schema"; import { logoItem } from "@/contentSections/Logos/schema"; -import { pricingTier } from "@/contentSections/Pricing/schema"; +import { pricingTier } from "@/contentSections/PricingTable/schema"; import { stepGuideItem } from "@/contentSections/StepGuide/schema"; import footer from "@/components/Footer/schema"; @@ -27,8 +26,7 @@ const schemas = [ richTextBreak, basicRichText, blogPost, - simpleCarouselCard, - wideSimpleCarouselCard, + carouselCard, pricingTier, stepGuideItem, ...sections, diff --git a/apps/sanity/src/lib/schemas/sections.ts b/apps/sanity/src/lib/schemas/sections.ts index 547148e..df09d7c 100644 --- a/apps/sanity/src/lib/schemas/sections.ts +++ b/apps/sanity/src/lib/schemas/sections.ts @@ -1,13 +1,12 @@ // start of section imports import blog from "@/contentSections/Blog/schema"; import cardsGrid from "@/contentSections/CardsGrid/schema"; -import simpleCarousel from "@/contentSections/carousels/SimpleCarousel/schema"; -import wideSimpleCarousel from "@/contentSections/carousels/WideSimpleCarousel/schema"; +import carousel from "@/contentSections/Carousel/schema"; import copy from "@/contentSections/Copy/schema"; import hero from "@/contentSections/Hero/schema"; import linksList from "@/contentSections/LinksList/schema"; import logos from "@/contentSections/Logos/schema"; -import pricing from "@/contentSections/Pricing/schema"; +import pricing from "@/contentSections/PricingTable/schema"; import stepGuideSchema from "@/contentSections/StepGuide/schema"; import threeDElement from "@/contentSections/ThreeDElement/schema"; @@ -20,8 +19,7 @@ const sections = [ linksList, cardsGrid, blog, - simpleCarousel, - wideSimpleCarousel, + carousel, hero, pricing, stepGuideSchema, diff --git a/apps/storyblok/src/app/globals.css b/apps/storyblok/src/app/globals.css index 22a0589..a902cce 100644 --- a/apps/storyblok/src/app/globals.css +++ b/apps/storyblok/src/app/globals.css @@ -8,7 +8,7 @@ } .light { - --bg: #f6f6f6; + --bg: #fff; --text: #222222; --text-secondary: #666666; --primary: #4f46e5; @@ -20,3 +20,17 @@ --text-secondary: #999999; --primary: #4f46e5; } + +.light-gray { + --bg: #f6f6f6; + --text: #222222; + --text-secondary: #666666; + --primary: #4f46e5; +} + +.dark-gray { + --bg: #5b5b5b; + --text: #f6f6f6; + --text-secondary: #bababa; + --primary: #4f46e5; +} diff --git a/apps/storyblok/src/app/layout.tsx b/apps/storyblok/src/app/layout.tsx index 96e5021..ddb239e 100644 --- a/apps/storyblok/src/app/layout.tsx +++ b/apps/storyblok/src/app/layout.tsx @@ -26,7 +26,7 @@ export default function RootLayout({ }) { return ( - + {children} diff --git a/apps/storyblok/src/components/SectionContainer/index.tsx b/apps/storyblok/src/components/SectionContainer/index.tsx index 76739f0..5c7a50f 100644 --- a/apps/storyblok/src/components/SectionContainer/index.tsx +++ b/apps/storyblok/src/components/SectionContainer/index.tsx @@ -11,28 +11,49 @@ export default function SectionContainer({ blok, className, }: ISectionContainerProps) { - const { _uid, paddingX, paddingY, marginTop, marginBottom, noMaxWidth } = - blok; + const { + _uid, + paddingX, + paddingY, + marginTop, + marginBottom, + maxWidth, + backgroundColor, + backgroundImage, + } = blok; + + const style = backgroundImage?.filename + ? { + background: `url(${backgroundImage.filename}) no-repeat center/cover`, + } + : {}; if (isDraftMode) { return (
{children} @@ -43,7 +64,7 @@ export default function SectionContainer({ return (
{children} diff --git a/apps/storyblok/src/components/SectionContainer/types.ts b/apps/storyblok/src/components/SectionContainer/types.ts index a77ee52..8c14d60 100644 --- a/apps/storyblok/src/components/SectionContainer/types.ts +++ b/apps/storyblok/src/components/SectionContainer/types.ts @@ -1,11 +1,14 @@ +import type { AssetStoryblok } from "@/generated/extracted-types"; import type { SbBlokData } from "@storyblok/react/rsc"; export interface ISectionContainer extends SbBlokData { + maxWidth?: "none" | "base" | "small"; marginTop?: "none" | "base" | "lg"; marginBottom?: "none" | "base" | "lg"; paddingX?: "none"; paddingY?: "none"; - noMaxWidth?: boolean; + backgroundColor?: "none" | "light" | "dark" | "light-gray" | "dark-gray"; + backgroundImage?: AssetStoryblok; } export interface ISectionContainerProps { diff --git a/apps/storyblok/src/constants/sbComponents.tsx b/apps/storyblok/src/constants/sbComponents.tsx index f24d543..fde01ff 100644 --- a/apps/storyblok/src/constants/sbComponents.tsx +++ b/apps/storyblok/src/constants/sbComponents.tsx @@ -1,13 +1,12 @@ // start of sb components imports import Blog from "@/contentSections/Blog"; import CardsGrid from "@/contentSections/CardsGrid"; -import SimpleCarousel from "@/contentSections/carousels/SimpleCarousel"; -import WideSimpleCarousel from "@/contentSections/carousels/WideSimpleCarousel"; +import Carousel from "src/contentSections/Carousel"; import Copy from "@/contentSections/Copy"; import Hero from "@/contentSections/Hero"; import LinksList from "@/contentSections/LinksList"; import Logos from "@/contentSections/Logos"; -import Pricing from "@/contentSections/Pricing"; +import Pricing from "src/contentSections/PricingTable"; import StepGuide from "@/contentSections/StepGuide"; import ThreeDElement from "@/contentSections/ThreeDElement"; @@ -27,10 +26,9 @@ export const COMPONENTS = { linksList: LinksList, cardsGrid: CardsGrid, blog: Blog, - simpleCarousel: SimpleCarousel, - wideSimpleCarousel: WideSimpleCarousel, + carousel: Carousel, hero: Hero, - pricing: Pricing, + pricingTable: Pricing, stepGuide: StepGuide, threeDElement: ThreeDElement, // end of sb components mapping diff --git a/apps/storyblok/src/contentSections/carousels/SimpleCarousel/index.tsx b/apps/storyblok/src/contentSections/Carousel/index.tsx similarity index 64% rename from apps/storyblok/src/contentSections/carousels/SimpleCarousel/index.tsx rename to apps/storyblok/src/contentSections/Carousel/index.tsx index 467413b..23296ba 100644 --- a/apps/storyblok/src/contentSections/carousels/SimpleCarousel/index.tsx +++ b/apps/storyblok/src/contentSections/Carousel/index.tsx @@ -1,25 +1,34 @@ import EmptyBlock from "@shared/ui/components/EmptyBlock"; -import { SimpleCarousel as SimpleCarouselUI } from "@shared/ui"; +import { Carousel as CarouselUI } from "@shared/ui"; import { prepareImageProps } from "@/lib/adapters/prepareImageProps"; import { prepareRichTextProps } from "@/lib/adapters/prepareRichTextProps"; import SectionContainer from "@/components/SectionContainer"; -import type { ISimpleCarouselProps } from "./types"; +import type { ICarouselProps } from "./types"; -export default function SimpleCarousel({ blok }: ISimpleCarouselProps) { +export default function Carousel({ blok }: ICarouselProps) { const { text, slides, effect, fullWidth, params } = blok; const { loop, slidesPerView, spaceBetween } = params?.[0] || {}; if (!slides || slides.length === 0) - return ; + return ; const carouselSlides = slides.map((slide) => ({ image: prepareImageProps(slide.image[0]), text: prepareRichTextProps(slide.text?.[0]), effect, })); + const carouselParams = { + loop, + slidesPerView: slidesPerView + ? parseInt(slidesPerView) + : effect === "cards" + ? 1 + : 3, + spaceBetween: spaceBetween ? parseInt(spaceBetween) : 20, + }; return ( - ); diff --git a/apps/storyblok/src/contentSections/Carousel/types.ts b/apps/storyblok/src/contentSections/Carousel/types.ts new file mode 100644 index 0000000..f1490dc --- /dev/null +++ b/apps/storyblok/src/contentSections/Carousel/types.ts @@ -0,0 +1,5 @@ +import { type CarouselStoryblok } from "@/generated/extracted-types"; + +export interface ICarouselProps { + blok: CarouselStoryblok; +} diff --git a/apps/storyblok/src/contentSections/Pricing/types.ts b/apps/storyblok/src/contentSections/Pricing/types.ts deleted file mode 100644 index 1d05e3f..0000000 --- a/apps/storyblok/src/contentSections/Pricing/types.ts +++ /dev/null @@ -1,5 +0,0 @@ -import type { PricingStoryblok } from "@/generated/extracted-types"; - -export interface IPricingProps { - blok: PricingStoryblok; -} diff --git a/apps/storyblok/src/contentSections/Pricing/index.tsx b/apps/storyblok/src/contentSections/PricingTable/index.tsx similarity index 81% rename from apps/storyblok/src/contentSections/Pricing/index.tsx rename to apps/storyblok/src/contentSections/PricingTable/index.tsx index ea1fd93..581f91e 100644 --- a/apps/storyblok/src/contentSections/Pricing/index.tsx +++ b/apps/storyblok/src/contentSections/PricingTable/index.tsx @@ -1,16 +1,16 @@ import EmptyBlock from "@shared/ui/components/EmptyBlock"; -import { Pricing } from "@shared/ui"; +import { PricingTable as PricingTableUI } from "@shared/ui"; import { prepareImageProps } from "@/lib/adapters/prepareImageProps"; import { prepareLinkProps } from "@/lib/adapters/prepareLinkProps"; import SectionContainer from "@/components/SectionContainer"; -import type { IPricingProps } from "./types"; +import type { IPricingTableProps } from "./types"; -export default function PricingSection({ blok }: IPricingProps) { +export default function PricingTable({ blok }: IPricingTableProps) { if (!blok || blok?.tiers?.length === 0) - return ; + return ; const { tiers, yearlyDiscountPercentage } = blok; @@ -31,7 +31,7 @@ export default function PricingSection({ blok }: IPricingProps) { return ( - ; - - const carouselSlides = slides.map((slide) => ({ - image: prepareImageProps(slide.image[0]), - })); - - return ( - - - - ); -} diff --git a/apps/storyblok/src/contentSections/carousels/WideSimpleCarousel/types.ts b/apps/storyblok/src/contentSections/carousels/WideSimpleCarousel/types.ts deleted file mode 100644 index 067b880..0000000 --- a/apps/storyblok/src/contentSections/carousels/WideSimpleCarousel/types.ts +++ /dev/null @@ -1,5 +0,0 @@ -import type { WideSimpleCarouselStoryblok } from "@/generated/extracted-types"; - -export interface IWideSimpleCarouselProps { - blok: WideSimpleCarouselStoryblok; -} diff --git a/apps/storyblok/src/generated/components.production.json b/apps/storyblok/src/generated/components.production.json index 425df54..1fa1b46 100644 --- a/apps/storyblok/src/generated/components.production.json +++ b/apps/storyblok/src/generated/components.production.json @@ -4,7 +4,7 @@ "name": "blog", "display_name": null, "created_at": "2024-09-10T10:53:37.659Z", - "updated_at": "2024-10-29T15:46:14.891Z", + "updated_at": "2024-11-07T06:47:51.553Z", "id": 6275958, "schema": { "style": { @@ -37,7 +37,10 @@ "keys": [ "style", "marginTop", - "marginBottom" + "marginBottom", + "maxWidth", + "backgroundColor", + "backgroundImage" ], "pos": 2, "type": "tab" @@ -116,6 +119,73 @@ ], "default_value": "base", "exclude_empty_option": true + }, + "maxWidth": { + "type": "option", + "pos": 6, + "use_uuid": true, + "options": [ + { + "_uid": "94507f39-20da-472e-8c9f-9b5d50725076", + "name": "base", + "value": "base" + }, + { + "_uid": "3e59ce74-3a06-4cd4-ae00-24a1dc9131c2", + "value": "none", + "name": "none" + }, + { + "_uid": "90320bf7-1094-402c-bfd4-95e365973aee", + "value": "small", + "name": "small" + } + ], + "required": true, + "default_value": "base", + "exclude_empty_option": true + }, + "backgroundColor": { + "type": "option", + "pos": 7, + "use_uuid": true, + "required": true, + "options": [ + { + "_uid": "ec9fcb5f-ccf5-4551-877e-a06a239dd952", + "name": "light", + "value": "light" + }, + { + "_uid": "ec7f13b1-970c-4731-87cc-501e629fbf02", + "value": "light-gray", + "name": "light-gray" + }, + { + "_uid": "b4ba3cbf-7da0-44a0-b790-607e03a0773a", + "value": "dark-gray", + "name": "dark-gray" + }, + { + "_uid": "16308391-5db4-40c5-895a-9a967931c67a", + "value": "dark", + "name": "dark" + }, + { + "_uid": "4a01b294-a9e9-4170-92af-07b7ca55fd99", + "value": "none", + "name": "none" + } + ], + "default_value": "none", + "exclude_empty_option": true + }, + "backgroundImage": { + "type": "asset", + "pos": 8, + "filetypes": [ + "images" + ] } }, "image": "//a.storyblok.com/f/293915/x/5c2554c8ea/screenshot-2024-10-07-at-08-25-57.png", @@ -224,12 +294,148 @@ "name": "cardsGrid", "display_name": null, "created_at": "2024-09-10T10:51:16.668Z", - "updated_at": "2024-10-29T15:46:21.774Z", + "updated_at": "2024-11-07T06:48:22.026Z", "id": 6275957, "schema": { + "columns": { + "type": "option", + "pos": 0, + "use_uuid": true, + "options": [ + { + "_uid": "c2615d94-aead-4901-bd05-4a77d4827fa6", + "name": "1", + "value": "1" + }, + { + "_uid": "6bffa585-6a11-435c-89d6-f99898457953", + "value": "2", + "name": "2" + }, + { + "_uid": "f5c1c90b-4683-4b57-89bc-8bb5a617f865", + "value": "3", + "name": "3" + } + ], + "exclude_empty_option": true, + "default_value": "2", + "required": true + }, + "marginTop": { + "type": "option", + "pos": 1, + "use_uuid": true, + "description": "", + "required": true, + "exclude_empty_option": true, + "options": [ + { + "_uid": "30d26c32-e2c0-4af7-9bc8-416d586233eb", + "name": "none", + "value": "none" + }, + { + "_uid": "127a679c-064f-47fc-82ef-ef4db1ec19e3", + "value": "base", + "name": "base" + }, + { + "_uid": "26901018-526c-4f05-9cda-5cbcbb43a587", + "value": "lg", + "name": "large" + } + ], + "default_value": "base" + }, + "marginBottom": { + "type": "option", + "pos": 2, + "use_uuid": true, + "required": true, + "exclude_empty_option": true, + "default_value": "base", + "options": [ + { + "_uid": "611d7d6a-32ac-44cb-9e97-ee50468de3b1", + "value": "none", + "name": "none" + }, + { + "_uid": "f594c9ca-122e-45c1-9cef-3b406c32939d", + "name": "base", + "value": "base" + }, + { + "_uid": "7a630ae8-ad64-47aa-8e3e-e6f69d9c8004", + "value": "lg", + "name": "large" + } + ] + }, + "maxWidth": { + "type": "option", + "pos": 3, + "use_uuid": true, + "required": true, + "options": [ + { + "_uid": "195d6762-ca8a-438b-9c69-5f1cbb7719b1", + "name": "base", + "value": "base" + }, + { + "_uid": "5c0a23a5-d708-42d8-b7fd-386854994b88", + "value": "none", + "name": "none" + }, + { + "_uid": "9d482bc7-7c6b-4408-9bae-03be7c11badc", + "value": "small", + "name": "small" + } + ], + "default_value": "base", + "exclude_empty_option": true + }, + "backgroundColor": { + "type": "option", + "pos": 4, + "use_uuid": true, + "options": [ + { + "_uid": "633b4251-ea78-415f-a048-d3e2815a98a0", + "name": "light", + "value": "light" + }, + { + "_uid": "8ebfdadf-044f-46ca-be06-0bf92fbabc5b", + "value": "light-gray", + "name": "light-gray" + }, + { + "_uid": "a90c7e00-f2e2-40eb-b33d-173963533078", + "value": "dark-gray", + "name": "dark-gray" + }, + { + "_uid": "bcf188ac-f83f-4815-a51b-d03bfb80ab49", + "value": "dark", + "name": "dark" + }, + { + "_uid": "29e81e81-5469-4ec4-8c82-7a004bdd9498", + "value": "none", + "name": "none" + } + ], + "default_value": "none", + "required": true, + "exclude_empty_option": true + }, "items": { "type": "bloks", - "pos": 0, + "pos": 5, "required": true, "minimum": 1, "restrict_type": "", @@ -243,119 +449,381 @@ "keys": [ "columns", "marginTop", - "marginBottom" + "marginBottom", + "backgroundColor", + "maxWidth", + "backgroundImage" ], - "pos": 0, + "pos": 6, "type": "tab" }, - "columns": { + "backgroundImage": { + "type": "asset", + "pos": 7, + "filetypes": [ + "images" + ] + } + }, + "image": "//a.storyblok.com/f/293915/x/9ac072558c/screenshot-2024-10-07-at-08-26-42.png", + "preview_field": null, + "is_root": false, + "preview_tmpl": null, + "is_nestable": true, + "all_presets": [ + { + "id": 2282765, + "name": "Dark three columns", + "component_id": 6275957, + "image": "//a.storyblok.com/f/293915/x/22cc4febaa/screenshot-2024-09-10-at-16-44-01.png", + "icon": "", + "color": "", + "description": "" + } + ], + "preset_id": null, + "real_name": "cardsGrid", + "component_group_uuid": "9a95e24a-4024-4145-992e-070fbb399f97", + "color": null, + "icon": null, + "internal_tags_list": [], + "internal_tag_ids": [], + "content_type_asset_preview": null, + "component_group_name": "sections" + }, + { + "name": "carousel", + "display_name": null, + "created_at": "2024-10-08T14:20:16.827Z", + "updated_at": "2024-11-07T06:50:03.707Z", + "id": 6391276, + "schema": { + "effect": { "type": "option", - "pos": 2, + "pos": 0, "use_uuid": true, "options": [ { - "_uid": "c2615d94-aead-4901-bd05-4a77d4827fa6", - "name": "1", - "value": "1" + "_uid": "c5a9c848-508a-4f1a-8b25-d187adaefe71", + "name": "Slide", + "value": "slide" }, { - "_uid": "6bffa585-6a11-435c-89d6-f99898457953", - "value": "2", - "name": "2" + "_uid": "efe453c2-84e2-43af-b4d9-59265d00e72d", + "value": "coverflow", + "name": "Coverflow" }, { - "_uid": "f5c1c90b-4683-4b57-89bc-8bb5a617f865", - "value": "3", - "name": "3" + "_uid": "76a4f12c-7617-45f7-beaa-24f841ade8c1", + "value": "cube", + "name": "Cube" + }, + { + "_uid": "53912413-148c-4de5-9131-7c9fe4f217cb", + "value": "fade", + "name": "Fade" + }, + { + "_uid": "8a85ad4c-a8cf-4945-9409-4b9b33610b29", + "value": "flip", + "name": "Flip" + }, + { + "_uid": "dc6f89ef-8756-4681-b6a8-a66e8b0a654f", + "value": "cards", + "name": "Cards" } ], - "exclude_empty_option": true, - "default_value": "2", - "required": true + "default_value": "slide", + "exclude_empty_option": true + }, + "params": { + "type": "bloks", + "pos": 1, + "maximum": 1, + "restrict_type": "", + "restrict_components": true, + "component_whitelist": [ + "carouselParams" + ] }, "marginTop": { "type": "option", - "pos": 4, + "pos": 2, "use_uuid": true, - "description": "", "required": true, + "options": [ + { + "_uid": "575736ba-6f58-4a4b-b2c8-2d0c576a5461", + "value": "none", + "name": "none" + }, + { + "_uid": "2ebbe333-09ab-4bb4-84e7-d1d17d883942", + "name": "base", + "value": "base" + }, + { + "_uid": "5d121815-9a88-4779-b56f-48c4baebbbae", + "value": "lg", + "name": "large" + } + ], "exclude_empty_option": true, + "default_value": "base" + }, + "marginBottom": { + "type": "option", + "pos": 3, + "use_uuid": true, + "required": true, "options": [ { - "_uid": "30d26c32-e2c0-4af7-9bc8-416d586233eb", + "_uid": "a079ce4b-ef6b-4469-8e7c-5dc55f0bb7d2", "name": "none", "value": "none" }, { - "_uid": "127a679c-064f-47fc-82ef-ef4db1ec19e3", + "_uid": "167e1b4e-892f-41dc-8a61-28976236ef52", "value": "base", "name": "base" }, { - "_uid": "26901018-526c-4f05-9cda-5cbcbb43a587", + "_uid": "e3bd27f7-9aa5-46ab-8ed4-96d9787361ff", "value": "lg", "name": "large" } ], + "exclude_empty_option": true, "default_value": "base" }, - "marginBottom": { - "type": "option", - "pos": 5, - "use_uuid": true, + "maxWidth": { + "type": "option", + "pos": 4, + "use_uuid": true, + "options": [ + { + "_uid": "ab715912-0484-46b0-992f-6b07b1905871", + "name": "base", + "value": "base" + }, + { + "_uid": "af37e4c1-13dc-4444-a0fa-dde7e0de514c", + "value": "none", + "name": "none" + }, + { + "_uid": "c022827b-4ea3-4498-a046-25dda7292299", + "value": "small", + "name": "small" + } + ], + "default_value": "base", + "required": true, + "exclude_empty_option": true + }, + "backgroundColor": { + "type": "option", + "pos": 5, + "use_uuid": true, + "default_value": "none", + "options": [ + { + "_uid": "f618a465-463d-4ec6-83d7-a08568998849", + "name": "light", + "value": "light" + }, + { + "_uid": "80b2dd44-743d-462c-9d24-858dc4fc48aa", + "value": "light-gray", + "name": "light-gray" + }, + { + "_uid": "6600e39b-1b42-410c-85cb-6b2ad3a1f81e", + "value": "dark-gray", + "name": "dark-gray" + }, + { + "_uid": "9a5de758-45e1-4314-b94e-721e4b93dda7", + "value": "dark", + "name": "dark" + }, + { + "_uid": "d33c9287-95ac-43f6-a4d9-53793f87794b", + "value": "none", + "name": "none" + } + ], + "required": true, + "exclude_empty_option": true + }, + "backgroundImage": { + "type": "asset", + "pos": 6, + "filetypes": [ + "images" + ] + }, + "text": { + "type": "bloks", + "pos": 7, + "maximum": 1, + "restrict_type": "", + "restrict_components": true, + "component_whitelist": [ + "richText" + ] + }, + "slides": { + "type": "bloks", + "pos": 8, + "minimum": 1, + "required": true, + "restrict_type": "", + "restrict_components": true, + "component_whitelist": [ + "carouselSlide" + ] + }, + "tab-17c5789f-282b-47bb-8520-eb437583e746": { + "display_name": "Style", + "keys": [ + "marginTop", + "marginBottom", + "widthType", + "backgroundColor", + "backgroundImage", + "effect", + "params", + "maxWidth" + ], + "pos": 9, + "type": "tab" + } + }, + "image": "//a.storyblok.com/f/293915/x/5d1495ebd7/screenshot-2024-11-05-at-15-55-58.png", + "preview_field": null, + "is_root": false, + "preview_tmpl": null, + "is_nestable": true, + "all_presets": [ + { + "id": 2340541, + "name": "Carousel Slider", + "component_id": 6391276, + "image": "//a.storyblok.com/f/293915/x/1d5cfd198a/screenshot-2024-11-04-at-10-32-09.png", + "icon": "", + "color": "", + "description": "" + } + ], + "preset_id": null, + "real_name": "carousel", + "component_group_uuid": "9a95e24a-4024-4145-992e-070fbb399f97", + "color": null, + "icon": null, + "internal_tags_list": [], + "internal_tag_ids": [], + "content_type_asset_preview": null, + "component_group_name": "sections" + }, + { + "name": "carouselParams", + "display_name": null, + "created_at": "2024-11-04T08:57:58.232Z", + "updated_at": "2024-11-05T15:21:37.597Z", + "id": 6508472, + "schema": { + "loop": { + "type": "boolean", + "pos": 0 + }, + "slidesPerView": { + "type": "number", + "pos": 1 + }, + "spaceBetween": { + "type": "number", + "pos": 2 + } + }, + "image": null, + "preview_field": null, + "is_root": false, + "preview_tmpl": null, + "is_nestable": true, + "all_presets": [], + "preset_id": null, + "real_name": "carouselParams", + "component_group_uuid": "7a581c8c-f6b7-4926-b5b0-98b7a48916b3", + "color": null, + "icon": null, + "internal_tags_list": [], + "internal_tag_ids": [], + "content_type_asset_preview": null, + "component_group_name": "components" + }, + { + "name": "carouselSlide", + "display_name": null, + "created_at": "2024-10-08T14:20:37.715Z", + "updated_at": "2024-11-05T15:21:15.190Z", + "id": 6391277, + "schema": { + "text": { + "type": "bloks", + "pos": 0, + "maximum": 1, + "restrict_type": "", + "restrict_components": true, + "component_whitelist": [ + "richText" + ] + }, + "image": { + "type": "bloks", + "pos": 1, "required": true, - "exclude_empty_option": true, - "default_value": "base", - "options": [ - { - "_uid": "611d7d6a-32ac-44cb-9e97-ee50468de3b1", - "value": "none", - "name": "none" - }, - { - "_uid": "f594c9ca-122e-45c1-9cef-3b406c32939d", - "name": "base", - "value": "base" - }, - { - "_uid": "7a630ae8-ad64-47aa-8e3e-e6f69d9c8004", - "value": "lg", - "name": "large" - } + "minimum": 1, + "maximum": 1, + "restrict_type": "", + "restrict_components": true, + "component_whitelist": [ + "image" ] } }, - "image": "//a.storyblok.com/f/293915/x/9ac072558c/screenshot-2024-10-07-at-08-26-42.png", + "image": null, "preview_field": null, "is_root": false, "preview_tmpl": null, "is_nestable": true, "all_presets": [ { - "id": 2282765, - "name": "Dark three columns", - "component_id": 6275957, - "image": "//a.storyblok.com/f/293915/x/22cc4febaa/screenshot-2024-09-10-at-16-44-01.png", + "id": 2311925, + "name": "Default", + "component_id": 6391277, + "image": "//a.storyblok.com/f/293915/x/6750a101ef/screenshot-2024-10-08-at-16-31-02.png", "icon": "", "color": "", "description": "" } ], "preset_id": null, - "real_name": "cardsGrid", - "component_group_uuid": "9a95e24a-4024-4145-992e-070fbb399f97", + "real_name": "carouselSlide", + "component_group_uuid": "7a581c8c-f6b7-4926-b5b0-98b7a48916b3", "color": null, "icon": null, "internal_tags_list": [], "internal_tag_ids": [], "content_type_asset_preview": null, - "component_group_name": "sections" + "component_group_name": "components" }, { "name": "copy", "display_name": null, "created_at": "2024-07-09T16:19:19.131Z", - "updated_at": "2024-10-29T15:46:29.243Z", + "updated_at": "2024-11-07T06:58:51.104Z", "id": 6030874, "schema": { "isReversedOnMobile": { @@ -380,7 +848,10 @@ "keys": [ "isReversedOnMobile", "marginTop", - "marginBottom" + "marginBottom", + "maxWidth", + "backgroundColor", + "backgroundImage" ], "pos": 3, "type": "tab", @@ -435,6 +906,74 @@ } ], "default_value": "base" + }, + "maxWidth": { + "type": "option", + "pos": 5, + "use_uuid": true, + "required": true, + "options": [ + { + "_uid": "93082cb6-acea-45fe-9ced-29d99cf8e198", + "name": "base", + "value": "base" + }, + { + "_uid": "b7632c8b-e0d5-434d-88c6-580cdae8b0d6", + "value": "none", + "name": "none" + }, + { + "_uid": "205a539b-9a8a-4045-878f-85937b624f7c", + "value": "small", + "name": "small" + } + ], + "default_value": "base", + "exclude_empty_option": true + }, + "backgroundColor": { + "type": "option", + "pos": 6, + "use_uuid": true, + "options": [ + { + "_uid": "ac861806-c651-47c4-be5b-5b21661045c1", + "name": "light", + "value": "light" + }, + { + "_uid": "01c3e13c-f439-4126-8ee6-0a95fa8cb24d", + "value": "light-gray", + "name": "light gray" + }, + { + "_uid": "9aca0b94-d5c0-4352-9174-3dc6517f82c3", + "value": "dark-gray", + "name": "dark gray" + }, + { + "_uid": "ea8810e4-ddec-4323-bad2-f6eba95a8c50", + "value": "dark", + "name": "dark" + }, + { + "_uid": "2f3ee3ae-600b-44b9-8f46-1c4c6ca43c85", + "value": "none", + "name": "none" + } + ], + "required": true, + "default_value": "none", + "exclude_empty_option": true + }, + "backgroundImage": { + "type": "asset", + "pos": 7, + "required": false, + "filetypes": [ + "images" + ] } }, "image": "//a.storyblok.com/f/293915/x/8057d86664/screenshot-2024-07-11-at-16-12-58.png", @@ -794,7 +1333,7 @@ "name": "hero", "display_name": null, "created_at": "2024-10-08T14:42:35.362Z", - "updated_at": "2024-10-08T15:14:33.430Z", + "updated_at": "2024-11-07T06:51:28.343Z", "id": 6391508, "schema": { "title": { @@ -805,7 +1344,10 @@ "display_name": "Style", "keys": [ "marginTop", - "marginBottom" + "marginBottom", + "maxWidth", + "backgroundColor", + "backgroundImage" ], "pos": 0, "type": "tab" @@ -893,6 +1435,74 @@ ], "exclude_empty_option": true, "default_value": "base" + }, + "maxWidth": { + "type": "option", + "pos": 7, + "use_uuid": true, + "options": [ + { + "_uid": "fb3f1768-762c-4ac5-a23b-9fd541140ab2", + "name": "base", + "value": "base" + }, + { + "_uid": "296e8062-aebf-4268-b6b1-aba22269408f", + "value": "none", + "name": "none" + }, + { + "_uid": "ad4da872-4806-4e0b-8e44-e7d9524a59a8", + "value": "small", + "name": "small" + } + ], + "default_value": "base", + "required": true, + "exclude_empty_option": true + }, + "backgroundColor": { + "type": "option", + "pos": 8, + "use_uuid": true, + "options": [ + { + "_uid": "af7b32bf-2ad6-468b-a999-fc75dd0eb3f5", + "name": "light", + "value": "light" + }, + { + "_uid": "703436ba-db46-42cf-8235-bd8cc1b2e84f", + "value": "light-gray", + "name": "light-gray" + }, + { + "_uid": "a4704b39-4200-4b0a-a4a0-37f27734b4db", + "value": "dark-gray", + "name": "dark-gray" + }, + { + "_uid": "a23fb8a1-26c6-4709-b22b-5f76c1c8cd10", + "value": "dark", + "name": "dark" + }, + { + "_uid": "c762737d-b1ad-489e-9f00-161474646d3d", + "value": "none", + "name": "none" + } + ], + "required": true, + "default_value": "none", + "exclude_empty_option": true + }, + "backgroundImage": { + "type": "asset", + "pos": 9, + "required": false, + "filetypes": [ + "images" + ] } }, "image": "//a.storyblok.com/f/293915/x/f328db11b5/screenshot-2024-10-08-at-17-14-10.png", @@ -1106,7 +1716,7 @@ "name": "linksList", "display_name": null, "created_at": "2024-09-10T10:44:36.150Z", - "updated_at": "2024-10-29T15:46:39.097Z", + "updated_at": "2024-11-07T06:52:04.324Z", "id": 6275825, "schema": { "alignVariant": { @@ -1150,7 +1760,10 @@ "keys": [ "alignVariant", "marginTop", - "marginBottom" + "marginBottom", + "maxWidth", + "backgroundColor", + "backgroundImage" ], "pos": 3, "type": "tab" @@ -1206,6 +1819,73 @@ "exclude_empty_option": true, "default_value": "base", "required": true + }, + "maxWidth": { + "type": "option", + "pos": 5, + "use_uuid": true, + "options": [ + { + "_uid": "c563af84-2e7c-4623-b9f4-4d5506a82c9a", + "name": "base", + "value": "base" + }, + { + "_uid": "8237931d-d189-49a5-ae1f-9e006e3fa099", + "value": "none", + "name": "none" + }, + { + "_uid": "0ee45600-b083-4005-8f43-eb70b38e969d", + "value": "small", + "name": "small" + } + ], + "default_value": "base", + "required": true, + "exclude_empty_option": true + }, + "backgroundColor": { + "type": "option", + "pos": 6, + "use_uuid": true, + "required": true, + "options": [ + { + "_uid": "e6f38028-41eb-4862-8661-fc762b1e71b1", + "name": "light", + "value": "light" + }, + { + "_uid": "17f090fa-ad5f-482f-8910-e33e5a26072e", + "value": "light-gray", + "name": "light-gray" + }, + { + "_uid": "27e9a1a3-c58f-4190-b3e3-67e13a1409a9", + "value": "dark-gray", + "name": "dark-gray" + }, + { + "_uid": "74588d58-96bd-4377-8334-42d7f2be792d", + "value": "dark", + "name": "dark" + }, + { + "_uid": "76e9c086-f60a-4797-b489-4c915fdcef2b", + "value": "none", + "name": "none" + } + ], + "default_value": "none", + "exclude_empty_option": true + }, + "backgroundImage": { + "type": "asset", + "pos": 7, + "filetypes": [ + "images" + ] } }, "image": "//a.storyblok.com/f/293915/x/d39e94f6d6/screenshot-2024-10-07-at-08-29-57.png", @@ -1333,7 +2013,7 @@ "name": "logos", "display_name": null, "created_at": "2024-09-10T10:38:10.602Z", - "updated_at": "2024-10-29T15:46:45.436Z", + "updated_at": "2024-11-07T06:52:38.148Z", "id": 6275709, "schema": { "alignVariant": { @@ -1377,7 +2057,10 @@ "keys": [ "alignVariant", "marginTop", - "marginBottom" + "marginBottom", + "maxWidth", + "backgroundColor", + "backgroundImage" ], "pos": 3, "type": "tab" @@ -1433,6 +2116,73 @@ ], "exclude_empty_option": true, "default_value": "base" + }, + "maxWidth": { + "type": "option", + "pos": 5, + "use_uuid": true, + "options": [ + { + "_uid": "660b4ce2-6fef-4a3d-9aba-a7b28a09f88c", + "name": "base", + "value": "base" + }, + { + "_uid": "883f5df2-ef1d-4cfc-82ca-a0d755e97487", + "value": "none", + "name": "none" + }, + { + "_uid": "b984c734-fa92-451d-a757-9695cefae9d1", + "value": "small", + "name": "small" + } + ], + "default_value": "base", + "required": true, + "exclude_empty_option": true + }, + "backgroundColor": { + "type": "option", + "pos": 6, + "use_uuid": true, + "options": [ + { + "_uid": "9bfa4225-69b3-4c26-96b3-86cf61504915", + "name": "light", + "value": "light" + }, + { + "_uid": "489df1a0-179b-4903-8bd3-080d4c03ba41", + "value": "light-gray", + "name": "light-gray" + }, + { + "_uid": "ae934643-876a-47ef-97a4-cfb146e573d3", + "value": "dark-gray", + "name": "dark-gray" + }, + { + "_uid": "1f3551e5-692a-44be-80ba-d120aad2ab63", + "value": "dark", + "name": "dark" + }, + { + "_uid": "9069a591-dd12-45d5-a807-27f6f1b0ae5a", + "value": "none", + "name": "none" + } + ], + "default_value": "none", + "required": true, + "exclude_empty_option": true + }, + "backgroundImage": { + "type": "asset", + "pos": 7, + "filetypes": [ + "images" + ] } }, "image": "//a.storyblok.com/f/293915/x/6487b83bb6/screenshot-2024-10-07-at-08-30-44.png", @@ -1623,10 +2373,10 @@ "component_group_name": "pages" }, { - "name": "pricing", + "name": "pricingTable", "display_name": null, "created_at": "2024-10-29T14:19:10.496Z", - "updated_at": "2024-10-29T14:32:16.913Z", + "updated_at": "2024-11-07T06:26:37.299Z", "id": 6489128, "schema": { "tiers": { @@ -1635,9 +2385,21 @@ "restrict_type": "", "restrict_components": true, "component_whitelist": [ - "pricingTier" + "pricingTableTier" ] }, + "tab-701da23f-5d81-4d15-ba9f-a2cac6952da5": { + "display_name": "Style", + "keys": [ + "marginTop", + "marginBottom", + "maxWidth", + "backgroundColor", + "backgroundImage" + ], + "pos": 0, + "type": "tab" + }, "yearlyDiscountPercentage": { "type": "text", "pos": 1 @@ -1653,13 +2415,131 @@ "restrict_type": "", "restrict_components": true, "component_whitelist": [ - "pricingExtraService" + "pricingTableExtraService" ], "maximum": 1, "minimum": 1 + }, + "marginTop": { + "type": "option", + "pos": 5, + "use_uuid": true, + "options": [ + { + "_uid": "645ef416-5e1c-4c51-bf01-3c4f288b4dfe", + "name": "none", + "value": "none" + }, + { + "_uid": "a01ac8fa-537e-42d4-a128-14645f210b12", + "value": "base", + "name": "base" + }, + { + "_uid": "38d0f9d0-9bb8-4a0e-9857-5bf31979879d", + "value": "lg", + "name": "large" + } + ], + "default_value": "base", + "required": true, + "exclude_empty_option": true + }, + "marginBottom": { + "type": "option", + "pos": 6, + "use_uuid": true, + "default_value": "base", + "options": [ + { + "_uid": "ae6df6f6-ea33-455f-ad2a-9d1c2b7362e7", + "name": "none", + "value": "none" + }, + { + "_uid": "68b8f24d-9031-4fbc-9243-f61b09b57ed8", + "value": "base", + "name": "base" + }, + { + "_uid": "c712ed18-94ef-460b-a727-77f23d0c85fc", + "value": "lg", + "name": "large" + } + ], + "required": true, + "exclude_empty_option": true + }, + "maxWidth": { + "type": "option", + "pos": 7, + "use_uuid": true, + "required": true, + "options": [ + { + "_uid": "f53a269f-6e2e-40aa-8f8b-4abcda1393ae", + "value": "small", + "name": "small" + }, + { + "_uid": "175213a8-1ae7-49e7-b90f-3d66194f24bc", + "name": "base", + "value": "base" + }, + { + "_uid": "8e136040-dded-4ef8-b2c1-8234c9617818", + "value": "none", + "name": "none" + } + ], + "default_value": "base", + "exclude_empty_option": true + }, + "backgroundColor": { + "type": "option", + "pos": 8, + "use_uuid": true, + "required": true, + "options": [ + { + "_uid": "765bb5ac-3338-45b1-be4d-42c11e16bdc4", + "name": "light", + "value": "light" + }, + { + "_uid": "1a457ed6-3381-424a-ada8-a396383300d5", + "value": "light-gray", + "name": "light gray" + }, + { + "_uid": "20900bc9-728a-4468-b6b0-2ffedf57f45a", + "value": "dark-gray", + "name": "dark gray" + }, + { + "_uid": "cf9b179b-ca89-4296-8cac-4fd5223116b3", + "value": "dark", + "name": "dark" + }, + { + "_uid": "83bb1656-0813-4555-bb3c-94870e9e8856", + "value": "none", + "name": "none" + } + ], + "default_value": "none", + "exclude_empty_option": true, + "description": "// todo: change to theme later?" + }, + "backgroundImage": { + "type": "asset", + "pos": 9, + "filetypes": [ + "images" + ] } }, - "image": null, + "image": "//a.storyblok.com/f/293915/x/537b05d5d2/screenshot-2024-11-05-at-15-51-16.png", "preview_field": null, "is_root": false, "preview_tmpl": null, @@ -1667,7 +2547,7 @@ "all_presets": [ { "id": 2335597, - "name": "Pricing", + "name": "Pricing Table", "component_id": 6489128, "image": "//a.storyblok.com/f/293915/x/a01a228065/screenshot-2024-10-29-at-15-33-45.png", "icon": "", @@ -1676,7 +2556,7 @@ } ], "preset_id": null, - "real_name": "pricing", + "real_name": "pricingTable", "component_group_uuid": "9a95e24a-4024-4145-992e-070fbb399f97", "color": null, "icon": null, @@ -1686,10 +2566,10 @@ "component_group_name": "sections" }, { - "name": "pricingExtraService", + "name": "pricingTableExtraService", "display_name": null, "created_at": "2024-10-29T14:31:04.180Z", - "updated_at": "2024-10-29T14:31:21.853Z", + "updated_at": "2024-11-05T15:19:13.814Z", "id": 6489233, "schema": { "text": { @@ -1698,7 +2578,7 @@ "required": true }, "cost": { - "type": "text", + "type": "number", "pos": 1, "required": true } @@ -1710,7 +2590,7 @@ "is_nestable": true, "all_presets": [], "preset_id": null, - "real_name": "pricingExtraService", + "real_name": "pricingTableExtraService", "component_group_uuid": "7a581c8c-f6b7-4926-b5b0-98b7a48916b3", "color": null, "icon": null, @@ -1720,10 +2600,10 @@ "component_group_name": "components" }, { - "name": "pricingTier", + "name": "pricingTableTier", "display_name": null, "created_at": "2024-10-29T14:19:56.597Z", - "updated_at": "2024-10-29T14:38:42.450Z", + "updated_at": "2024-11-05T15:19:21.909Z", "id": 6489131, "schema": { "name": { @@ -1744,7 +2624,7 @@ "required": true }, "price": { - "type": "text", + "type": "number", "pos": 2 }, "description": { @@ -1758,7 +2638,7 @@ "restrict_type": "", "restrict_components": true, "component_whitelist": [ - "pricingTierFeature" + "pricingTableTierFeature" ], "required": true }, @@ -1787,7 +2667,7 @@ "is_nestable": true, "all_presets": [], "preset_id": null, - "real_name": "pricingTier", + "real_name": "pricingTableTier", "component_group_uuid": "7a581c8c-f6b7-4926-b5b0-98b7a48916b3", "color": null, "icon": null, @@ -1797,10 +2677,10 @@ "component_group_name": "components" }, { - "name": "pricingTierFeature", + "name": "pricingTableTierFeature", "display_name": null, "created_at": "2024-10-29T14:25:23.509Z", - "updated_at": "2024-10-29T14:25:40.593Z", + "updated_at": "2024-11-05T15:05:39.215Z", "id": 6489227, "schema": { "text": { @@ -1816,7 +2696,7 @@ "is_nestable": true, "all_presets": [], "preset_id": null, - "real_name": "pricingTierFeature", + "real_name": "pricingTableTierFeature", "component_group_uuid": "7a581c8c-f6b7-4926-b5b0-98b7a48916b3", "color": null, "icon": null, @@ -1865,188 +2745,38 @@ }, "content": { "type": "richtext", - "pos": 2, - "restrict_type": "", - "restrict_components": true, - "component_whitelist": [ - "image", - "logos", - "cardsGrid", - "linksList" - ], - "key": "content", - "required": true - }, - "tab-40821a7a-c433-4b0f-8da9-d89c3590093f": { - "display_name": "Style", - "keys": [ - "hasInnerMargins", - "removeInnerMargins", - "alignVariant" - ], - "pos": 3, - "type": "tab", - "key": "tab-40821a7a-c433-4b0f-8da9-d89c3590093f" - } - }, - "image": "//a.storyblok.com/f/293915/x/357f32a044/screenshot-2024-10-07-at-08-33-44.png", - "preview_field": null, - "is_root": false, - "preview_tmpl": null, - "is_nestable": true, - "all_presets": [], - "preset_id": null, - "real_name": "richText", - "component_group_uuid": "7a581c8c-f6b7-4926-b5b0-98b7a48916b3", - "color": null, - "icon": null, - "internal_tags_list": [], - "internal_tag_ids": [], - "content_type_asset_preview": null, - "component_group_name": "components" - }, - { - "name": "simpleCarousel", - "display_name": null, - "created_at": "2024-10-08T14:20:16.827Z", - "updated_at": "2024-10-08T14:46:07.495Z", - "id": 6391276, - "schema": { - "slides": { - "type": "bloks", - "pos": 0, - "minimum": 1, - "required": true, - "restrict_type": "", - "restrict_components": true, - "component_whitelist": [ - "simpleCarouselSlide" - ] - }, - "tab-17c5789f-282b-47bb-8520-eb437583e746": { - "display_name": "Style", - "keys": [ - "marginTop", - "marginBottom" - ], - "pos": 0, - "type": "tab" - }, - "marginTop": { - "type": "option", - "pos": 2, - "use_uuid": true, - "required": true, - "options": [ - { - "_uid": "575736ba-6f58-4a4b-b2c8-2d0c576a5461", - "value": "none", - "name": "none" - }, - { - "_uid": "2ebbe333-09ab-4bb4-84e7-d1d17d883942", - "name": "base", - "value": "base" - }, - { - "_uid": "5d121815-9a88-4779-b56f-48c4baebbbae", - "value": "lg", - "name": "large" - } - ], - "exclude_empty_option": true, - "default_value": "base" - }, - "marginBottom": { - "type": "option", - "pos": 3, - "use_uuid": true, - "required": true, - "options": [ - { - "_uid": "a079ce4b-ef6b-4469-8e7c-5dc55f0bb7d2", - "name": "none", - "value": "none" - }, - { - "_uid": "167e1b4e-892f-41dc-8a61-28976236ef52", - "value": "base", - "name": "base" - }, - { - "_uid": "e3bd27f7-9aa5-46ab-8ed4-96d9787361ff", - "value": "lg", - "name": "large" - } - ], - "exclude_empty_option": true, - "default_value": "base" - } - }, - "image": "//a.storyblok.com/f/293915/x/76de5f60c0/screenshot-2024-10-08-at-16-30-53.png", - "preview_field": null, - "is_root": false, - "preview_tmpl": null, - "is_nestable": true, - "all_presets": [ - { - "id": 2311924, - "name": "Default", - "component_id": 6391276, - "image": "//a.storyblok.com/f/293915/x/bd83ad5125/screenshot-2024-10-08-at-16-30-53.png", - "icon": "", - "color": "", - "description": "" - } - ], - "preset_id": null, - "real_name": "simpleCarousel", - "component_group_uuid": "9a95e24a-4024-4145-992e-070fbb399f97", - "color": null, - "icon": null, - "internal_tags_list": [], - "internal_tag_ids": [], - "content_type_asset_preview": null, - "component_group_name": "sections" - }, - { - "name": "simpleCarouselSlide", - "display_name": null, - "created_at": "2024-10-08T14:20:37.715Z", - "updated_at": "2024-10-08T14:20:50.877Z", - "id": 6391277, - "schema": { - "image": { - "type": "bloks", - "pos": 0, - "required": true, - "minimum": 1, - "maximum": 1, + "pos": 2, "restrict_type": "", "restrict_components": true, "component_whitelist": [ - "image" - ] + "image", + "logos", + "cardsGrid", + "linksList" + ], + "key": "content", + "required": true + }, + "tab-40821a7a-c433-4b0f-8da9-d89c3590093f": { + "display_name": "Style", + "keys": [ + "hasInnerMargins", + "removeInnerMargins", + "alignVariant" + ], + "pos": 3, + "type": "tab", + "key": "tab-40821a7a-c433-4b0f-8da9-d89c3590093f" } }, - "image": null, + "image": "//a.storyblok.com/f/293915/x/357f32a044/screenshot-2024-10-07-at-08-33-44.png", "preview_field": null, "is_root": false, "preview_tmpl": null, "is_nestable": true, - "all_presets": [ - { - "id": 2311925, - "name": "Default", - "component_id": 6391277, - "image": "//a.storyblok.com/f/293915/x/6750a101ef/screenshot-2024-10-08-at-16-31-02.png", - "icon": "", - "color": "", - "description": "" - } - ], + "all_presets": [], "preset_id": null, - "real_name": "simpleCarouselSlide", + "real_name": "richText", "component_group_uuid": "7a581c8c-f6b7-4926-b5b0-98b7a48916b3", "color": null, "icon": null, @@ -2059,7 +2789,7 @@ "name": "stepGuide", "display_name": null, "created_at": "2024-10-30T07:56:07.407Z", - "updated_at": "2024-10-30T16:14:17.536Z", + "updated_at": "2024-11-07T06:37:18.067Z", "id": 6492253, "schema": { "stepGuideItem": { @@ -2077,7 +2807,10 @@ "display_name": "Style", "keys": [ "marginTop", - "marginBottom" + "marginBottom", + "maxWidth", + "backgroundColor", + "backgroundImage" ], "pos": 0, "type": "tab" @@ -2143,6 +2876,73 @@ "component_whitelist": [ "link" ] + }, + "maxWidth": { + "type": "option", + "pos": 5, + "use_uuid": true, + "required": true, + "options": [ + { + "_uid": "49129fda-856b-4a35-9d5c-ebd00c92d10b", + "name": "base", + "value": "base" + }, + { + "_uid": "da99fe06-781d-43c9-887d-9cfbde606389", + "value": "none", + "name": "none" + }, + { + "_uid": "f4014b32-3de5-45c5-836a-3642e540d54d", + "value": "small", + "name": "small" + } + ], + "default_value": "base", + "exclude_empty_option": true + }, + "backgroundColor": { + "type": "option", + "pos": 6, + "use_uuid": true, + "required": true, + "options": [ + { + "_uid": "f4024212-6982-4770-8769-049ee9b827f7", + "name": "light", + "value": "light" + }, + { + "_uid": "9e7c0d04-fd33-4742-8a9d-02ffb26043e9", + "value": "light-gray", + "name": "light-gray" + }, + { + "_uid": "ef8c0b40-046a-4b1b-bfa3-f95770b53afa", + "value": "dark-gray", + "name": "dark-gray" + }, + { + "_uid": "f4c1c918-0270-4ada-bea0-d5e4b35a957d", + "value": "dark", + "name": "dark" + }, + { + "_uid": "eb986f85-cbe6-4d1a-b453-63773d352054", + "value": "none", + "name": "none" + } + ], + "default_value": "none", + "exclude_empty_option": true + }, + "backgroundImage": { + "type": "asset", + "pos": 7, + "filetypes": [ + "images" + ] } }, "image": "//a.storyblok.com/f/293915/x/86b490a547/screenshot-2024-10-30-at-17-09-53.png", @@ -2232,7 +3032,7 @@ "name": "threeDElement", "display_name": "3D Element", "created_at": "2024-11-01T07:46:52.931Z", - "updated_at": "2024-11-01T15:18:17.163Z", + "updated_at": "2024-11-07T06:53:35.438Z", "id": 6502652, "schema": { "threeDModel": { @@ -2265,7 +3065,10 @@ "display_name": "Style", "keys": [ "marginTop", - "marginBottom" + "marginBottom", + "maxWidth", + "backgroundColor", + "backgroundImage" ], "pos": 2, "type": "tab", @@ -2320,201 +3123,118 @@ } ], "default_value": "base" - } - }, - "image": "//a.storyblok.com/f/293915/x/82b8a3dba8/screenshot-2024-11-01-at-08-49-14.png", - "preview_field": null, - "is_root": false, - "preview_tmpl": null, - "is_nestable": true, - "all_presets": [ - { - "id": 2339030, - "name": "Donut", - "component_id": 6502652, - "image": "//a.storyblok.com/f/293915/x/d39c375cf9/screenshot-2024-11-01-at-09-29-42.png", - "icon": "", - "color": "", - "description": "" - }, - { - "id": 2339068, - "name": "Kubik Rubik", - "component_id": 6502652, - "image": "//a.storyblok.com/f/293915/x/75159faf13/screenshot-2024-11-01-at-10-40-32.png", - "icon": "", - "color": "", - "description": "" - }, - { - "id": 2339069, - "name": "Sphere", - "component_id": 6502652, - "image": "//a.storyblok.com/f/293915/x/e7b4b1f94e/screenshot-2024-11-01-at-10-40-44.png", - "icon": "", - "color": "", - "description": "" - } - ], - "preset_id": null, - "real_name": "3D Element", - "component_group_uuid": "9a95e24a-4024-4145-992e-070fbb399f97", - "color": null, - "icon": null, - "internal_tags_list": [], - "internal_tag_ids": [], - "content_type_asset_preview": null, - "component_group_name": "sections" - }, - { - "name": "wideSimpleCarousel", - "display_name": null, - "created_at": "2024-10-08T14:21:25.377Z", - "updated_at": "2024-10-08T14:47:08.181Z", - "id": 6391278, - "schema": { - "slides": { - "type": "bloks", - "pos": 0, - "required": true, - "minimum": 1, - "restrict_type": "", - "restrict_components": true, - "component_whitelist": [ - "wideSimpleCarouselSlide" - ] - }, - "tab-d0b9d865-617f-429c-9e04-7ec15c56ffda": { - "display_name": "Style", - "keys": [ - "marginTop", - "marginBottom" - ], - "pos": 0, - "type": "tab" }, - "marginTop": { + "maxWidth": { "type": "option", - "pos": 2, + "pos": 4, "use_uuid": true, - "required": true, "options": [ { - "_uid": "15e02caf-1b2a-40aa-b957-348216cabd1e", - "name": "none", - "value": "none" + "_uid": "313e1eff-76f7-4497-bb98-d8591b4c3c4c", + "name": "base", + "value": "base" }, { - "_uid": "a1e60cd0-1ce1-4999-9623-5da36db7d31b", - "value": "base", - "name": "base" + "_uid": "3ef895ee-accf-4fe9-bc66-4f136da869a2", + "value": "none", + "name": "none" }, { - "_uid": "e45c3cd1-31fd-4d4b-9245-702cf2301d6b", - "value": "lg", - "name": "large" + "_uid": "80edab38-e59b-439b-834d-7ea46842ca08", + "value": "small", + "name": "small" } ], - "exclude_empty_option": true, - "default_value": "base" + "default_value": "base", + "required": true, + "exclude_empty_option": true }, - "marginBottom": { + "backgroundColor": { "type": "option", - "pos": 3, + "pos": 5, "use_uuid": true, "required": true, "options": [ { - "_uid": "8444fc8d-17ca-4937-b59a-aa4589e6203e", - "name": "none", - "value": "none" + "_uid": "1eaad08e-7123-4bd8-a3cf-6ab814074277", + "name": "light", + "value": "light" }, { - "_uid": "c1f3f578-cef6-4fb5-9435-b7cd1280aa3c", - "value": "base", - "name": "base" + "_uid": "b90790bd-ae3e-4836-91c3-8998b830a24e", + "value": "light-gray", + "name": "light-gray" }, { - "_uid": "0ff97e39-8217-4fd5-9d76-3b4108e036c1", - "value": "lg", - "name": "large" + "_uid": "13476891-b768-4f10-b018-51672f013f22", + "value": "dark-gray", + "name": "dark-gray" + }, + { + "_uid": "48e84069-4d47-4fad-91d1-b7a086d979ad", + "value": "dark", + "name": "dark" + }, + { + "_uid": "3711d6c8-9052-4567-b05c-3ce1b51ef391", + "value": "none", + "name": "none" } ], - "default_value": "base", - "exclude_empty_option": true + "exclude_empty_option": true, + "default_value": "none" + }, + "backgroundImage": { + "type": "asset", + "pos": 6, + "filetypes": [ + "images" + ] } }, - "image": "//a.storyblok.com/f/293915/x/3d25defba3/screenshot-2024-10-08-at-16-30-56.png", + "image": "//a.storyblok.com/f/293915/x/82b8a3dba8/screenshot-2024-11-01-at-08-49-14.png", "preview_field": null, "is_root": false, "preview_tmpl": null, "is_nestable": true, "all_presets": [ { - "id": 2311926, - "name": "Default", - "component_id": 6391278, - "image": "//a.storyblok.com/f/293915/x/8326dcb7a4/screenshot-2024-10-08-at-16-30-56.png", + "id": 2339030, + "name": "Donut", + "component_id": 6502652, + "image": "//a.storyblok.com/f/293915/x/d39c375cf9/screenshot-2024-11-01-at-09-29-42.png", "icon": "", "color": "", "description": "" - } - ], - "preset_id": null, - "real_name": "wideSimpleCarousel", - "component_group_uuid": "9a95e24a-4024-4145-992e-070fbb399f97", - "color": null, - "icon": null, - "internal_tags_list": [], - "internal_tag_ids": [], - "content_type_asset_preview": null, - "component_group_name": "sections" - }, - { - "name": "wideSimpleCarouselSlide", - "display_name": null, - "created_at": "2024-10-08T14:21:43.668Z", - "updated_at": "2024-10-08T14:21:56.078Z", - "id": 6391279, - "schema": { - "image": { - "type": "bloks", - "pos": 0, - "required": true, - "minimum": 1, - "maximum": 1, - "restrict_type": "", - "restrict_components": true, - "component_whitelist": [ - "image" - ] - } - }, - "image": null, - "preview_field": null, - "is_root": false, - "preview_tmpl": null, - "is_nestable": true, - "all_presets": [ + }, { - "id": 2311927, - "name": "Default", - "component_id": 6391279, - "image": "//a.storyblok.com/f/293915/x/e32cf6ec6b/screenshot-2024-10-08-at-16-31-09.png", + "id": 2339068, + "name": "Kubik Rubik", + "component_id": 6502652, + "image": "//a.storyblok.com/f/293915/x/75159faf13/screenshot-2024-11-01-at-10-40-32.png", + "icon": "", + "color": "", + "description": "" + }, + { + "id": 2339069, + "name": "Sphere", + "component_id": 6502652, + "image": "//a.storyblok.com/f/293915/x/e7b4b1f94e/screenshot-2024-11-01-at-10-40-44.png", "icon": "", "color": "", "description": "" } ], "preset_id": null, - "real_name": "wideSimpleCarouselSlide", - "component_group_uuid": "7a581c8c-f6b7-4926-b5b0-98b7a48916b3", + "real_name": "3D Element", + "component_group_uuid": "9a95e24a-4024-4145-992e-070fbb399f97", "color": null, "icon": null, "internal_tags_list": [], "internal_tag_ids": [], "content_type_asset_preview": null, - "component_group_name": "components" + "component_group_name": "sections" } ], "component_groups": [ diff --git a/apps/storyblok/src/generated/extracted-types.ts b/apps/storyblok/src/generated/extracted-types.ts index 7637ebc..db6e1d4 100644 --- a/apps/storyblok/src/generated/extracted-types.ts +++ b/apps/storyblok/src/generated/extracted-types.ts @@ -1,12 +1,40 @@ // This file was generated by the storyblok CLI. // DO NOT MODIFY THIS FILE BY HAND. import type { ISbStoryData } from "storyblok"; +export interface AssetStoryblok { + alt: string | null; + copyright?: string | null; + fieldtype: "asset"; + id: number; + filename: string | null; + name: string; + title: string | null; + focus: string | null; + meta_data?: { + [k: string]: any; + }; + source?: string | null; + is_external_url?: boolean; + is_private?: boolean; + src?: string; + updated_at?: string; + width?: number | null; + height?: number | null; + aspect_ratio?: number | null; + public_id?: string | null; + content_type?: string; + [k: string]: any; +} + export interface BlogStoryblok { style: "three-column" | "three-column-with-images" | "three-column-with-background-images"; text: RichTextStoryblok[]; posts: BlogPostStoryblok[]; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: AssetStoryblok; component: "blog"; _uid: string; [k: string]: any; @@ -23,20 +51,58 @@ export interface BlogPostStoryblok { } export interface CardsGridStoryblok { - items: DefaultCardStoryblok[]; columns: "1" | "2" | "3"; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + items: DefaultCardStoryblok[]; + backgroundImage?: AssetStoryblok; component: "cardsGrid"; _uid: string; [k: string]: any; } +export interface CarouselStoryblok { + effect?: "slide" | "coverflow" | "cube" | "fade" | "flip" | "cards"; + params?: CarouselParamsStoryblok[]; + marginTop: "none" | "base" | "lg"; + marginBottom: "none" | "base" | "lg"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: AssetStoryblok; + text?: RichTextStoryblok[]; + slides: CarouselSlideStoryblok[]; + component: "carousel"; + _uid: string; + [k: string]: any; +} + +export interface CarouselParamsStoryblok { + loop?: boolean; + slidesPerView?: string; + spaceBetween?: string; + component: "carouselParams"; + _uid: string; + [k: string]: any; +} + +export interface CarouselSlideStoryblok { + text?: RichTextStoryblok[]; + image: ImageStoryblok[]; + component: "carouselSlide"; + _uid: string; + [k: string]: any; +} + export interface CopyStoryblok { isReversedOnMobile?: boolean; columns: RichTextStoryblok[]; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: AssetStoryblok; component: "copy"; _uid: string; [k: string]: any; @@ -85,36 +151,14 @@ export interface HeroStoryblok { links: LinkStoryblok[]; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: AssetStoryblok; component: "hero"; _uid: string; [k: string]: any; } -export interface AssetStoryblok { - alt: string | null; - copyright?: string | null; - fieldtype: "asset"; - id: number; - filename: string | null; - name: string; - title: string | null; - focus: string | null; - meta_data?: { - [k: string]: any; - }; - source?: string | null; - is_external_url?: boolean; - is_private?: boolean; - src?: string; - updated_at?: string; - width?: number | null; - height?: number | null; - aspect_ratio?: number | null; - public_id?: string | null; - content_type?: string; - [k: string]: any; -} - export interface ImageStoryblok { asset: AssetStoryblok; aspectRatio: "16/9" | "3/2" | "4/3" | "1/1" | "9/16" | "1/2" | "4/1" | "3/1" | "auto"; @@ -211,6 +255,9 @@ export interface LinksListStoryblok { links: LinkStoryblok[]; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: AssetStoryblok; component: "linksList"; _uid: string; [k: string]: any; @@ -230,6 +277,9 @@ export interface LogosStoryblok { items: LogoItemStoryblok[]; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: AssetStoryblok; component: "logos"; _uid: string; [k: string]: any; @@ -240,15 +290,14 @@ export interface PageStoryblok { sections: ( | BlogStoryblok | CardsGridStoryblok + | CarouselStoryblok | CopyStoryblok | HeroStoryblok | LinksListStoryblok | LogosStoryblok - | PricingStoryblok - | SimpleCarouselStoryblok + | PricingTableStoryblok | StepGuideStoryblok | ThreeDElementStoryblok - | WideSimpleCarouselStoryblok )[]; seoTitle: string; seoDescription: string; @@ -262,40 +311,45 @@ export interface PageStoryblok { [k: string]: any; } -export interface PricingStoryblok { - tiers?: PricingTierStoryblok[]; +export interface PricingTableStoryblok { + tiers?: PricingTableTierStoryblok[]; yearlyDiscountPercentage?: string; extraServiceEnabled?: boolean; - extraService?: PricingExtraServiceStoryblok[]; - component: "pricing"; + extraService?: PricingTableExtraServiceStoryblok[]; + marginTop: "none" | "base" | "lg"; + marginBottom: "none" | "base" | "lg"; + maxWidth: "small" | "base" | "none"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: AssetStoryblok; + component: "pricingTable"; _uid: string; [k: string]: any; } -export interface PricingExtraServiceStoryblok { +export interface PricingTableExtraServiceStoryblok { text: string; cost: string; - component: "pricingExtraService"; + component: "pricingTableExtraService"; _uid: string; [k: string]: any; } -export interface PricingTierStoryblok { +export interface PricingTableTierStoryblok { name: string; icon: ImageStoryblok[]; price?: string; description: string; - features: PricingTierFeatureStoryblok[]; + features: PricingTableTierFeatureStoryblok[]; link: LinkStoryblok[]; popular?: boolean; - component: "pricingTier"; + component: "pricingTableTier"; _uid: string; [k: string]: any; } -export interface PricingTierFeatureStoryblok { +export interface PricingTableTierFeatureStoryblok { text: string; - component: "pricingTierFeature"; + component: "pricingTableTierFeature"; _uid: string; [k: string]: any; } @@ -318,27 +372,14 @@ export interface RichTextStoryblok { [k: string]: any; } -export interface SimpleCarouselStoryblok { - slides: SimpleCarouselSlideStoryblok[]; - marginTop: "none" | "base" | "lg"; - marginBottom: "none" | "base" | "lg"; - component: "simpleCarousel"; - _uid: string; - [k: string]: any; -} - -export interface SimpleCarouselSlideStoryblok { - image: ImageStoryblok[]; - component: "simpleCarouselSlide"; - _uid: string; - [k: string]: any; -} - export interface StepGuideStoryblok { stepGuideItem: StepGuideItemStoryblok[]; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; link: LinkStoryblok[]; + maxWidth: "base" | "none" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: AssetStoryblok; component: "stepGuide"; _uid: string; [k: string]: any; @@ -357,23 +398,10 @@ export interface ThreeDElementStoryblok { threeDModel: "donut" | "globe" | "kubik-rubik"; marginTop: "none" | "base" | "lg"; marginBottom: "none" | "base" | "lg"; + maxWidth: "base" | "none" | "small"; + backgroundColor: "light" | "light-gray" | "dark-gray" | "dark" | "none"; + backgroundImage?: AssetStoryblok; component: "threeDElement"; _uid: string; [k: string]: any; } - -export interface WideSimpleCarouselStoryblok { - slides: WideSimpleCarouselSlideStoryblok[]; - marginTop: "none" | "base" | "lg"; - marginBottom: "none" | "base" | "lg"; - component: "wideSimpleCarousel"; - _uid: string; - [k: string]: any; -} - -export interface WideSimpleCarouselSlideStoryblok { - image: ImageStoryblok[]; - component: "wideSimpleCarouselSlide"; - _uid: string; - [k: string]: any; -} diff --git a/apps/storyblok/src/generated/presets.production.json b/apps/storyblok/src/generated/presets.production.json index b65ee22..303f8d4 100644 --- a/apps/storyblok/src/generated/presets.production.json +++ b/apps/storyblok/src/generated/presets.production.json @@ -280,462 +280,592 @@ "description": "" }, { - "id": 2282748, - "name": "Clickable logo", + "id": 2340541, + "name": "Carousel Slider", "preset": { - "_uid": "e23f2764-5d4f-4be8-b0f2-d478cfc99627", - "link": [ + "_uid": "30ecfbb2-2449-4bd1-a711-39ccf618b8f7", + "text": [ { - "_uid": "807c584c-ea99-42d2-ad48-ab2ae614943d", - "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", - "url": "", - "linktype": "story", - "fieldtype": "multilink", - "cached_url": "demo" + "_uid": "524a3ed7-7b22-4b05-bbb8-8d7429b12890", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 2 + }, + "content": [ + { + "text": "Explore our collection", + "type": "text" + } + ] + } + ] }, - "text": "prismic", - "variant": "default", - "component": "link" + "component": "richText", + "alignVariant": "center", + "removeInnerMargins": false } ], - "type": "clickableLogo", - "image": [ + "effect": "slide", + "params": [ { - "_uid": "5c493f90-9667-43a9-ae78-76e8f32c2453", - "asset": { - "id": 17287728, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/388x100/0bcf1045aa/presentation-cms-kit.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "3/1" + "_uid": "ee30c555-494c-40d3-8e4a-ce5539abd358", + "loop": true, + "component": "carouselParams", + "spaceBetween": "", + "slidesPerView": "" } ], - "component": "logoItem" - }, - "component_id": 6275705, - "space_id": 293915, - "created_at": "2024-09-10T14:41:55.878Z", - "updated_at": "2024-09-10T14:42:04.527Z", - "image": "//a.storyblok.com/f/293915/x/be177fdd44/screenshot-2024-09-10-at-16-41-42.png", - "color": "", - "icon": "", - "description": "" - }, - { - "id": 2282726, - "name": "CMS logos", - "preset": { - "_uid": "bdbaa06b-9176-4c11-a02a-34e176f58397", - "items": [ + "slides": [ { - "_uid": "9258df26-83c8-4681-94bc-fa315936529d", - "link": [], - "type": "logo", - "image": [ + "_uid": "331ee89b-86ca-499b-bf43-37f12aa52bf2", + "text": [ { - "_uid": "8a9f9255-6b31-4143-b22e-ec8c9c161265", - "asset": { - "id": 17287728, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/388x100/0bcf1045aa/presentation-cms-kit.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false + "_uid": "0dfd7093-a20e-4654-b220-2adc2d0f2ff1", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 3 + }, + "content": [ + { + "text": "Phasellus ut sagittis sapien", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vel congue est, sed ullamcorper sapien. Cras purus leo, rutrum tincidunt lacus id, pretium commodo risus. Maecenas auctor erat vel pretium sagittis.", + "type": "text" + } + ] + } + ] }, - "component": "image", - "aspectRatio": "3/1" + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": false } ], - "component": "logoItem" - }, - { - "_uid": "56b53e1b-a169-43fa-86a0-88a803d9f2d2", - "link": [], - "type": "logo", "image": [ { - "_uid": "bceff348-67c4-42a5-89aa-cef66c411455", + "_uid": "3e8a01e0-6c16-40c4-abb7-de2d347bf517", "asset": { - "id": 17287729, + "id": 18057065, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/828x178/1c15e68942/presentation-cms-kit-1.webp", + "filename": "https://a.storyblok.com/f/293915/960x960/ffc4b04f00/app-launch.svg", "copyright": "", "fieldtype": "asset", "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "4/1" + "aspectRatio": "1/1" } ], - "component": "logoItem" + "component": "carouselSlide" }, { - "_uid": "116b138f-d312-48f7-ae22-138643828a39", - "link": [], - "type": "logo", + "_uid": "7209f1a7-e6a3-4275-b6db-fc0777680647", + "text": [ + { + "_uid": "54cd2fe4-8d02-451c-af86-59b42e71e852", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 3 + }, + "content": [ + { + "text": "Praesent justo elit", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "raesent quis pellentesque dui. Duis venenatis felis et ante hendrerit tempus. Nulla libero dolor, faucibus vel sapien sit amet, accumsan condimentum ligula.", + "type": "text" + } + ] + } + ] + }, + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": false + } + ], "image": [ { - "_uid": "90bcb4bd-1c24-417c-ae39-172dc5cea653", + "_uid": "419c26e9-139a-4485-8ef5-8a29a9f7ee11", "asset": { - "id": 17287731, + "id": 18057068, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/716x200/ab7a436b03/presentation-cms-kit-2.webp", + "filename": "https://a.storyblok.com/f/293915/960x960/22886aae41/student-with-diploma.svg", "copyright": "", "fieldtype": "asset", "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "3/1" + "aspectRatio": "1/1" } ], - "component": "logoItem" + "component": "carouselSlide" }, { - "_uid": "304f4e70-f4b0-4fd7-8e18-6840d00bb834", - "link": [], - "type": "logo", + "_uid": "6e0f042b-1e78-43ea-a873-5e39d45155df", + "text": [ + { + "_uid": "9d181c02-b28e-457e-8666-7e889058acd1", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 3 + }, + "content": [ + { + "text": "Nullam massa tortor", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Pellentesque faucibus enim sed mi gravida feugiat. Duis a massa commodo, aliquam justo eu, aliquam purus. Aenean mi eros, condimentum vel euismod id, sodales id sem. Etiam sed erat nisl.", + "type": "text" + } + ] + } + ] + }, + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": false + } + ], "image": [ { - "_uid": "dcc516e3-445e-4a58-8b39-2975504a9fa0", + "_uid": "27926f11-6f59-4c5a-a53d-8032bbba460c", "asset": { - "id": 17287730, + "id": 18057069, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/544x200/9348d1a6bb/presentation-cms-kit-3.webp", + "filename": "https://a.storyblok.com/f/293915/960x960/86e30de7f4/team-idea.svg", "copyright": "", "fieldtype": "asset", "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "3/1" + "aspectRatio": "1/1" } ], - "component": "logoItem" + "component": "carouselSlide" }, { - "_uid": "be8bbdd3-a997-4c48-acf9-20866fc90533", - "link": [], - "type": "logo", + "_uid": "35f417cd-b047-45a8-a45b-41ef28183dc0", + "text": [ + { + "_uid": "fdd929c5-cb78-44e7-b529-786c032eab99", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 3 + }, + "content": [ + { + "text": "Pellentesque fringilla neque tortor", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Nam posuere, sapien ultrices porttitor fermentum, enim enim facilisis neque, quis dictum eros sapien a metus. Cras magna ex, euismod in turpis vel, mollis tincidunt est. In feugiat quam at purus scelerisque dictum.", + "type": "text" + } + ] + } + ] + }, + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": false + } + ], "image": [ { - "_uid": "37e3c6e0-8186-459a-a5a2-81feaee18ded", + "_uid": "222ede77-c473-42a9-9417-722a3f4f4e52", "asset": { - "id": 17287732, + "id": 18057064, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/721x200/7d5fc08b39/presentation-cms-kit-4.webp", + "filename": "https://a.storyblok.com/f/293915/960x960/b5c805d300/genius.svg", "copyright": "", "fieldtype": "asset", "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "3/1" + "aspectRatio": "1/1" } ], - "component": "logoItem" - } - ], - "theme": "light", - "component": "logos", - "marginTop": "base", - "alignVariant": "center", - "marginBottom": "base" - }, - "component_id": 6275709, - "space_id": 293915, - "created_at": "2024-09-10T14:36:27.751Z", - "updated_at": "2024-09-20T16:06:57.753Z", - "image": "//a.storyblok.com/f/293915/x/cbb2ba4bd0/screenshot-2024-09-10-at-16-36-10.png", - "color": "", - "icon": "", - "description": "" - }, - { - "id": 2313387, - "name": "Custom", - "preset": { - "_uid": "3a99b80d-65d5-43f5-9a8b-fa8009f4e311", - "text": [ + "component": "carouselSlide" + }, { - "_uid": "e1007084-eff5-470a-b2b0-892e882c28a6", - "content": { - "type": "doc", - "content": [ - { - "type": "heading", - "attrs": { - "level": 1 - }, + "_uid": "147eaeca-0d45-4f69-a826-38abf4134b2e", + "text": [ + { + "_uid": "667ac57d-6d8e-470f-983e-b7ea8206d96a", + "content": { + "type": "doc", "content": [ { - "text": "Exploring the World of DIY Crafts", - "type": "text" + "type": "heading", + "attrs": { + "level": 3 + }, + "content": [ + { + "text": "Duis at fringilla ligula", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Suspendisse non nisi ornare, laoreet sem et, vehicula ante. Integer aliquet pharetra imperdiet. Duis at elementum sapien. Maecenas eget enim a nisl posuere cursus.", + "type": "text" + } + ] } ] }, - { - "type": "paragraph", + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": false + } + ], + "image": [ + { + "_uid": "3f48fae9-2684-4191-9bc6-e7db8b477a50", + "asset": { + "id": 18057071, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/960x960/598514ea61/studying.svg", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "component": "carouselSlide" + }, + { + "_uid": "562e7469-cde4-42df-9683-68dccca430e1", + "text": [ + { + "_uid": "a4690fa6-0d7c-4540-98d3-c51697a49b03", + "content": { + "type": "doc", "content": [ { - "text": " Dive into the world of DIY crafts with easy and creative projects for all skill levels. From handmade gifts to home decor, unleash your creativity and add a personal touch to your surroundings. Let's get crafting!", - "type": "text" + "type": "heading", + "attrs": { + "level": 3 + }, + "content": [ + { + "text": "Donec mattis eros in accumsan dapibus", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Sed volutpat feugiat ligula, sed facilisis purus rutrum vitae. Quisque aliquam velit a elit egestas ullamcorper. Duis vestibulum egestas augue quis posuere.", + "type": "text" + } + ] } ] - } - ] - }, - "component": "richText", - "alignVariant": "center", - "removeInnerMargins": false - } - ], - "image": [ - { - "_uid": "8e523525-e55e-4d84-8ef7-f4338ddbcede", - "asset": { - "id": 17605716, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/284x260/c2ace3521b/screenshot-2024-10-07-at-22-01-09.png", - "copyright": "", - "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "1/1" - } - ], - "links": [ - { - "_uid": "2c8c692f-6a31-4967-b160-6cb30374f4a5", - "link": { - "id": "19601884-a1af-4b99-bd95-1a3ca01d5b7a", - "url": "", - "linktype": "story", - "fieldtype": "multilink", - "cached_url": "home" - }, - "text": "Home", - "variant": "footerNav", - "component": "link" - }, - { - "_uid": "653dae7d-dc6e-4a04-b093-bfa3a7477a45", - "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", - "url": "", - "linktype": "story", - "fieldtype": "multilink", - "cached_url": "demo" - }, - "text": "Blog", - "variant": "footerNav", - "component": "link" - }, - { - "_uid": "11616387-b4e3-4759-ad61-d9726143b940", - "link": { - "id": "", - "url": "https://app.storyblok.com/#/me/spaces/293915", - "target": "_blank", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://app.storyblok.com/#/me/spaces/293915" - }, - "text": "Storyblok", - "variant": "footerNav", - "component": "link" - }, - { - "_uid": "3ec0f58f-5f27-4a56-b49a-55ac169282ff", - "link": { - "id": "", - "url": "https://github.com/focusreactive/turbo-cms-kit", - "target": "_blank", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://github.com/focusreactive/turbo-cms-kit" - }, - "text": "GitHub", - "variant": "footerNav", - "component": "link" + }, + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": false + } + ], + "image": [ + { + "_uid": "6db5efa1-5084-4bce-9ea5-277cab9bdfb1", + "asset": { + "id": 18057067, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/960x960/a6b5e81714/calculator.svg", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "component": "carouselSlide" }, { - "_uid": "b683a9f1-24b9-43be-94a7-2ebf9621dccc", - "link": { - "id": "", - "url": "https://trello.com/b/2XLLkCma/cms-kit", - "target": "_blank", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://trello.com/b/2XLLkCma/cms-kit" - }, - "text": "Trello", - "variant": "footerNav", - "component": "link" + "_uid": "59b1c3e6-be06-422c-84ce-fb724640f099", + "text": [ + { + "_uid": "0297656b-5430-413b-bcc7-3fc325bb3712", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 3 + }, + "content": [ + { + "text": "Mauris vitae libero turpis", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Vestibulum fermentum sem ut velit blandit, sit amet malesuada metus luctus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", + "type": "text" + } + ] + } + ] + }, + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": false + } + ], + "image": [ + { + "_uid": "5dbac30d-46fd-492b-b70b-4d4315f4dc9f", + "asset": { + "id": 18057066, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/960x960/98463efc0c/engineer.svg", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "component": "carouselSlide" }, { - "_uid": "db9248fe-752e-4942-9ecf-035093916b60", - "link": { - "id": "", - "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" - }, - "text": "Vercel", - "variant": "footerNav", - "component": "link" - } - ], - "component": "footer", - "copywriteText": "2024 @ FocusReactive" - }, - "component_id": 6398307, - "space_id": 293915, - "created_at": "2024-10-09T16:08:39.575Z", - "updated_at": "2024-10-09T16:08:39.575Z", - "image": "//a.storyblok.com/f/293915/x/ad6aa235b1/screenshot-2024-10-09-at-18-08-22.png", - "color": "", - "icon": "", - "description": "" - }, - { - "id": 2312483, - "name": "Custom", - "preset": { - "_uid": "4ad7fd52-a576-4601-9889-04b46142e382", - "image": [ - { - "_uid": "106d9002-a1c3-4f45-a2aa-8ff515b167e5", - "asset": { - "id": 17605716, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/284x260/c2ace3521b/screenshot-2024-10-07-at-22-01-09.png", - "copyright": "", - "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "16/9" - } - ], - "links": [ - { - "_uid": "40490f01-340c-429a-8658-7cc2a7cb4ac3", - "link": { - "id": "", - "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" - }, - "text": "Vercel", - "variant": "default", - "component": "link" - }, - { - "_uid": "eadbb7ad-f909-42d0-a16e-3279b3699734", - "link": { - "id": "", - "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" - }, - "text": "Vercel", - "variant": "default", - "component": "link" + "_uid": "385f061f-a375-40cf-808b-5c852d6616b9", + "text": [ + { + "_uid": "06ed8342-d06b-49e9-a83d-c7a1d2775371", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 3 + }, + "content": [ + { + "text": "Cras ullamcorper auctor bibendum", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla volutpat elementum risus eget blandit. Vestibulum accumsan felis id mauris consectetur blandit.", + "type": "text" + } + ] + } + ] + }, + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": false + } + ], + "image": [ + { + "_uid": "ae6ca0d5-a573-4552-acee-af3211a2239a", + "asset": { + "id": 18057063, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/960x960/5b72f21a56/presentation.svg", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "component": "carouselSlide" }, { - "_uid": "f52b36a2-29d5-4b86-a79b-ddd7d135b274", - "link": { - "id": "", - "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" - }, - "text": "Vercel", - "variant": "default", - "component": "link" + "_uid": "d29ddcba-54c3-4624-97ff-b03adcafb05d", + "text": [ + { + "_uid": "1c662c04-fd33-444c-8260-744581b92698", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 3 + }, + "content": [ + { + "text": "Praesent vestibulum", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Proin ex nisi, ultrices nec posuere sit amet, scelerisque eu metus. Donec tristique at felis ut scelerisque. Nam id lectus id urna eleifend dignissim.", + "type": "text" + } + ] + } + ] + }, + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": false + } + ], + "image": [ + { + "_uid": "4a885d14-2498-44fc-b2d0-66d3d9e8f26c", + "asset": { + "id": 18057070, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/960x960/bf6793fa17/taking-notes.svg", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "component": "carouselSlide" } ], - "component": "header", - "alignVariant": "right" + "maxWidth": "base", + "component": "carousel", + "marginTop": "base", + "marginBottom": "base", + "backgroundColor": "none" }, - "component_id": 6394530, + "component_id": 6391276, "space_id": 293915, - "created_at": "2024-10-09T05:55:16.076Z", - "updated_at": "2024-10-09T05:55:16.076Z", - "image": "//a.storyblok.com/f/293915/x/a6940e5b40/screenshot-2024-10-09-at-07-55-06.png", + "created_at": "2024-11-04T09:36:56.351Z", + "updated_at": "2024-11-06T09:41:15.597Z", + "image": "//a.storyblok.com/f/293915/x/1d5cfd198a/screenshot-2024-11-04-at-10-32-09.png", "color": "", "icon": "", "description": "" }, { - "id": 2282729, - "name": "Dark align center", + "id": 2282748, + "name": "Clickable logo", "preset": { - "_uid": "6b6b4cb1-e801-4381-aea7-73fc840521c9", - "links": [ - { - "_uid": "4f9a8d83-a1c3-4813-9629-cca313b7cf05", - "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", - "url": "", - "linktype": "story", - "fieldtype": "multilink", - "cached_url": "demo" - }, - "text": "Get Started​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‍‌‍​‌​​​​‍​‌‍​‌​​‍​​​​‍​‍‌​‌‍‌‍‌‌​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‍‌‍​‌​‌‍‌‍‌‍‌‍​‌‌‍‌‍‌‍‌​​​​​‍‌​‌‌​‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍‌‍​‌‌‍​​​​​​​​​‍​​‌​​‍‌​‌‌‍​​‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍‌‌‍‍‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌​​​‌‌‍‌​​‌​​​​‌‍​‌‍‌‌​‌​​‌​‌‍‌​​‍​‌‍‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‍‌‍​‌​​​​‍​‌‍​‌​​‍​​​​‍​‍‌​‌‍‌‍‌‌​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‍‌‍​‌​‌‍‌‍‌‍‌‍​‌‌‍‌‍‌‍‌​​​​​‍‌​‌‌​‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍‌‍​‌‌‍​​​​​​​​​‍​​‌​​‍‌​‌‌‍​​‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍‌‌‍‍‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌​​​‌‌‍‌​​‌​​​​‌‍​‌‍‌‌​‌​​‌​‌‍‌​​‍​‌‍‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌", - "variant": "primary", - "component": "link" - }, + "_uid": "e23f2764-5d4f-4be8-b0f2-d478cfc99627", + "link": [ { - "_uid": "9a1fd9d3-1d13-408d-bd56-fb0221dcb004", + "_uid": "807c584c-ea99-42d2-ad48-ab2ae614943d", "link": { "id": "5d416347-de08-4adb-b496-00b0a083de3a", "url": "", @@ -743,738 +873,226 @@ "fieldtype": "multilink", "cached_url": "demo" }, - "text": "Try Now​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‍‌‍​‌​​​​‍​‌‍​‌​​‍​​​​‍​‍‌​‌‍‌‍‌‌​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‍‌‍​‌​‌‍‌‍‌‍‌‍​‌‌‍‌‍‌‍‌​​​​​‍‌​‌‌​‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍‌‍​‌‌‍​​​​​​​​​‍​​‌​​‍‌​‌‌‍​​‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍‌‌‍‍‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​‍‌​‍​​​​‌‌​‍​​​​​‌​‌‍‌‍‌‍​‌‌‍​‌‌‍‌​​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‍‌‍​‌​​​​‍​‌‍​‌​​‍​​​​‍​‍‌​‌‍‌‍‌‌​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‍‌‍​‌​‌‍‌‍‌‍‌‍​‌‌‍‌‍‌‍‌​​​​​‍‌​‌‌​‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍‌‍​‌‌‍​​​​​​​​​‍​​‌​​‍‌​‌‌‍​​‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍‌‌‍‍‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​‍‌​‍​​​​‌‌​‍​​​​​‌​‌‍‌‍‌‍​‌‌‍​‌‌‍‌​​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌", - "variant": "secondary", + "text": "prismic", + "variant": "default", "component": "link" } ], - "theme": "dark", - "component": "linksList", - "marginTop": "none", - "alignVariant": "center", - "marginBottom": "none" - }, - "component_id": 6275825, - "space_id": 293915, - "created_at": "2024-09-10T14:37:53.585Z", - "updated_at": "2024-09-20T16:05:18.030Z", - "image": "//a.storyblok.com/f/293915/x/f1a5355ada/screenshot-2024-09-10-at-16-37-34.png", - "color": "", - "icon": "", - "description": "" - }, - { - "id": 2282725, - "name": "Dark cards with text and image", - "preset": { - "_uid": "628696c0-af9f-4875-bdd1-559e379d6915", - "theme": "dark", - "columns": [ + "type": "clickableLogo", + "image": [ { - "_uid": "cef1161e-4b5e-40f6-bed3-dfa80b944a46", - "content": { - "type": "doc", - "content": [ - { - "type": "paragraph", - "content": [ - { - "text": "Deploy faster", - "type": "text", - "marks": [ - { - "type": "bold" - } - ] - } - ] - }, - { - "type": "heading", - "attrs": { - "level": 2 - }, - "content": [ - { - "text": "Everything you need to deploy your app", - "type": "text" - } - ] - }, - { - "type": "paragraph", - "content": [ - { - "text": "Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.", - "type": "text" - } - ] - }, - { - "type": "paragraph" - }, - { - "type": "blok", - "attrs": { - "id": "4594bedd-8168-4d1d-be76-3fe3a2229a03", - "body": [ - { - "_uid": "i-fc854d37-1aca-4a9a-a17a-19bfee06a815", - "asset": { - "id": 17287625, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/640x360/9995eb1885/presentation-1792x1008.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "16/9" - }, - { - "_uid": "i-8ac2d47b-3761-45e7-aa19-4cedf535700a", - "items": [ - { - "_uid": "60e0fe9b-0395-4355-8b74-ac57fd368d91", - "link": [], - "image": [ - { - "_uid": "5cbec89c-54cc-4d13-b1bc-129d6ba30580", - "asset": { - "id": 17287559, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "1/1" - } - ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" - }, - { - "_uid": "7f579abd-b17e-43d5-9895-30fdbad2ac93", - "link": [], - "image": [ - { - "_uid": "69a1cbfc-2f36-4064-a41a-291df346dfc0", - "asset": { - "id": 17287559, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "1/1" - } - ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" - }, - { - "_uid": "430a9b32-0c54-4452-9f9a-30698cc39ac5", - "link": [], - "image": [ - { - "_uid": "995c2519-5dd5-4f6e-8ec5-63cfbbcefe4d", - "asset": { - "id": 17287559, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "1/1" - } - ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" - }, - { - "_uid": "c50de18a-3ecb-4824-b1c9-ad1a2a439fff", - "link": [], - "image": [ - { - "_uid": "477f24b7-b201-42a8-8dda-11ef18616fc6", - "asset": { - "id": 17287559, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "1/1" - } - ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" - }, - { - "_uid": "e28d7b2b-1876-416d-aae1-b03b4406457b", - "link": [], - "image": [ - { - "_uid": "f6ec3ca7-1702-4eac-ba71-181456375190", - "asset": { - "id": 17287559, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "1/1" - } - ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" - }, - { - "_uid": "6be5bb6c-ca47-4c33-aee9-9cb7e010c594", - "link": [], - "image": [ - { - "_uid": "e1c2c9fc-89b1-4668-9e65-c385d501d12d", - "asset": { - "id": 17287559, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "1/1" - } - ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" - } - ], - "theme": "dark", - "columns": "3", - "component": "cardsGrid", - "marginTop": "none", - "marginBottom": "none" - } - ] - } - } - ] + "_uid": "5c493f90-9667-43a9-ae78-76e8f32c2453", + "asset": { + "id": 17287728, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/388x100/0bcf1045aa/presentation-cms-kit.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false }, - "component": "richText", - "alignVariant": "center", - "removeInnerMargins": false - } - ], - "component": "copy", - "marginTop": "none", - "marginBottom": "none", - "isReversedOnMobile": false + "component": "image", + "aspectRatio": "3/1" + } + ], + "component": "logoItem" }, - "component_id": 6030874, + "component_id": 6275705, "space_id": 293915, - "created_at": "2024-09-10T14:35:54.629Z", - "updated_at": "2024-09-20T15:56:23.276Z", - "image": "//a.storyblok.com/f/293915/x/cf02d2ac96/screenshot-2024-09-10-at-16-35-27.png", + "created_at": "2024-09-10T14:41:55.878Z", + "updated_at": "2024-09-10T14:42:04.527Z", + "image": "//a.storyblok.com/f/293915/x/be177fdd44/screenshot-2024-09-10-at-16-41-42.png", "color": "", "icon": "", "description": "" }, { - "id": 2282765, - "name": "Dark three columns", + "id": 2282726, + "name": "CMS logos", "preset": { - "_uid": "58d29a3f-bb4a-4630-af7a-cb6bdd189426", + "_uid": "bdbaa06b-9176-4c11-a02a-34e176f58397", "items": [ { - "_uid": "3140fa23-24c2-4085-9366-5ea101a705a0", - "link": [], - "image": [ - { - "_uid": "a0137796-c53b-4ed1-98f3-f49583ed03d1", - "asset": { - "id": 17287559, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", - "copyright": "", - "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "1/1" - } - ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" - }, - { - "_uid": "5974f486-c63a-47dc-a35c-36fbdc0b505c", + "_uid": "9258df26-83c8-4681-94bc-fa315936529d", "link": [], + "type": "logo", "image": [ { - "_uid": "0dbc6ffc-1c9a-4dcf-a31a-4cebecc1188a", + "_uid": "8a9f9255-6b31-4143-b22e-ec8c9c161265", "asset": { - "id": 17287559, + "id": 17287728, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "filename": "https://a.storyblok.com/f/293915/388x100/0bcf1045aa/presentation-cms-kit.webp", "copyright": "", "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, + "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "1/1" + "aspectRatio": "3/1" } ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + "component": "logoItem" }, { - "_uid": "d45fc1d8-649f-43b1-8de5-bc698aa857f7", + "_uid": "56b53e1b-a169-43fa-86a0-88a803d9f2d2", "link": [], + "type": "logo", "image": [ { - "_uid": "3e2b0e81-bcaa-463f-9aa0-dc42c6e6f18a", + "_uid": "bceff348-67c4-42a5-89aa-cef66c411455", "asset": { - "id": 17287559, + "id": 17287729, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "filename": "https://a.storyblok.com/f/293915/828x178/1c15e68942/presentation-cms-kit-1.webp", "copyright": "", "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, + "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "1/1" + "aspectRatio": "4/1" } ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + "component": "logoItem" }, { - "_uid": "2ce40213-bc5f-421c-afaf-575c23d2f805", + "_uid": "116b138f-d312-48f7-ae22-138643828a39", "link": [], + "type": "logo", "image": [ { - "_uid": "184df845-6e73-46cd-82c3-4b9aec804a46", + "_uid": "90bcb4bd-1c24-417c-ae39-172dc5cea653", "asset": { - "id": 17287559, + "id": 17287731, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "filename": "https://a.storyblok.com/f/293915/716x200/ab7a436b03/presentation-cms-kit-2.webp", "copyright": "", "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, + "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "1/1" + "aspectRatio": "3/1" } ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + "component": "logoItem" }, { - "_uid": "663cb8fa-509f-4989-8f3e-f93958e800ea", + "_uid": "304f4e70-f4b0-4fd7-8e18-6840d00bb834", "link": [], + "type": "logo", "image": [ { - "_uid": "097a055a-bc80-4981-896b-71b822f6820d", + "_uid": "dcc516e3-445e-4a58-8b39-2975504a9fa0", "asset": { - "id": 17287559, + "id": 17287730, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "filename": "https://a.storyblok.com/f/293915/544x200/9348d1a6bb/presentation-cms-kit-3.webp", "copyright": "", "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, + "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "1/1" + "aspectRatio": "3/1" } ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + "component": "logoItem" }, { - "_uid": "e3be2f1e-380c-4f90-a2e5-b7bb8d4dc8b4", + "_uid": "be8bbdd3-a997-4c48-acf9-20866fc90533", "link": [], + "type": "logo", "image": [ { - "_uid": "66d843c7-f23a-4d27-8389-04d03cce6122", + "_uid": "37e3c6e0-8186-459a-a5a2-81feaee18ded", "asset": { - "id": 17287559, + "id": 17287732, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "filename": "https://a.storyblok.com/f/293915/721x200/7d5fc08b39/presentation-cms-kit-4.webp", "copyright": "", "fieldtype": "asset", - "meta_data": { - "alt": "", - "title": "", - "source": "", - "copyright": "" - }, + "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "1/1" + "aspectRatio": "3/1" } ], - "style": "icon-left", - "title": "Push to deploy", - "component": "defaultCard", - "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + "component": "logoItem" } ], - "theme": "dark", - "columns": "3", - "component": "cardsGrid", + "theme": "light", + "component": "logos", "marginTop": "base", + "alignVariant": "center", "marginBottom": "base" }, - "component_id": 6275957, - "space_id": 293915, - "created_at": "2024-09-10T14:44:18.486Z", - "updated_at": "2024-09-20T16:04:35.594Z", - "image": "//a.storyblok.com/f/293915/x/22cc4febaa/screenshot-2024-09-10-at-16-44-01.png", - "color": "", - "icon": "", - "description": "" - }, - { - "id": 2337115, - "name": "Default", - "preset": { - "_uid": "611c74ab-fad3-4b2f-9ee6-ba15543e98d3", - "text": " Add your first product", - "image": [ - { - "_uid": "2e1f5bca-6409-430a-b3aa-1d9fc7ddbe18", - "asset": { - "id": 17902334, - "alt": "call us", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/960x960/6a4a666d16/call-us.svg", - "copyright": "", - "fieldtype": "asset", - "meta_data": { - "alt": "call us", - "title": "", - "source": "", - "copyright": "" - }, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "3/1" - } - ], - "number": "01", - "component": "stepGuideItem" - }, - "component_id": 6492255, + "component_id": 6275709, "space_id": 293915, - "created_at": "2024-10-30T16:11:36.349Z", - "updated_at": "2024-10-30T16:20:36.391Z", - "image": "//a.storyblok.com/f/293915/x/8becce59cc/screenshot-2024-10-30-at-17-11-17.png", + "created_at": "2024-09-10T14:36:27.751Z", + "updated_at": "2024-09-20T16:06:57.753Z", + "image": "//a.storyblok.com/f/293915/x/cbb2ba4bd0/screenshot-2024-09-10-at-16-36-10.png", "color": "", "icon": "", "description": "" }, { - "id": 2313388, - "name": "Default", + "id": 2313387, + "name": "Custom", "preset": { "_uid": "3a99b80d-65d5-43f5-9a8b-fa8009f4e311", "text": [ { - "_uid": "3fa6eb70-0e7c-4286-a63e-1e7c5ed98e9b", + "_uid": "e1007084-eff5-470a-b2b0-892e882c28a6", "content": { "type": "doc", "content": [ { "type": "heading", "attrs": { - "level": 2 + "level": 1 }, "content": [ { - "text": "Flowbite", - "type": "text" - } - ] - }, - { - "type": "paragraph", - "content": [ - { - "text": "Open-source library of over 400+ web components and interactive elements built for better web.", + "text": "Exploring the World of DIY Crafts", "type": "text" } ] - } - ] - }, - "component": "richText", - "alignVariant": "center", - "removeInnerMargins": false - }, - { - "_uid": "a381bd2a-57ae-40bd-b136-74cce1ef3662", - "content": { - "type": "doc", - "content": [ - { - "type": "paragraph" }, { - "type": "blok", - "attrs": { - "id": "8033a188-9f77-4d4d-9670-e45ef9ec159e", - "body": [ - { - "_uid": "i-0a68bab8-2252-4329-9218-096c3f41fbe2", - "links": [ - { - "_uid": "2b3acef4-9e76-4a4e-b906-4f699f1bc4f1", - "link": { - "id": "19601884-a1af-4b99-bd95-1a3ca01d5b7a", - "url": "", - "linktype": "story", - "fieldtype": "multilink", - "cached_url": "home" - }, - "text": "Home", - "variant": "footerNav", - "component": "link" - }, - { - "_uid": "cbd95eb7-34bc-4998-9532-bd26c9c7b655", - "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", - "url": "", - "linktype": "story", - "fieldtype": "multilink", - "cached_url": "demo" - }, - "text": "Blog", - "variant": "footerNav", - "component": "link" - }, - { - "_uid": "f85e677c-c635-42c0-bb49-8eec642347f5", - "link": { - "id": "", - "url": "https://app.storyblok.com/#/me/spaces/293915", - "target": "_blank", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://app.storyblok.com/#/me/spaces/293915" - }, - "text": "Storyblok", - "variant": "footerNav", - "component": "link" - }, - { - "_uid": "9865fbc2-82c3-47ac-98f2-50731c98cc6e", - "link": { - "id": "", - "url": "https://github.com/focusreactive/turbo-cms-kit", - "target": "_blank", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://github.com/focusreactive/turbo-cms-kit" - }, - "text": "GitHub", - "variant": "footerNav", - "component": "link" - }, - { - "_uid": "fc242a8f-846d-4057-bf04-fd590bf24450", - "link": { - "id": "", - "url": "https://trello.com/b/2XLLkCma/cms-kit", - "target": "_blank", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://trello.com/b/2XLLkCma/cms-kit" - }, - "text": "Trello", - "variant": "footerNav", - "component": "link" - }, - { - "_uid": "08ef19b8-2066-4dfb-ac32-1a038aa7c215", - "link": { - "id": "", - "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" - }, - "text": "Vercel", - "variant": "footerNav", - "component": "link" - } - ], - "theme": "light", - "component": "linksList", - "marginTop": "none", - "alignVariant": "left", - "marginBottom": "none" - } - ] - } + "type": "paragraph", + "content": [ + { + "text": " Dive into the world of DIY crafts with easy and creative projects for all skill levels. From handmade gifts to home decor, unleash your creativity and add a personal touch to your surroundings. Let's get crafting!", + "type": "text" + } + ] } ] }, @@ -1485,337 +1103,636 @@ ], "image": [ { - "_uid": "f6c6d28e-e4cf-49d6-a2ae-2a5b404ccf3d", + "_uid": "8e523525-e55e-4d84-8ef7-f4338ddbcede", "asset": { - "id": 17593700, + "id": 17605716, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/3840x2160/2e8c505a38/nike-logo.png", + "filename": "https://a.storyblok.com/f/293915/284x260/c2ace3521b/screenshot-2024-10-07-at-22-01-09.png", "copyright": "", "fieldtype": "asset", "meta_data": {}, "is_external_url": false }, "component": "image", - "aspectRatio": "16/9" + "aspectRatio": "1/1" } ], "links": [ { - "_uid": "49969ae3-9a59-4f02-91ce-143d983f6b43", + "_uid": "2c8c692f-6a31-4967-b160-6cb30374f4a5", "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "id": "19601884-a1af-4b99-bd95-1a3ca01d5b7a", "url": "", "linktype": "story", "fieldtype": "multilink", - "cached_url": "blog" + "cached_url": "home" }, - "text": "link 1", - "variant": "default", + "text": "Home", + "variant": "footerNav", "component": "link" }, { - "_uid": "8531a335-6ba7-41ab-9842-e4a518938f14", + "_uid": "653dae7d-dc6e-4a04-b093-bfa3a7477a45", "link": { "id": "5d416347-de08-4adb-b496-00b0a083de3a", "url": "", "linktype": "story", "fieldtype": "multilink", - "cached_url": "blog" + "cached_url": "demo" }, - "text": "link 1", - "variant": "default", + "text": "Blog", + "variant": "footerNav", "component": "link" }, { - "_uid": "c1a83470-ac92-4d42-b6b7-2d77423a99a6", + "_uid": "11616387-b4e3-4759-ad61-d9726143b940", "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", - "url": "", - "linktype": "story", + "id": "", + "url": "https://app.storyblok.com/#/me/spaces/293915", + "target": "_blank", + "linktype": "url", "fieldtype": "multilink", - "cached_url": "blog" + "cached_url": "https://app.storyblok.com/#/me/spaces/293915" }, - "text": "link 1", - "variant": "default", + "text": "Storyblok", + "variant": "footerNav", "component": "link" }, { - "_uid": "0194af4d-4f93-4b18-a721-87823c1a8ed2", + "_uid": "3ec0f58f-5f27-4a56-b49a-55ac169282ff", "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", - "url": "", - "linktype": "story", + "id": "", + "url": "https://github.com/focusreactive/turbo-cms-kit", + "target": "_blank", + "linktype": "url", "fieldtype": "multilink", - "cached_url": "blog" + "cached_url": "https://github.com/focusreactive/turbo-cms-kit" }, - "text": "link 1", + "text": "GitHub", + "variant": "footerNav", + "component": "link" + }, + { + "_uid": "b683a9f1-24b9-43be-94a7-2ebf9621dccc", + "link": { + "id": "", + "url": "https://trello.com/b/2XLLkCma/cms-kit", + "target": "_blank", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://trello.com/b/2XLLkCma/cms-kit" + }, + "text": "Trello", + "variant": "footerNav", + "component": "link" + }, + { + "_uid": "db9248fe-752e-4942-9ecf-035093916b60", + "link": { + "id": "", + "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" + }, + "text": "Vercel", + "variant": "footerNav", + "component": "link" + } + ], + "component": "footer", + "copywriteText": "2024 @ FocusReactive" + }, + "component_id": 6398307, + "space_id": 293915, + "created_at": "2024-10-09T16:08:39.575Z", + "updated_at": "2024-10-09T16:08:39.575Z", + "image": "//a.storyblok.com/f/293915/x/ad6aa235b1/screenshot-2024-10-09-at-18-08-22.png", + "color": "", + "icon": "", + "description": "" + }, + { + "id": 2312483, + "name": "Custom", + "preset": { + "_uid": "4ad7fd52-a576-4601-9889-04b46142e382", + "image": [ + { + "_uid": "106d9002-a1c3-4f45-a2aa-8ff515b167e5", + "asset": { + "id": 17605716, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/284x260/c2ace3521b/screenshot-2024-10-07-at-22-01-09.png", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "16/9" + } + ], + "links": [ + { + "_uid": "40490f01-340c-429a-8658-7cc2a7cb4ac3", + "link": { + "id": "", + "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" + }, + "text": "Vercel", "variant": "default", "component": "link" }, { - "_uid": "b4053a05-4b4e-4114-9dd7-40cf048c0c56", + "_uid": "eadbb7ad-f909-42d0-a16e-3279b3699734", "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", - "url": "", - "linktype": "story", + "id": "", + "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", + "linktype": "url", "fieldtype": "multilink", - "cached_url": "blog" + "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" }, - "text": "link 1", + "text": "Vercel", "variant": "default", "component": "link" }, { - "_uid": "6e0e149d-082a-4ab5-97f9-8c9b37f6c4de", + "_uid": "f52b36a2-29d5-4b86-a79b-ddd7d135b274", "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", - "url": "", - "linktype": "story", + "id": "", + "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", + "linktype": "url", "fieldtype": "multilink", - "cached_url": "blog" + "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" }, - "text": "link 1", + "text": "Vercel", "variant": "default", "component": "link" - }, + } + ], + "component": "header", + "alignVariant": "right" + }, + "component_id": 6394530, + "space_id": 293915, + "created_at": "2024-10-09T05:55:16.076Z", + "updated_at": "2024-10-09T05:55:16.076Z", + "image": "//a.storyblok.com/f/293915/x/a6940e5b40/screenshot-2024-10-09-at-07-55-06.png", + "color": "", + "icon": "", + "description": "" + }, + { + "id": 2282729, + "name": "Dark align center", + "preset": { + "_uid": "6b6b4cb1-e801-4381-aea7-73fc840521c9", + "links": [ { - "_uid": "db4e104f-9578-403f-8f44-c9a6b9faf401", + "_uid": "4f9a8d83-a1c3-4813-9629-cca313b7cf05", "link": { "id": "5d416347-de08-4adb-b496-00b0a083de3a", "url": "", "linktype": "story", "fieldtype": "multilink", - "cached_url": "blog" + "cached_url": "demo" }, - "text": "link 1", - "variant": "default", + "text": "Get Started​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‍‌‍​‌​​​​‍​‌‍​‌​​‍​​​​‍​‍‌​‌‍‌‍‌‌​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‍‌‍​‌​‌‍‌‍‌‍‌‍​‌‌‍‌‍‌‍‌​​​​​‍‌​‌‌​‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍‌‍​‌‌‍​​​​​​​​​‍​​‌​​‍‌​‌‌‍​​‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍‌‌‍‍‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌​​​‌‌‍‌​​‌​​​​‌‍​‌‍‌‌​‌​​‌​‌‍‌​​‍​‌‍‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‍‌‍​‌​​​​‍​‌‍​‌​​‍​​​​‍​‍‌​‌‍‌‍‌‌​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‍‌‍​‌​‌‍‌‍‌‍‌‍​‌‌‍‌‍‌‍‌​​​​​‍‌​‌‌​‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍‌‍​‌‌‍​​​​​​​​​‍​​‌​​‍‌​‌‌‍​​‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍‌‌‍‍‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌​​​‌‌‍‌​​‌​​​​‌‍​‌‍‌‌​‌​​‌​‌‍‌​​‍​‌‍‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌", + "variant": "primary", "component": "link" }, { - "_uid": "845a36b4-a65c-409c-ac59-103ce79b7e52", + "_uid": "9a1fd9d3-1d13-408d-bd56-fb0221dcb004", "link": { "id": "5d416347-de08-4adb-b496-00b0a083de3a", "url": "", "linktype": "story", "fieldtype": "multilink", - "cached_url": "blog" + "cached_url": "demo" + }, + "text": "Try Now​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‍‌‍​‌​​​​‍​‌‍​‌​​‍​​​​‍​‍‌​‌‍‌‍‌‌​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‍‌‍​‌​‌‍‌‍‌‍‌‍​‌‌‍‌‍‌‍‌​​​​​‍‌​‌‌​‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍‌‍​‌‌‍​​​​​​​​​‍​​‌​​‍‌​‌‌‍​​‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍‌‌‍‍‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​‍‌​‍​​​​‌‌​‍​​​​​‌​‌‍‌‍‌‍​‌‌‍​‌‌‍‌​​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‍‌‍​‌​​​​‍​‌‍​‌​​‍​​​​‍​‍‌​‌‍‌‍‌‌​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‍‌‍​‌​‌‍‌‍‌‍‌‍​‌‌‍‌‍‌‍‌​​​​​‍‌​‌‌​‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍‌‍​‌‌‍​​​​​​​​​‍​​‌​​‍‌​‌‌‍​​‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍‌‌‍‍‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​‍‌​‍​​​​‌‌​‍​​​​​‌​‌‍‌‍‌‍​‌‌‍​‌‌‍‌​​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌", + "variant": "secondary", + "component": "link" + } + ], + "theme": "dark", + "component": "linksList", + "marginTop": "none", + "alignVariant": "center", + "marginBottom": "none" + }, + "component_id": 6275825, + "space_id": 293915, + "created_at": "2024-09-10T14:37:53.585Z", + "updated_at": "2024-09-20T16:05:18.030Z", + "image": "//a.storyblok.com/f/293915/x/f1a5355ada/screenshot-2024-09-10-at-16-37-34.png", + "color": "", + "icon": "", + "description": "" + }, + { + "id": 2282725, + "name": "Dark cards with text and image", + "preset": { + "_uid": "628696c0-af9f-4875-bdd1-559e379d6915", + "theme": "dark", + "columns": [ + { + "_uid": "cef1161e-4b5e-40f6-bed3-dfa80b944a46", + "content": { + "type": "doc", + "content": [ + { + "type": "paragraph", + "content": [ + { + "text": "Deploy faster", + "type": "text", + "marks": [ + { + "type": "bold" + } + ] + } + ] + }, + { + "type": "heading", + "attrs": { + "level": 2 + }, + "content": [ + { + "text": "Everything you need to deploy your app", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.", + "type": "text" + } + ] + }, + { + "type": "paragraph" + }, + { + "type": "blok", + "attrs": { + "id": "4594bedd-8168-4d1d-be76-3fe3a2229a03", + "body": [ + { + "_uid": "i-fc854d37-1aca-4a9a-a17a-19bfee06a815", + "asset": { + "id": 17287625, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/640x360/9995eb1885/presentation-1792x1008.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "16/9" + }, + { + "_uid": "i-8ac2d47b-3761-45e7-aa19-4cedf535700a", + "items": [ + { + "_uid": "60e0fe9b-0395-4355-8b74-ac57fd368d91", + "link": [], + "image": [ + { + "_uid": "5cbec89c-54cc-4d13-b1bc-129d6ba30580", + "asset": { + "id": 17287559, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + }, + { + "_uid": "7f579abd-b17e-43d5-9895-30fdbad2ac93", + "link": [], + "image": [ + { + "_uid": "69a1cbfc-2f36-4064-a41a-291df346dfc0", + "asset": { + "id": 17287559, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + }, + { + "_uid": "430a9b32-0c54-4452-9f9a-30698cc39ac5", + "link": [], + "image": [ + { + "_uid": "995c2519-5dd5-4f6e-8ec5-63cfbbcefe4d", + "asset": { + "id": 17287559, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + }, + { + "_uid": "c50de18a-3ecb-4824-b1c9-ad1a2a439fff", + "link": [], + "image": [ + { + "_uid": "477f24b7-b201-42a8-8dda-11ef18616fc6", + "asset": { + "id": 17287559, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + }, + { + "_uid": "e28d7b2b-1876-416d-aae1-b03b4406457b", + "link": [], + "image": [ + { + "_uid": "f6ec3ca7-1702-4eac-ba71-181456375190", + "asset": { + "id": 17287559, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + }, + { + "_uid": "6be5bb6c-ca47-4c33-aee9-9cb7e010c594", + "link": [], + "image": [ + { + "_uid": "e1c2c9fc-89b1-4668-9e65-c385d501d12d", + "asset": { + "id": 17287559, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + } + ], + "theme": "dark", + "columns": "3", + "component": "cardsGrid", + "marginTop": "none", + "marginBottom": "none" + } + ] + } + } + ] }, - "text": "link 1", - "variant": "default", - "component": "link" + "component": "richText", + "alignVariant": "center", + "removeInnerMargins": false } ], - "component": "footer", - "copywriteText": "2024 @ FocusReactive" + "component": "copy", + "marginTop": "none", + "marginBottom": "none", + "isReversedOnMobile": false }, - "component_id": 6398307, + "component_id": 6030874, "space_id": 293915, - "created_at": "2024-10-09T16:11:27.599Z", - "updated_at": "2024-10-09T16:11:27.599Z", - "image": "//a.storyblok.com/f/293915/x/40181ec8c4/screenshot-2024-10-09-at-18-11-17.png", + "created_at": "2024-09-10T14:35:54.629Z", + "updated_at": "2024-09-20T15:56:23.276Z", + "image": "//a.storyblok.com/f/293915/x/cf02d2ac96/screenshot-2024-09-10-at-16-35-27.png", "color": "", "icon": "", "description": "" }, { - "id": 2311924, - "name": "Default", + "id": 2282765, + "name": "Dark three columns", "preset": { - "_uid": "1af10d2b-9756-473d-b00c-f6ec1cf95a86", - "slides": [ - { - "_uid": "05887b7b-05c9-48d9-b108-bdf0aa2784e2", - "image": [ - { - "_uid": "49701e3f-4a74-42c7-b0a2-3cf3ebd021c6", - "asset": { - "id": 17593700, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/3840x2160/2e8c505a38/nike-logo.png", - "copyright": "", - "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "16/9" - } - ], - "component": "simpleCarouselSlide" - }, - { - "_uid": "417c36e6-a409-4a37-a836-820c3a67682d", - "image": [ - { - "_uid": "9bf63bef-15e9-4a10-a051-c83fcf1e2f77", - "asset": { - "id": 17593700, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/3840x2160/2e8c505a38/nike-logo.png", - "copyright": "", - "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "16/9" - } - ], - "component": "simpleCarouselSlide" - }, - { - "_uid": "888d00d4-ab5e-45c2-9c7a-844cad205c4b", - "image": [ - { - "_uid": "2c717744-1757-4bbc-b01b-8cb35ab0100c", - "asset": { - "id": 17593700, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/3840x2160/2e8c505a38/nike-logo.png", - "copyright": "", - "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "16/9" - } - ], - "component": "simpleCarouselSlide" - }, + "_uid": "58d29a3f-bb4a-4630-af7a-cb6bdd189426", + "items": [ { - "_uid": "f44ca52a-ce5f-4be4-a5fc-367424f0a917", + "_uid": "3140fa23-24c2-4085-9366-5ea101a705a0", + "link": [], "image": [ { - "_uid": "2d31244a-823a-418d-b2be-bea0b266d932", + "_uid": "a0137796-c53b-4ed1-98f3-f49583ed03d1", "asset": { - "id": 17593700, + "id": 17287559, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/3840x2160/2e8c505a38/nike-logo.png", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", "copyright": "", "fieldtype": "asset", - "meta_data": {}, + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, "is_external_url": false }, "component": "image", - "aspectRatio": "16/9" + "aspectRatio": "1/1" } ], - "component": "simpleCarouselSlide" + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" }, { - "_uid": "2d757401-fb99-4632-b7b3-eee67d7ceb0b", + "_uid": "5974f486-c63a-47dc-a35c-36fbdc0b505c", + "link": [], "image": [ { - "_uid": "93bb87e9-c91d-432f-b789-60a446afe1c7", + "_uid": "0dbc6ffc-1c9a-4dcf-a31a-4cebecc1188a", "asset": { - "id": 17593700, + "id": 17287559, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/3840x2160/2e8c505a38/nike-logo.png", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", "copyright": "", "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "16/9" - } - ], - "component": "simpleCarouselSlide" - } - ], - "component": "simpleCarousel", - "marginTop": "base", - "marginBottom": "base" - }, - "component_id": 6391276, - "space_id": 293915, - "created_at": "2024-10-08T14:31:24.209Z", - "updated_at": "2024-10-08T15:43:18.631Z", - "image": "//a.storyblok.com/f/293915/x/bd83ad5125/screenshot-2024-10-08-at-16-30-53.png", - "color": "", - "icon": "", - "description": "" - }, - { - "id": 2311925, - "name": "Default", - "preset": { - "_uid": "6ba0bc81-e7fc-432b-87c4-5373260b484b", - "image": [ - { - "_uid": "76b33db3-8365-49e3-86d8-0806dcae26b6", - "asset": { - "id": 17593700, - "alt": "", - "name": "", - "focus": "", - "title": "", - "source": "", - "filename": "https://a.storyblok.com/f/293915/3840x2160/2e8c505a38/nike-logo.png", - "copyright": "", - "fieldtype": "asset", - "meta_data": {}, - "is_external_url": false - }, - "component": "image", - "aspectRatio": "16/9" - } - ], - "component": "simpleCarouselSlide" - }, - "component_id": 6391277, - "space_id": 293915, - "created_at": "2024-10-08T14:31:37.528Z", - "updated_at": "2024-10-08T14:31:37.528Z", - "image": "//a.storyblok.com/f/293915/x/6750a101ef/screenshot-2024-10-08-at-16-31-02.png", - "color": "", - "icon": "", - "description": "" - }, - { - "id": 2311926, - "name": "Default", - "preset": { - "_uid": "2963f7a9-478b-4e19-bf21-67d84194e837", - "slides": [ + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" + } + ], + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + }, { - "_uid": "0ccdf046-e9db-4891-823d-11f51521e4c8", + "_uid": "d45fc1d8-649f-43b1-8de5-bc698aa857f7", + "link": [], "image": [ { - "_uid": "26281072-b130-4d56-baa7-16576c3ab2d2", + "_uid": "3e2b0e81-bcaa-463f-9aa0-dc42c6e6f18a", "asset": { - "id": 17302361, + "id": 17287559, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/1792x1024/3c65b2e66b/generated-social-logo.webp", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", "copyright": "", "fieldtype": "asset", "meta_data": { @@ -1827,24 +1744,28 @@ "is_external_url": false }, "component": "image", - "aspectRatio": "16/9" + "aspectRatio": "1/1" } ], - "component": "wideSimpleCarouselSlide" + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" }, { - "_uid": "c4b36d3e-c74a-41f1-bb10-4416feb2a47a", + "_uid": "2ce40213-bc5f-421c-afaf-575c23d2f805", + "link": [], "image": [ { - "_uid": "ea72ad37-268f-497c-8b11-394e1f406d55", + "_uid": "184df845-6e73-46cd-82c3-4b9aec804a46", "asset": { - "id": 17302361, + "id": 17287559, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/1792x1024/3c65b2e66b/generated-social-logo.webp", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", "copyright": "", "fieldtype": "asset", "meta_data": { @@ -1856,24 +1777,28 @@ "is_external_url": false }, "component": "image", - "aspectRatio": "16/9" + "aspectRatio": "1/1" } ], - "component": "wideSimpleCarouselSlide" + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" }, { - "_uid": "03bfbc9f-63e7-4f3c-ac4a-ff2feeb80b5a", + "_uid": "663cb8fa-509f-4989-8f3e-f93958e800ea", + "link": [], "image": [ { - "_uid": "fc70e0b5-eec4-4716-8e6a-32f1d1fcd3af", + "_uid": "097a055a-bc80-4981-896b-71b822f6820d", "asset": { - "id": 17302361, + "id": 17287559, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/1792x1024/3c65b2e66b/generated-social-logo.webp", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", "copyright": "", "fieldtype": "asset", "meta_data": { @@ -1885,33 +1810,218 @@ "is_external_url": false }, "component": "image", - "aspectRatio": "16/9" + "aspectRatio": "1/1" + } + ], + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" + }, + { + "_uid": "e3be2f1e-380c-4f90-a2e5-b7bb8d4dc8b4", + "link": [], + "image": [ + { + "_uid": "66d843c7-f23a-4d27-8389-04d03cce6122", + "asset": { + "id": 17287559, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/15x15/6d170b1cb4/icon.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "1/1" } ], - "component": "wideSimpleCarouselSlide" + "style": "icon-left", + "title": "Push to deploy", + "component": "defaultCard", + "description": "Deploy faster​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‌‌‌‌‍‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍​‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Everything you need to deploy your app​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‌‍‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‍‌‌‍‍‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ Quis tellus eget adipiscing convallis sit sit eget aliquet quis. Suspendisse eget egestas a elementum pulvinar et feugiat blandit at. In mi viverra elit nunc.​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌‍​‌‌‍‌​‌‍‌‌‍‍‌‌‍‍​‍‌‍‌‍‍‌‌‍‌​​‌​​‌‍‌‍​‍‌​‍​‌‍‌‍‌‍‌​​‍​​​​​‍‌‌‍​‍​‍‌​‍‌‌‍‌​​‍‌​‌​​‌‍‌‍‌​​‍‌​‍‌​‍​​‍‌​​​‌‌​‍‌​‌‍​‍​​‌‌‌‍‌‍‌‍​‌​​‌‍​‍​‍​​​‍​​​‌‍​‌‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌‍​‌‍​‌‌‍‍‌‍‌​‌‍‍‌‌‍‍‌‍‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌‍​‌‍‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‍​‌‍‍‌​‍‌​‌​‌​​‌‍​‌​‌​‌‌​‍​‍‌‌‌‍​‌​‌​‌‍‍​​‌‌‌‍‍‌‌​​‌‍‌​‍​​‌‌​‍‌‍​‌​‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍‌‌​​‌‍‌‍‍‌‍‌‌‌‍‍‌‌​‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‍‌‌​​​​‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‌‌‌​‌‌​‌‍‌‍‌‌‌​‍‌‍‍‌‌‍​‌‍‍​‌‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌‍‌‌‍​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‍​‌‍‍‌‌‍​‌‍‌​‌​‍‌‍‌‌‌‍‍​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌​‌‌‍‍‌​‌​​‌‍​‌​​‌‍‌‌‌‍‌​​​‌‌‍‌‌‍‌‌‍‍​​‌‌‌‌‌​​‌‌‍‌‌‌‌‌‌‍​‌‍​‌​‌‌‌​‌‌‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌ untitled​​​​‌‍​‍​‍‌‍‌​‍‌‍‍‌‌‍‌‌‍‍‌‌‍‍​‍​‍​‍‍​‍​‍‌​‌‍​‌‌‍‍‌‍‍‌‌‌​‌‍‌​‍‍‌‍‍‌‌‍​‍​‍​‍​​‍​‍‌‍‍​‌​‍‌‍‌‌‌‍‌‍​‍​‍​‍‍​‍​‍​‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‍‌‌‍‍‌‌​‌‍‌‌‌‍‍‌‌​​‍‌‍‌‌‌‍‌​‌‍‍‌‌‌​​‍‌‍‌‌‍‌‍‌​‌‍‌‌​‌‌​​‌​‍‌‍‌‌‌​‌‍‌‌‌‍‍‌‌​‌‍​‌‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‌‍​‍‌‍​‌‌​‌‍‌‌‌‌‌‌‌​‍‌‍​​‌​‍‌‌​​‍‌​‌‍‌​‌‌​‌‌‌‌‍‌​‌‍‍‌‌‍​‍‌‍‌‍‍‌‌‍‌​​‌​​​‌‍​‌​​‍​‍​​‌​‌​​‌​‌‍‌​​‍‌​‌‍​​​​​‍‌‍​‍​‍‌​‌​​‍‌‌‍​‌​​​‍‌‌‍​‍​‍‌​​‌‌‍​‌​‍‌​​‌​‌‌‍​‌​‌‌​‌‍‌‍‌‌​​‌‍​​‌​‍​​​​​‍​‍‌‍‌‌​‌‍‌‌​​‌‍‌‌​‌‌​​‌‍​‌‌‍‌‌‍‌‌​‍‌‍‌​​‌‍​‌‌‌​‌‍‍​​‌‌​‌‍‌‌‌‍​‌‌​‌‍‍‌‌‍‌‍‍‌​‌​​‍‌‍‌‍‌​‌‍‌​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍​​‍​‍‌‌‍‌‍‌‍‌‌​‌‍‌‍​‌​‍​​​‍‌‍‌‍​‍​​​‍​‌‌​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍​‌‍‌‍​‌‌‌‌‍‌‌‍‍‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌​‌‌​‍​​‌‌​​‌‌‍​‍‌‍‌‌​‌​​​​​‌​​‌​​​​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‌​‌‍‌‌‌‍​‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍‌‌‌‍​‌‌‍​‌‌‍‌‍‌‍‌‌‌‍​‌‌‍​‌‌‍​‌‌‍‌‌​​​‌‍‌‍​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‍‌‌‌​‌‍‌‌‌‍‌‌​​‍‌‌​‌‌‌​​‍‌‌‌‍‍‌‍‌‌‌‍‌​‍‌‌​​‌​‌​​‍‌‌​​‌​‌​​‍‌‌​​‍​​‍‌‍​‌‍‌‌‌‍​‌‌‍​​‌‌‍​‌​‍​​​​​​​​​‌‍‌‌​​‍​‍‌‌​​‍​​‍​‍‌‌​‌‌‌​‌​​‍‍‌‍‌​‌‍‌‌‌​‌‍​‌​‍‌‍‍‌‌​​‌‌​‌‍‍‌‌‍‌‍‍​‍‌‍‌‍‍‌‌​‌​‌​‌​‍‌‍​‌‌‍‌‍‌‌​​‌​‍​‍‌‌" } ], - "component": "wideSimpleCarousel", + "theme": "dark", + "columns": "3", + "component": "cardsGrid", "marginTop": "base", "marginBottom": "base" }, - "component_id": 6391278, + "component_id": 6275957, "space_id": 293915, - "created_at": "2024-10-08T14:32:09.841Z", - "updated_at": "2024-10-08T15:43:04.740Z", - "image": "//a.storyblok.com/f/293915/x/8326dcb7a4/screenshot-2024-10-08-at-16-30-56.png", + "created_at": "2024-09-10T14:44:18.486Z", + "updated_at": "2024-09-20T16:04:35.594Z", + "image": "//a.storyblok.com/f/293915/x/22cc4febaa/screenshot-2024-09-10-at-16-44-01.png", "color": "", "icon": "", "description": "" }, { - "id": 2312484, + "id": 2313388, "name": "Default", "preset": { - "_uid": "4ad7fd52-a576-4601-9889-04b46142e382", + "_uid": "3a99b80d-65d5-43f5-9a8b-fa8009f4e311", + "text": [ + { + "_uid": "3fa6eb70-0e7c-4286-a63e-1e7c5ed98e9b", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 2 + }, + "content": [ + { + "text": "Flowbite", + "type": "text" + } + ] + }, + { + "type": "paragraph", + "content": [ + { + "text": "Open-source library of over 400+ web components and interactive elements built for better web.", + "type": "text" + } + ] + } + ] + }, + "component": "richText", + "alignVariant": "center", + "removeInnerMargins": false + }, + { + "_uid": "a381bd2a-57ae-40bd-b136-74cce1ef3662", + "content": { + "type": "doc", + "content": [ + { + "type": "paragraph" + }, + { + "type": "blok", + "attrs": { + "id": "8033a188-9f77-4d4d-9670-e45ef9ec159e", + "body": [ + { + "_uid": "i-0a68bab8-2252-4329-9218-096c3f41fbe2", + "links": [ + { + "_uid": "2b3acef4-9e76-4a4e-b906-4f699f1bc4f1", + "link": { + "id": "19601884-a1af-4b99-bd95-1a3ca01d5b7a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "home" + }, + "text": "Home", + "variant": "footerNav", + "component": "link" + }, + { + "_uid": "cbd95eb7-34bc-4998-9532-bd26c9c7b655", + "link": { + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "demo" + }, + "text": "Blog", + "variant": "footerNav", + "component": "link" + }, + { + "_uid": "f85e677c-c635-42c0-bb49-8eec642347f5", + "link": { + "id": "", + "url": "https://app.storyblok.com/#/me/spaces/293915", + "target": "_blank", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://app.storyblok.com/#/me/spaces/293915" + }, + "text": "Storyblok", + "variant": "footerNav", + "component": "link" + }, + { + "_uid": "9865fbc2-82c3-47ac-98f2-50731c98cc6e", + "link": { + "id": "", + "url": "https://github.com/focusreactive/turbo-cms-kit", + "target": "_blank", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://github.com/focusreactive/turbo-cms-kit" + }, + "text": "GitHub", + "variant": "footerNav", + "component": "link" + }, + { + "_uid": "fc242a8f-846d-4057-bf04-fd590bf24450", + "link": { + "id": "", + "url": "https://trello.com/b/2XLLkCma/cms-kit", + "target": "_blank", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://trello.com/b/2XLLkCma/cms-kit" + }, + "text": "Trello", + "variant": "footerNav", + "component": "link" + }, + { + "_uid": "08ef19b8-2066-4dfb-ac32-1a038aa7c215", + "link": { + "id": "", + "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" + }, + "text": "Vercel", + "variant": "footerNav", + "component": "link" + } + ], + "theme": "light", + "component": "linksList", + "marginTop": "none", + "alignVariant": "left", + "marginBottom": "none" + } + ] + } + } + ] + }, + "component": "richText", + "alignVariant": "center", + "removeInnerMargins": false + } + ], "image": [ { - "_uid": "106d9002-a1c3-4f45-a2aa-8ff515b167e5", + "_uid": "f6c6d28e-e4cf-49d6-a2ae-2a5b404ccf3d", "asset": { "id": 17593700, "alt": "", @@ -1925,26 +2035,52 @@ "meta_data": {}, "is_external_url": false }, - "component": "image", - "aspectRatio": "16/9" - } - ], - "links": [ + "component": "image", + "aspectRatio": "16/9" + } + ], + "links": [ + { + "_uid": "49969ae3-9a59-4f02-91ce-143d983f6b43", + "link": { + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "blog" + }, + "text": "link 1", + "variant": "default", + "component": "link" + }, + { + "_uid": "8531a335-6ba7-41ab-9842-e4a518938f14", + "link": { + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "blog" + }, + "text": "link 1", + "variant": "default", + "component": "link" + }, { - "_uid": "892b4038-4a39-473f-b3b6-b9b0b2c853bd", + "_uid": "c1a83470-ac92-4d42-b6b7-2d77423a99a6", "link": { - "id": "19601884-a1af-4b99-bd95-1a3ca01d5b7a", + "id": "5d416347-de08-4adb-b496-00b0a083de3a", "url": "", "linktype": "story", "fieldtype": "multilink", - "cached_url": "home" + "cached_url": "blog" }, - "text": "Home", + "text": "link 1", "variant": "default", "component": "link" }, { - "_uid": "42da28cf-0299-4a13-a006-a1813862fe91", + "_uid": "0194af4d-4f93-4b18-a721-87823c1a8ed2", "link": { "id": "5d416347-de08-4adb-b496-00b0a083de3a", "url": "", @@ -1952,86 +2088,119 @@ "fieldtype": "multilink", "cached_url": "blog" }, - "text": "Blog", + "text": "link 1", "variant": "default", "component": "link" }, { - "_uid": "e60a7e37-87dc-4ce8-b6a5-70c3c7d4cecc", + "_uid": "b4053a05-4b4e-4114-9dd7-40cf048c0c56", "link": { - "id": "", - "url": "https://app.storyblok.com/#/me/spaces/293915", - "target": "_blank", - "linktype": "url", + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", "fieldtype": "multilink", - "cached_url": "https://app.storyblok.com/#/me/spaces/293915" + "cached_url": "blog" }, - "text": "Storyblok", + "text": "link 1", "variant": "default", "component": "link" }, { - "_uid": "3d6ad342-43b8-4b71-ad05-d9b581d76a0b", + "_uid": "6e0e149d-082a-4ab5-97f9-8c9b37f6c4de", "link": { - "id": "", - "url": "https://github.com/focusreactive/turbo-cms-kit", - "target": "_blank", - "linktype": "url", + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", "fieldtype": "multilink", - "cached_url": "https://github.com/focusreactive/turbo-cms-kit" + "cached_url": "blog" }, - "text": "GitHub", + "text": "link 1", "variant": "default", "component": "link" }, { - "_uid": "da6abcc0-86a7-4891-9021-80f073e2fa3e", + "_uid": "db4e104f-9578-403f-8f44-c9a6b9faf401", "link": { - "id": "", - "url": "https://trello.com/b/2XLLkCma/cms-kit", - "target": "_blank", - "linktype": "url", + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", "fieldtype": "multilink", - "cached_url": "https://trello.com/b/2XLLkCma/cms-kit" + "cached_url": "blog" }, - "text": "Trello", + "text": "link 1", "variant": "default", "component": "link" }, { - "_uid": "f52b36a2-29d5-4b86-a79b-ddd7d135b274", + "_uid": "845a36b4-a65c-409c-ac59-103ce79b7e52", "link": { - "id": "", - "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", - "linktype": "url", + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", "fieldtype": "multilink", - "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" + "cached_url": "blog" }, - "text": "Vercel", + "text": "link 1", "variant": "default", "component": "link" } ], - "component": "header", - "alignVariant": "right" + "component": "footer", + "copywriteText": "2024 @ FocusReactive" }, - "component_id": 6394530, + "component_id": 6398307, "space_id": 293915, - "created_at": "2024-10-09T05:55:35.787Z", - "updated_at": "2024-10-09T05:55:35.787Z", - "image": "//a.storyblok.com/f/293915/x/beab857f5f/screenshot-2024-10-08-at-13-37-02.png", + "created_at": "2024-10-09T16:11:27.599Z", + "updated_at": "2024-10-09T16:11:27.599Z", + "image": "//a.storyblok.com/f/293915/x/40181ec8c4/screenshot-2024-10-09-at-18-11-17.png", "color": "", "icon": "", "description": "" }, { - "id": 2311975, + "id": 2311925, "name": "Default", "preset": { - "_uid": "58f68ee7-d789-4201-8963-03c08c0edbe5", + "_uid": "6ba0bc81-e7fc-432b-87c4-5373260b484b", + "image": [ + { + "_uid": "76b33db3-8365-49e3-86d8-0806dcae26b6", + "asset": { + "id": 17593700, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/3840x2160/2e8c505a38/nike-logo.png", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "16/9" + } + ], + "component": "carouselSlide" + }, + "component_id": 6391277, + "space_id": 293915, + "created_at": "2024-10-08T14:31:37.528Z", + "updated_at": "2024-10-08T14:31:37.528Z", + "image": "//a.storyblok.com/f/293915/x/6750a101ef/screenshot-2024-10-08-at-16-31-02.png", + "color": "", + "icon": "", + "description": "" + }, + { + "id": 2225127, + "name": "Default", + "preset": { + "_uid": "8a993c13-4588-46b4-8285-d2f59d18b11f", "text": [ { - "_uid": "cdc6dfbd-5208-40a4-af7e-0fdbcedafafb", + "_uid": "d8050fa9-6b9d-438f-99e3-d038c9250382", "content": { "type": "doc", "content": [ @@ -2042,19 +2211,21 @@ }, "content": [ { - "text": "In Notion, work feels better.", - "type": "text" + "text": "Let's find more that brings us together.", + "type": "text", + "marks": [ + { + "type": "bold" + } + ] } ] }, { - "type": "heading", - "attrs": { - "level": 2 - }, + "type": "paragraph", "content": [ { - "text": "With a little help from AI.", + "text": "Flowbite helps you connect with friends, family and communities of people who share your interests. Connecting with your friends and family as well as discovering new ones is easy with features like Groups, Watch and Marketplace.", "type": "text" } ] @@ -2062,21 +2233,119 @@ ] }, "component": "richText", - "alignVariant": "left", - "removeInnerMargins": true + "removeInnerMargins": false + } + ], + "links": [ + { + "_uid": "bdb0b522-2f4c-4836-a8bc-d8526d5acb94", + "link": { + "id": "", + "url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768" + }, + "text": "Get Started", + "variant": "primary", + "component": "link" + }, + { + "_uid": "d084111d-6fbd-4159-8210-81694be82221", + "link": { + "id": "", + "url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768" + }, + "text": "Learn More", + "variant": "secondary", + "component": "link" + }, + { + "_uid": "4cf8608f-0859-4c87-a74d-2d2b2c5e24fe", + "link": { + "id": "", + "url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768" + }, + "text": "New Info", + "variant": "secondary", + "component": "link" } ], + "variant": "default", + "component": "cta" + }, + "component_id": 6030875, + "space_id": 293915, + "created_at": "2024-07-12T15:24:16.323Z", + "updated_at": "2024-07-12T15:24:16.323Z", + "image": "//a.storyblok.com/f/293915/x/eb1b14e23e/cta.png", + "color": "", + "icon": "", + "description": "" + }, + { + "id": 2311927, + "name": "Default", + "preset": { + "_uid": "78b9116c-66e1-47e6-a843-3420b3ccc362", "image": [ { - "_uid": "262bcb34-10e0-4400-aea5-2a7dc5f68598", + "_uid": "28239737-5fc1-448d-a995-19b7fc5021a2", "asset": { - "id": 17600300, + "id": 17302361, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/1792x1024/3c65b2e66b/generated-social-logo.webp", + "copyright": "", + "fieldtype": "asset", + "meta_data": { + "alt": "", + "title": "", + "source": "", + "copyright": "" + }, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "16/9" + } + ], + "component": "wideSimpleCarouselSlide" + }, + "component_id": 6391279, + "space_id": 293915, + "created_at": "2024-10-08T14:32:40.489Z", + "updated_at": "2024-10-08T14:32:40.489Z", + "image": "//a.storyblok.com/f/293915/x/e32cf6ec6b/screenshot-2024-10-08-at-16-31-09.png", + "color": "", + "icon": "", + "description": "" + }, + { + "id": 2312484, + "name": "Default", + "preset": { + "_uid": "4ad7fd52-a576-4601-9889-04b46142e382", + "image": [ + { + "_uid": "106d9002-a1c3-4f45-a2aa-8ff515b167e5", + "asset": { + "id": 17593700, "alt": "", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/2474x1318/df22f90af3/screenshot-2024-10-08-at-16-53-38.png", + "filename": "https://a.storyblok.com/f/293915/3840x2160/2e8c505a38/nike-logo.png", "copyright": "", "fieldtype": "asset", "meta_data": {}, @@ -2088,20 +2357,20 @@ ], "links": [ { - "_uid": "38ffb55a-d12a-4e63-b2b0-5996c0d79177", + "_uid": "892b4038-4a39-473f-b3b6-b9b0b2c853bd", "link": { - "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "id": "19601884-a1af-4b99-bd95-1a3ca01d5b7a", "url": "", "linktype": "story", "fieldtype": "multilink", - "cached_url": "blog" + "cached_url": "home" }, - "text": "Get for free", - "variant": "primary", + "text": "Home", + "variant": "default", "component": "link" }, { - "_uid": "cacf894d-a48f-4bdb-84d6-d9cf98ad9489", + "_uid": "42da28cf-0299-4a13-a006-a1813862fe91", "link": { "id": "5d416347-de08-4adb-b496-00b0a083de3a", "url": "", @@ -2109,21 +2378,74 @@ "fieldtype": "multilink", "cached_url": "blog" }, - "text": "Request a demo", - "variant": "secondary", + "text": "Blog", + "variant": "default", + "component": "link" + }, + { + "_uid": "e60a7e37-87dc-4ce8-b6a5-70c3c7d4cecc", + "link": { + "id": "", + "url": "https://app.storyblok.com/#/me/spaces/293915", + "target": "_blank", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://app.storyblok.com/#/me/spaces/293915" + }, + "text": "Storyblok", + "variant": "default", + "component": "link" + }, + { + "_uid": "3d6ad342-43b8-4b71-ad05-d9b581d76a0b", + "link": { + "id": "", + "url": "https://github.com/focusreactive/turbo-cms-kit", + "target": "_blank", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://github.com/focusreactive/turbo-cms-kit" + }, + "text": "GitHub", + "variant": "default", + "component": "link" + }, + { + "_uid": "da6abcc0-86a7-4891-9021-80f073e2fa3e", + "link": { + "id": "", + "url": "https://trello.com/b/2XLLkCma/cms-kit", + "target": "_blank", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://trello.com/b/2XLLkCma/cms-kit" + }, + "text": "Trello", + "variant": "default", + "component": "link" + }, + { + "_uid": "f52b36a2-29d5-4b86-a79b-ddd7d135b274", + "link": { + "id": "", + "url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok", + "linktype": "url", + "fieldtype": "multilink", + "cached_url": "https://vercel.com/focusreactive/turbo-cms-kit-storyblok" + }, + "text": "Vercel", + "variant": "default", "component": "link" } ], - "title": "Write. Plan. Collaborate.", - "component": "hero", - "marginTop": "base", - "marginBottom": "base" + "component": "header", + "alignVariant": "right" }, - "component_id": 6391508, + "component_id": 6394530, "space_id": 293915, - "created_at": "2024-10-08T15:14:26.596Z", - "updated_at": "2024-10-08T15:14:26.596Z", - "image": "//a.storyblok.com/f/293915/x/9118f0bd1b/screenshot-2024-10-08-at-17-14-10.png", + "created_at": "2024-10-09T05:55:35.787Z", + "updated_at": "2024-10-09T05:55:35.787Z", + "image": "//a.storyblok.com/f/293915/x/beab857f5f/screenshot-2024-10-08-at-13-37-02.png", "color": "", "icon": "", "description": "" @@ -2262,102 +2584,6 @@ "icon": "", "description": "" }, - { - "id": 2225127, - "name": "Default", - "preset": { - "_uid": "8a993c13-4588-46b4-8285-d2f59d18b11f", - "text": [ - { - "_uid": "d8050fa9-6b9d-438f-99e3-d038c9250382", - "content": { - "type": "doc", - "content": [ - { - "type": "heading", - "attrs": { - "level": 2 - }, - "content": [ - { - "text": "Let's find more that brings us together.", - "type": "text", - "marks": [ - { - "type": "bold" - } - ] - } - ] - }, - { - "type": "paragraph", - "content": [ - { - "text": "Flowbite helps you connect with friends, family and communities of people who share your interests. Connecting with your friends and family as well as discovering new ones is easy with features like Groups, Watch and Marketplace.", - "type": "text" - } - ] - } - ] - }, - "component": "richText", - "removeInnerMargins": false - } - ], - "links": [ - { - "_uid": "bdb0b522-2f4c-4836-a8bc-d8526d5acb94", - "link": { - "id": "", - "url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768" - }, - "text": "Get Started", - "variant": "primary", - "component": "link" - }, - { - "_uid": "d084111d-6fbd-4159-8210-81694be82221", - "link": { - "id": "", - "url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768" - }, - "text": "Learn More", - "variant": "secondary", - "component": "link" - }, - { - "_uid": "4cf8608f-0859-4c87-a74d-2d2b2c5e24fe", - "link": { - "id": "", - "url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768", - "linktype": "url", - "fieldtype": "multilink", - "cached_url": "https://app.storyblok.com/#/me/spaces/293915/stories/0/0/513794103/blok/382d42b7-6aec-4768-b88b-6cb3540b4768" - }, - "text": "New Info", - "variant": "secondary", - "component": "link" - } - ], - "variant": "default", - "component": "cta" - }, - "component_id": 6030875, - "space_id": 293915, - "created_at": "2024-07-12T15:24:16.323Z", - "updated_at": "2024-07-12T15:24:16.323Z", - "image": "//a.storyblok.com/f/293915/x/eb1b14e23e/cta.png", - "color": "", - "icon": "", - "description": "" - }, { "id": 2337116, "name": "Default", @@ -2475,37 +2701,142 @@ "number": "03", "component": "stepGuideItem" } - ] + ] + }, + "component_id": 6492253, + "space_id": 293915, + "created_at": "2024-10-30T16:14:09.669Z", + "updated_at": "2024-10-30T16:20:27.196Z", + "image": "//a.storyblok.com/f/293915/x/b454ec3d40/screenshot-2024-10-30-at-17-09-53.png", + "color": "", + "icon": "", + "description": "" + }, + { + "id": 2311975, + "name": "Default", + "preset": { + "_uid": "58f68ee7-d789-4201-8963-03c08c0edbe5", + "text": [ + { + "_uid": "cdc6dfbd-5208-40a4-af7e-0fdbcedafafb", + "content": { + "type": "doc", + "content": [ + { + "type": "heading", + "attrs": { + "level": 2 + }, + "content": [ + { + "text": "In Notion, work feels better.", + "type": "text" + } + ] + }, + { + "type": "heading", + "attrs": { + "level": 2 + }, + "content": [ + { + "text": "With a little help from AI.", + "type": "text" + } + ] + } + ] + }, + "component": "richText", + "alignVariant": "left", + "removeInnerMargins": true + } + ], + "image": [ + { + "_uid": "262bcb34-10e0-4400-aea5-2a7dc5f68598", + "asset": { + "id": 17600300, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/2474x1318/df22f90af3/screenshot-2024-10-08-at-16-53-38.png", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "16/9" + } + ], + "links": [ + { + "_uid": "38ffb55a-d12a-4e63-b2b0-5996c0d79177", + "link": { + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "blog" + }, + "text": "Get for free", + "variant": "primary", + "component": "link" + }, + { + "_uid": "cacf894d-a48f-4bdb-84d6-d9cf98ad9489", + "link": { + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "blog" + }, + "text": "Request a demo", + "variant": "secondary", + "component": "link" + } + ], + "title": "Write. Plan. Collaborate.", + "component": "hero", + "marginTop": "base", + "marginBottom": "base" }, - "component_id": 6492253, + "component_id": 6391508, "space_id": 293915, - "created_at": "2024-10-30T16:14:09.669Z", - "updated_at": "2024-10-30T16:20:27.196Z", - "image": "//a.storyblok.com/f/293915/x/b454ec3d40/screenshot-2024-10-30-at-17-09-53.png", + "created_at": "2024-10-08T15:14:26.596Z", + "updated_at": "2024-10-08T15:14:26.596Z", + "image": "//a.storyblok.com/f/293915/x/9118f0bd1b/screenshot-2024-10-08-at-17-14-10.png", "color": "", "icon": "", "description": "" }, { - "id": 2311927, + "id": 2337115, "name": "Default", "preset": { - "_uid": "78b9116c-66e1-47e6-a843-3420b3ccc362", + "_uid": "611c74ab-fad3-4b2f-9ee6-ba15543e98d3", + "text": " Add your first product", "image": [ { - "_uid": "28239737-5fc1-448d-a995-19b7fc5021a2", + "_uid": "2e1f5bca-6409-430a-b3aa-1d9fc7ddbe18", "asset": { - "id": 17302361, - "alt": "", + "id": 17902334, + "alt": "call us", "name": "", "focus": "", "title": "", "source": "", - "filename": "https://a.storyblok.com/f/293915/1792x1024/3c65b2e66b/generated-social-logo.webp", + "filename": "https://a.storyblok.com/f/293915/960x960/6a4a666d16/call-us.svg", "copyright": "", "fieldtype": "asset", "meta_data": { - "alt": "", + "alt": "call us", "title": "", "source": "", "copyright": "" @@ -2513,16 +2844,17 @@ "is_external_url": false }, "component": "image", - "aspectRatio": "16/9" + "aspectRatio": "3/1" } ], - "component": "wideSimpleCarouselSlide" + "number": "01", + "component": "stepGuideItem" }, - "component_id": 6391279, + "component_id": 6492255, "space_id": 293915, - "created_at": "2024-10-08T14:32:40.489Z", - "updated_at": "2024-10-08T14:32:40.489Z", - "image": "//a.storyblok.com/f/293915/x/e32cf6ec6b/screenshot-2024-10-08-at-16-31-09.png", + "created_at": "2024-10-30T16:11:36.349Z", + "updated_at": "2024-10-30T16:20:36.391Z", + "image": "//a.storyblok.com/f/293915/x/8becce59cc/screenshot-2024-10-30-at-17-11-17.png", "color": "", "icon": "", "description": "" @@ -3126,30 +3458,30 @@ { "_uid": "daa76aed-3746-48f1-863b-4d9dd0e833fd", "text": "Collaborative workspace", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "1a197039-e74f-4446-98d5-53a4a27e7b2e", "text": "Integrate with Slack, GitHub & more", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "adae920f-a85d-4731-8a5c-2366d6dd896c", "text": "Basic page analytics", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "6911f373-b7fe-4fa8-ade0-48285a6b47d5", "text": "7 day page history", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "08b6beb3-f786-401a-96cd-48d37cd5dd58", "text": "Invite 10 guests", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" } ], - "component": "pricingTier", + "component": "pricingTableTier", "description": "For individuals to organize personal projects and life" }, { @@ -3196,50 +3528,50 @@ { "_uid": "93ab7175-1744-4157-94f2-68af0b44787f", "text": "Everything in Free +", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "1f8ee345-9583-4ead-8f2d-24058aec8bcd", "text": "Unlimited blocks for teams", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "e04ed840-bf79-4c53-aa8a-7e705d542fb0", "text": "Unlimited file uploads", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "d5f112d1-5eea-40a0-a629-7b4830182442", "text": "30 day page history", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "18416b01-b34c-4e95-856f-9aaa1ab6660a", "text": "Invite 100 guests", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "1b5273ef-e000-4b35-ada6-6ff76d209111", "text": "Synced databases with 3rd party apps", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "e73d1976-7a24-460c-a379-0f740a76ae92", "text": "Custom websites", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "6709a79a-a33d-4cd9-8e16-e1e7df61e7d1", "text": "Custom automations", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "ab0dbc44-b1e6-4806-b08b-caa879a87048", "text": "Charts & dashboards", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" } ], - "component": "pricingTier", + "component": "pricingTableTier", "description": "For small teams and professionals to work together" }, { @@ -3286,40 +3618,40 @@ { "_uid": "0aeb1d1a-c095-481d-b82a-f87deb75539c", "text": "Everything in Plus +", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "5df353b6-9c56-465d-8dc4-d8e7b739cc74", "text": "SAML SSO", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "50b68f1d-1264-4c06-b295-080a84b94a7a", "text": "Private teamspaces", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "f9153bd4-cdd9-4362-b1cb-3103014b2cc4", "text": "Bulk PDF export", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "7f37be1a-c308-4806-a7c4-765676044282", "text": "Advanced page analytics", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "4fb885e6-2239-4e04-bee7-4b945b2eef22", "text": "90 day page history", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "4a176ea2-92c0-4155-9453-bc87f76e7156", "text": "Invite 250 guests", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" } ], - "component": "pricingTier", + "component": "pricingTableTier", "description": "For growing businesses to streamline teamwork" }, { @@ -3366,60 +3698,60 @@ { "_uid": "de2c7aa6-f8f9-4adf-9057-bc15676767cb", "text": "Everything in Business +", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "b920e2d6-760f-47e1-bd2c-8a6193087f3c", "text": "User provisioning (SCIM)", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "8439ee93-995b-4581-8a7d-ac87fb7d03ee", "text": "Advanced security & controls", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "fcd9a4b1-793a-4be8-b0da-8d4fe7c8261c", "text": "Audit log", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "3e212dd3-2490-4bbb-a3cb-8b40f675062a", "text": "Customer success manager", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "5acc56cb-3d7f-4c9f-a8b5-a9777bcfc181", "text": "Workspace analytics", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "493c7815-dbf3-4302-a61f-474f674b96a8", "text": "Unlimited page history", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "fa3f5549-29e0-4791-87f1-5963c931dd8f", "text": "Security & Compliance integrations", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" }, { "_uid": "179bdf45-3bdd-406b-8c0c-33d95122aa04", "text": "Invite 250 guests", - "component": "pricingTierFeature" + "component": "pricingTableTierFeature" } ], - "component": "pricingTier", + "component": "pricingTableTier", "description": "For organizations to operate with scalability, control, and security" } ], - "component": "pricing", + "component": "pricingTable", "extraService": [ { "_uid": "aa8eee91-81e8-452a-b372-659ae48fcb34", "cost": "10", "text": "Add AI", - "component": "pricingExtraService" + "component": "pricingTableExtraService" } ], "extraServiceEnabled": true, @@ -3567,7 +3899,7 @@ "aspectRatio": "16/9" } ], - "component": "simpleCarouselSlide" + "component": "carouselSlide" }, { "_uid": "f70e22c4-8942-468e-92ed-089fc5ad0487", @@ -3591,7 +3923,7 @@ "aspectRatio": "16/9" } ], - "component": "simpleCarouselSlide" + "component": "carouselSlide" }, { "_uid": "fcb7c84f-54f8-4f24-8887-c52880423f0c", @@ -3615,7 +3947,7 @@ "aspectRatio": "16/9" } ], - "component": "simpleCarouselSlide" + "component": "carouselSlide" }, { "_uid": "a54280c8-c8b9-4f8f-a5cf-f1b0c79515fb", @@ -3639,7 +3971,7 @@ "aspectRatio": "16/9" } ], - "component": "simpleCarouselSlide" + "component": "carouselSlide" }, { "_uid": "5dbca93a-39e0-46f8-8c76-4a73ca7a1eaa", @@ -3663,10 +3995,10 @@ "aspectRatio": "16/9" } ], - "component": "simpleCarouselSlide" + "component": "carouselSlide" } ], - "component": "simpleCarousel", + "component": "carousel", "marginTop": "base", "marginBottom": "base" }, @@ -5525,19 +5857,361 @@ }, { "id": 2335597, - "name": "Pricing", + "name": "Pricing Table", "preset": { - "_uid": "b4501ba5-a0ae-452d-bb61-fca7c9edf808", - "tiers": [], - "component": "pricing", - "extraService": [], - "extraServiceEnabled": false, - "yearlyDiscountPercentage": "" + "_uid": "248af295-e2af-4dc3-9874-4b108d11f59e", + "tiers": [ + { + "_uid": "3fd44cd6-d697-4370-bf32-6c552aec4922", + "icon": [ + { + "_uid": "3d775c4f-c57a-4d2e-8512-1b458f70af30", + "asset": { + "id": 17887678, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/68x80/a59904240e/personal.png", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "auto" + } + ], + "link": [ + { + "_uid": "715242fe-c6d0-4fe6-93ce-706df144de9c", + "link": { + "id": "19601884-a1af-4b99-bd95-1a3ca01d5b7a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "home" + }, + "text": "Sign up", + "variant": "ghost", + "component": "link" + } + ], + "name": "Free", + "price": "0", + "popular": false, + "features": [ + { + "_uid": "90730d25-5306-4de8-a25c-a55652528004", + "text": "Collaborative workspace", + "component": "pricingTableTierFeature" + }, + { + "_uid": "19d6f5df-3327-4554-b407-5da536545664", + "text": "Integrate with Slack, GitHub & more", + "component": "pricingTableTierFeature" + }, + { + "_uid": "64ebdf4a-7066-4f4d-9625-0e70ca5a4ca3", + "text": "Basic page analytics", + "component": "pricingTableTierFeature" + }, + { + "_uid": "cdef98dd-2835-4d38-822e-0449e6a4f4b6", + "text": "7 day page history", + "component": "pricingTableTierFeature" + }, + { + "_uid": "b655832d-f75a-4cc3-9f71-0805e2222fac", + "text": "Invite 10 guests", + "component": "pricingTableTierFeature" + } + ], + "component": "pricingTableTier", + "description": "For individuals to organize personal projects and life" + }, + { + "_uid": "621d07e7-97a4-4cd6-99cf-b1aec2a01e22", + "icon": [ + { + "_uid": "47a3d716-16b9-46b5-8c8c-86136335cedf", + "asset": { + "id": 17887679, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/86x80/d9b65aa6fe/pro.png", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "auto" + } + ], + "link": [ + { + "_uid": "babcdb95-8d5e-4393-9084-37acb27b1622", + "link": { + "id": "19601884-a1af-4b99-bd95-1a3ca01d5b7a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "home" + }, + "text": "Get started", + "variant": "ghost-dark", + "component": "link" + } + ], + "name": "Plus", + "price": "9,5", + "popular": true, + "features": [ + { + "_uid": "08bbb5eb-0f24-4805-9183-805960d28e26", + "text": "Everything in Free +", + "component": "pricingTableTierFeature" + }, + { + "_uid": "f90c76a4-f819-4928-b67e-8971636b00d6", + "text": "Unlimited blocks for teams", + "component": "pricingTableTierFeature" + }, + { + "_uid": "ae24e9b8-e69a-441b-9d5a-4a80feecfe09", + "text": "Unlimited file uploads", + "component": "pricingTableTierFeature" + }, + { + "_uid": "04519bd5-1773-4220-a43a-753c37035531", + "text": "30 day page history", + "component": "pricingTableTierFeature" + }, + { + "_uid": "be5b48a8-8108-4da3-acd4-b2aca3426fc3", + "text": "Invite 100 guests", + "component": "pricingTableTierFeature" + }, + { + "_uid": "62bc6d25-13d1-4a6f-959d-0b0afcbb517a", + "text": "Synced databases with 3rd party apps", + "component": "pricingTableTierFeature" + }, + { + "_uid": "0c279661-67e3-4323-afb6-8be777c5ca12", + "text": "Custom websites", + "component": "pricingTableTierFeature" + }, + { + "_uid": "e06266c1-2431-41ce-a6c1-aeeb95c5e637", + "text": "Custom automations", + "component": "pricingTableTierFeature" + }, + { + "_uid": "42be60b3-e869-461d-ba57-60436e83be1d", + "text": "Charts & dashboards", + "component": "pricingTableTierFeature" + } + ], + "component": "pricingTableTier", + "description": "For small teams and professionals to work together" + }, + { + "_uid": "0ee0310a-4d8d-482b-acdf-c7d7a97b5a87", + "icon": [ + { + "_uid": "fa25cbfd-f35c-405e-a831-a109de12f7db", + "asset": { + "id": 17887681, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/72x80/4229f5e65b/team.png", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "auto" + } + ], + "link": [ + { + "_uid": "963e8585-d5f5-4a3b-aff4-ca052469b348", + "link": { + "id": "19601884-a1af-4b99-bd95-1a3ca01d5b7a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "home" + }, + "text": "Get started", + "variant": "ghost", + "component": "link" + } + ], + "name": "Business", + "price": "14", + "popular": false, + "features": [ + { + "_uid": "10378d6f-ca0e-44af-a49e-8b661e4f478c", + "text": "Everything in Plus +", + "component": "pricingTableTierFeature" + }, + { + "_uid": "8129ad85-aa48-4b9e-a29f-bfa68a53bdc1", + "text": "SAML SSO", + "component": "pricingTableTierFeature" + }, + { + "_uid": "64ef613f-dfff-426d-8744-2be4fe1507f2", + "text": "Private teamspaces", + "component": "pricingTableTierFeature" + }, + { + "_uid": "63617e2a-cfd1-4cab-8c0b-456ae96cc21d", + "text": "Bulk PDF export", + "component": "pricingTableTierFeature" + }, + { + "_uid": "d42be252-e9b0-4e90-9bfb-09f791ad2986", + "text": "Advanced page analytics", + "component": "pricingTableTierFeature" + }, + { + "_uid": "0675b25e-01b9-49ff-8ac7-a4fd33839d5b", + "text": "90 day page history", + "component": "pricingTableTierFeature" + }, + { + "_uid": "2ceec853-d5c5-4bc5-bdf8-ca1cd6313736", + "text": "Invite 250 guests", + "component": "pricingTableTierFeature" + } + ], + "component": "pricingTableTier", + "description": "For growing businesses to streamline teamwork" + }, + { + "_uid": "bac0a072-c424-4939-bdca-34712f2f98c3", + "icon": [ + { + "_uid": "c112c6ca-ec0b-4773-b8e7-68030c72eb41", + "asset": { + "id": 17887680, + "alt": "", + "name": "", + "focus": "", + "title": "", + "source": "", + "filename": "https://a.storyblok.com/f/293915/84x80/8b7995cd2e/enterprise.png", + "copyright": "", + "fieldtype": "asset", + "meta_data": {}, + "is_external_url": false + }, + "component": "image", + "aspectRatio": "auto" + } + ], + "link": [ + { + "_uid": "250c84e5-1ac9-4ed4-95df-292ca5d890ee", + "link": { + "id": "5d416347-de08-4adb-b496-00b0a083de3a", + "url": "", + "linktype": "story", + "fieldtype": "multilink", + "cached_url": "blog" + }, + "text": "Contact Sales", + "variant": "ghost", + "component": "link" + } + ], + "name": "Enterprise", + "price": "", + "popular": false, + "features": [ + { + "_uid": "26b9f0df-0483-477e-9237-532bf3434338", + "text": "Everything in Business +", + "component": "pricingTableTierFeature" + }, + { + "_uid": "3db3dcb9-5676-4bf2-9f9c-d7982a833be7", + "text": "User provisioning (SCIM)", + "component": "pricingTableTierFeature" + }, + { + "_uid": "9494dfb8-356d-477d-b83d-0b3dea4af7a9", + "text": "Advanced security & controls", + "component": "pricingTableTierFeature" + }, + { + "_uid": "27e77849-dce1-4565-8dde-ba871a76f3b2", + "text": "Audit log", + "component": "pricingTableTierFeature" + }, + { + "_uid": "96746fce-73af-40b0-9dbe-15a6a47adee2", + "text": "Customer success manager", + "component": "pricingTableTierFeature" + }, + { + "_uid": "d556d078-df5a-433b-86c2-5f01baf1454f", + "text": "Workspace analytics", + "component": "pricingTableTierFeature" + }, + { + "_uid": "3dd02e41-dde0-4171-b656-eb4cab2326d1", + "text": "Unlimited page history", + "component": "pricingTableTierFeature" + }, + { + "_uid": "9215fc5a-523a-479b-80c6-9a9480a7720c", + "text": "Security & Compliance integrations", + "component": "pricingTableTierFeature" + }, + { + "_uid": "93ffb8ec-4bf3-4d88-90d5-5ee3d44789cf", + "text": "Invite 250 guests", + "component": "pricingTableTierFeature" + } + ], + "component": "pricingTableTier", + "description": "For organizations to operate with scalability, control, and security" + } + ], + "maxWidth": "base", + "component": "pricingTable", + "marginTop": "base", + "extraService": [ + { + "_uid": "85bb65fa-2380-4839-8372-e03362815d02", + "cost": "10", + "text": "Add AI", + "component": "pricingTableExtraService" + } + ], + "marginBottom": "base", + "backgroundColor": "none", + "extraServiceEnabled": true, + "yearlyDiscountPercentage": "20" }, "component_id": 6489128, "space_id": 293915, "created_at": "2024-10-29T14:34:25.198Z", - "updated_at": "2024-10-29T14:34:25.198Z", + "updated_at": "2024-11-06T09:41:54.022Z", "image": "//a.storyblok.com/f/293915/x/a01a228065/screenshot-2024-10-29-at-15-33-45.png", "color": "", "icon": "", diff --git a/packages/tailwind-config/lib/plugin.ts b/packages/tailwind-config/lib/plugin.ts index 87a275b..61eeedf 100644 --- a/packages/tailwind-config/lib/plugin.ts +++ b/packages/tailwind-config/lib/plugin.ts @@ -17,6 +17,14 @@ export const customPlugin = plugin( { theme: { extend: { + typography: { + DEFAULT: { + css: { + "--tw-prose-headings": `var("--text")`, + "--tw-prose-invert-headings": `var("--text")`, + }, + }, + }, colors: { primary: { "50": "#eff6ff", diff --git a/packages/ui/components/sections/carousels/SimpleCarousel/CarouselCard.tsx b/packages/ui/components/sections/carousel/CarouselCard.tsx similarity index 75% rename from packages/ui/components/sections/carousels/SimpleCarousel/CarouselCard.tsx rename to packages/ui/components/sections/carousel/CarouselCard.tsx index 375a2f7..4fb6ec0 100644 --- a/packages/ui/components/sections/carousels/SimpleCarousel/CarouselCard.tsx +++ b/packages/ui/components/sections/carousel/CarouselCard.tsx @@ -1,7 +1,7 @@ -import { cn } from "../../../../utils"; -import { Image } from "../../../ui/image"; -import { ImageAspectRatio } from "../../../ui/image/types"; -import { RichText } from "../../../ui/richText"; +import { cn } from "../../../utils"; +import { Image } from "../../ui/image"; +import { ImageAspectRatio } from "../../ui/image/types"; +import { RichText } from "../../ui/richText"; import type { ICarouselCardProps } from "./types"; export default function CarouselCard({ @@ -20,7 +20,7 @@ export default function CarouselCard({ return (
{ switch (effect) { @@ -67,14 +66,14 @@ const ArrowButton = React.forwardRef( ), ); -export function SimpleCarousel({ +export function Carousel({ text, slides, customModules, customModulesParams, effect, params, -}: ISimpleCarouselProps) { +}: ICarouselProps) { const effectModule = getEffectModule(effect); const prevButtonRef = useRef(null); diff --git a/packages/ui/components/sections/carousel/types.ts b/packages/ui/components/sections/carousel/types.ts new file mode 100644 index 0000000..d42b92c --- /dev/null +++ b/packages/ui/components/sections/carousel/types.ts @@ -0,0 +1,15 @@ +import type { IGenericCarouselBaseProps } from "../../ui/GenericCarousel/types"; +import type { IImageProps } from "../../ui/image/types"; +import { type IRichTextProps } from "../../ui/richText/types"; + +export interface ICarouselProps extends IGenericCarouselBaseProps { + text?: IRichTextProps; + slides: ICarouselCardProps[]; +} + +export interface ICarouselCardProps { + image: IImageProps; + text?: IRichTextProps; + effect: IGenericCarouselBaseProps["effect"]; + isActive?: boolean; +} diff --git a/packages/ui/components/sections/carousels/SimpleCarousel/types.ts b/packages/ui/components/sections/carousels/SimpleCarousel/types.ts deleted file mode 100644 index fc1a6ce..0000000 --- a/packages/ui/components/sections/carousels/SimpleCarousel/types.ts +++ /dev/null @@ -1,15 +0,0 @@ -import type { IGenericCarouselBaseProps } from "../../../ui/GenericCarousel/types"; -import type { IImageProps } from "../../../ui/image/types"; -import { type IRichTextProps } from "../../../ui/richText/types"; - -export interface ISimpleCarouselProps extends IGenericCarouselBaseProps { - text?: IRichTextProps; - slides: ICarouselCardProps[]; -} - -export interface ICarouselCardProps { - image: IImageProps; - text?: IRichTextProps; - effect: IGenericCarouselBaseProps["effect"]; - isActive?: boolean; -} diff --git a/packages/ui/components/sections/carousels/WideSimpleCarousel/CarouselCard.tsx b/packages/ui/components/sections/carousels/WideSimpleCarousel/CarouselCard.tsx deleted file mode 100644 index 3455cdd..0000000 --- a/packages/ui/components/sections/carousels/WideSimpleCarousel/CarouselCard.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { Image } from "../../../ui/image"; -import { ImageAspectRatio } from "../../../ui/image/types"; -import type { IWideCarouselCardProps } from "./types"; - -export default function WideCarouselCard({ image }: IWideCarouselCardProps) { - const imageWrapperProps = { - className: "h-40", - style: { - aspectRatio: ImageAspectRatio[image.aspectRatio as ImageAspectRatio], - }, - }; - - return ( -
-

WIDE simple carousel card

-
- -
-
- ); -} diff --git a/packages/ui/components/sections/carousels/WideSimpleCarousel/index.tsx b/packages/ui/components/sections/carousels/WideSimpleCarousel/index.tsx deleted file mode 100644 index 7d0301a..0000000 --- a/packages/ui/components/sections/carousels/WideSimpleCarousel/index.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import { GenericCarousel } from "../../../ui/GenericCarousel"; -import CarouselCard from "./CarouselCard"; -import type { IWideSimpleCarouselProps } from "./types"; - -export function WideSimpleCarousel({ - slides, - customModules, - customModulesParams, -}: IWideSimpleCarouselProps) { - return ( - ({ - children: , - className: "!w-full", - }))} - customModules={customModules} - customModulesParams={customModulesParams} - /> - ); -} diff --git a/packages/ui/components/sections/carousels/WideSimpleCarousel/types.ts b/packages/ui/components/sections/carousels/WideSimpleCarousel/types.ts deleted file mode 100644 index fc1c47d..0000000 --- a/packages/ui/components/sections/carousels/WideSimpleCarousel/types.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { IGenericCarouselBaseProps } from "../../../ui/GenericCarousel/types"; -import type { IImageProps } from "../../../ui/image/types"; - -export interface IWideCarouselCardProps { - image: IImageProps; -} - -export interface IWideSimpleCarouselProps extends IGenericCarouselBaseProps { - slides: IWideCarouselCardProps[]; -} diff --git a/packages/ui/components/sections/carousels/index.ts b/packages/ui/components/sections/carousels/index.ts deleted file mode 100644 index 5dbaf33..0000000 --- a/packages/ui/components/sections/carousels/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./SimpleCarousel"; -export * from "./WideSimpleCarousel"; diff --git a/packages/ui/components/sections/pricing/index.tsx b/packages/ui/components/sections/pricingTable/index.tsx similarity index 97% rename from packages/ui/components/sections/pricing/index.tsx rename to packages/ui/components/sections/pricingTable/index.tsx index 765aed1..53a5fa3 100644 --- a/packages/ui/components/sections/pricing/index.tsx +++ b/packages/ui/components/sections/pricingTable/index.tsx @@ -8,7 +8,7 @@ import { Link } from "../../ui/link"; import { Switch } from "../../ui/switch/Switch"; import type { IPricingProps } from "./types"; -export function Pricing({ +export function PricingTable({ tiers, yearlyDiscountPercentage, extraServiceEnabled, @@ -23,7 +23,7 @@ export function Pricing({ }; return ( -
+ <>
-
+ ); } diff --git a/packages/ui/components/sections/pricing/types.ts b/packages/ui/components/sections/pricingTable/types.ts similarity index 100% rename from packages/ui/components/sections/pricing/types.ts rename to packages/ui/components/sections/pricingTable/types.ts diff --git a/packages/ui/components/ui/GenericCarousel/index.tsx b/packages/ui/components/ui/GenericCarousel/index.tsx index f5ac0e0..f224f8f 100644 --- a/packages/ui/components/ui/GenericCarousel/index.tsx +++ b/packages/ui/components/ui/GenericCarousel/index.tsx @@ -44,7 +44,7 @@ export function GenericCarousel({ params, }: IGenericCarouselProps) { return ( -
+
{text && }