Skip to content

Commit

Permalink
zeebe landing page rework
Browse files Browse the repository at this point in the history
  • Loading branch information
christinaausley committed Mar 4, 2025
1 parent b735282 commit c10a761
Show file tree
Hide file tree
Showing 4 changed files with 426 additions and 10 deletions.
11 changes: 11 additions & 0 deletions docs/components/zeebe/react-components/_zeebe-card-data.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// import IconPlayImg from "../img/icon-play.png";

// Getting started cards on Zeebe introduction page
export const gettingStartedCards = [
{
link: "../zeebe/technical-concepts/clustering",
title: "Clustering",
// image: IconPlayImg,
description: "lorem ipsum",
},
];
30 changes: 30 additions & 0 deletions docs/components/zeebe/react-components/_zeebe-card.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import "./_zeebe-table.css";

const ZeebeCard = ({ link, title, image, description }) => {
return (
<a href={link} className="zeebe-card" title={title}>
<img src={image} alt={`${title} icon`} className="zeebe-card-image" />
<h3>{title}</h3>
<p>{description}</p>
</a>
);
};

const ZeebeGrid = ({ zeebe }) => {
return (
<div className="zeebe-grid">
{zeebe.map((zeebe, index) => (
<ZeebeCard
key={index}
link={zeebe.link}
title={zeebe.title}
image={zeebe.image}
description={zeebe.description}
/>
))}
</div>
);
};

export default ZeebeGrid;
Loading

0 comments on commit c10a761

Please sign in to comment.