Skip to content

Commit

Permalink
add cards
Browse files Browse the repository at this point in the history
  • Loading branch information
christinaausley committed Mar 4, 2025
1 parent c10a761 commit a2e2778
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 7 deletions.
46 changes: 43 additions & 3 deletions docs/components/zeebe/react-components/_zeebe-card-data.js
Original file line number Diff line number Diff line change
@@ -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.",
},
];
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions docs/components/zeebe/zeebe-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<ZeebeGrid zeebe={gettingStartedCards} />

## Next steps

- Get familiar with [technical concepts](technical-concepts/technical-concepts-overview.md).

0 comments on commit a2e2778

Please sign in to comment.