diff --git a/docs/components/zeebe/react-components/_zeebe-card-data.js b/docs/components/zeebe/react-components/_zeebe-card-data.js index 9a75af5e7fc..d04eee97a32 100644 --- a/docs/components/zeebe/react-components/_zeebe-card-data.js +++ b/docs/components/zeebe/react-components/_zeebe-card-data.js @@ -1,11 +1,51 @@ -// import IconPlayImg from "../img/icon-play.png"; +import IconWorkflow from "../../zeebe/technical-concepts/assets/icon-workflow-engine.png"; +import IconArrow from "../../zeebe/technical-concepts/assets/icon-arrow.png"; +import IconBlackbox from "../../zeebe/technical-concepts/assets/icon-blackbox.png"; +import IconPartition from "../../zeebe/technical-concepts/assets/icon-partition.png"; +import IconEnd from "../../zeebe/technical-concepts/assets/icon-end-to-end.png"; +import IconProtocol from "../../zeebe/technical-concepts/assets/icon-protocol.png"; // Getting started cards on Zeebe introduction page export const gettingStartedCards = [ + { + link: "../zeebe/technical-concepts/architecture", + title: "Architecture", + image: IconWorkflow, + description: + "Learn about the four main components in Zeebe's architecture: clients, gateways, brokers, and exporters.", + }, { link: "../zeebe/technical-concepts/clustering", title: "Clustering", - // image: IconPlayImg, - description: "lorem ipsum", + image: IconArrow, + description: + "Learn how Zeebe can operate as a cluster of brokers, forming a peer-to-peer network.", + }, + { + link: "../zeebe/technical-concepts/partitions", + title: "Partitions", + image: IconPartition, + description: + "Learn about partitions, which are persistent streams of process-related events.", + }, + { + link: "../zeebe/technical-concepts/internal-processing", + title: "Internal processing", + image: IconBlackbox, + description: + "Understand state machines, events and commands, stateful stream processing, driving the engine, and handling backpressure within Zeebe.", + }, + { + link: "../zeebe/technical-concepts/process-lifecycles", + title: "Process lifecycles", + image: IconEnd, + description: + "In Zeebe, the process execution is represented internally by events of type ProcessInstance.", + }, + { + link: "../zeebe/technical-concepts/protocols", + title: "Protocols", + image: IconProtocol, + description: "Let's discuss gRPC and supported clients.", }, ]; diff --git a/docs/components/zeebe/technical-concepts/assets/icon-arrow.png b/docs/components/zeebe/technical-concepts/assets/icon-arrow.png new file mode 100644 index 00000000000..b224fcbe929 Binary files /dev/null and b/docs/components/zeebe/technical-concepts/assets/icon-arrow.png differ diff --git a/docs/components/zeebe/technical-concepts/assets/icon-blackbox.png b/docs/components/zeebe/technical-concepts/assets/icon-blackbox.png new file mode 100644 index 00000000000..3a7607cbe40 Binary files /dev/null and b/docs/components/zeebe/technical-concepts/assets/icon-blackbox.png differ diff --git a/docs/components/zeebe/technical-concepts/assets/icon-end-to-end.png b/docs/components/zeebe/technical-concepts/assets/icon-end-to-end.png new file mode 100644 index 00000000000..a20b2a71343 Binary files /dev/null and b/docs/components/zeebe/technical-concepts/assets/icon-end-to-end.png differ diff --git a/docs/components/zeebe/technical-concepts/assets/icon-partition.png b/docs/components/zeebe/technical-concepts/assets/icon-partition.png new file mode 100644 index 00000000000..2b47ce151e2 Binary files /dev/null and b/docs/components/zeebe/technical-concepts/assets/icon-partition.png differ diff --git a/docs/components/zeebe/technical-concepts/assets/icon-protocol.png b/docs/components/zeebe/technical-concepts/assets/icon-protocol.png new file mode 100644 index 00000000000..32f6351a93f Binary files /dev/null and b/docs/components/zeebe/technical-concepts/assets/icon-protocol.png differ diff --git a/docs/components/zeebe/technical-concepts/assets/icon-workflow-engine.png b/docs/components/zeebe/technical-concepts/assets/icon-workflow-engine.png new file mode 100644 index 00000000000..c5c58e22431 Binary files /dev/null and b/docs/components/zeebe/technical-concepts/assets/icon-workflow-engine.png differ diff --git a/docs/components/zeebe/zeebe-overview.md b/docs/components/zeebe/zeebe-overview.md index 86c6c24a6ac..f653f90db2a 100644 --- a/docs/components/zeebe/zeebe-overview.md +++ b/docs/components/zeebe/zeebe-overview.md @@ -27,7 +27,3 @@ For documentation on deploying Zeebe as part of Camunda 8 Self-Managed, refer to New to Zeebe? Learn about clustering, partitions, internal processing, and more. - -## Next steps - -- Get familiar with [technical concepts](technical-concepts/technical-concepts-overview.md).