+
);
diff --git a/src/storybook/stand-alone-documentaion/welcome/contributor/contributor.scss b/src/storybook/stand-alone-documentaion/welcome/contributor/contributor.scss
index 9f0330e328..f16e5334e7 100644
--- a/src/storybook/stand-alone-documentaion/welcome/contributor/contributor.scss
+++ b/src/storybook/stand-alone-documentaion/welcome/contributor/contributor.scss
@@ -5,7 +5,9 @@
position: relative;
width: 100%;
height: 182px;
- border-radius: $border-radius-small;;
+ border-radius: $border-radius-small;
+ background-repeat: no-repeat;
+ background-size: cover;
}
&_image {
position: absolute;
diff --git a/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.jsx b/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.jsx
index af6bd6e681..3bed0ae368 100644
--- a/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.jsx
+++ b/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.jsx
@@ -1,24 +1,42 @@
import { Contributor } from "../contributor/contributor";
-import { Rotem, Evgeniy, Hadas, Orr, Sahar, Moshe } from "../assets";
+import { Evgeniy, Hadas, Orr, Sahar, Moshe } from "../assets";
import "./contributors.scss";
export const Contributors = () => (
-
+
+
+
-
-
-
);
diff --git a/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.scss b/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.scss
index 1fcd364ddb..a4c2761b5d 100644
--- a/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.scss
+++ b/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.scss
@@ -7,4 +7,26 @@
grid-template-columns: 1fr 1fr 1fr;
grid-gap: $spacing-large;
grid-row-gap: 90px;
+
+ &_contributor {
+ &--orr {
+ background-image: url('../assets/OrrBackground.png');
+ }
+
+ &--evgeniy {
+ background-image: url('../assets/EvgeniyBackground.png');
+ }
+
+ &--hadas {
+ background-image: url('../assets/HadasBackground.png');
+ }
+
+ &--moshe {
+ background-image: url('../assets/MosheBackground.png');
+ }
+
+ &--sahar {
+ background-image: url('../assets/SaharBackground.png');
+ }
+ }
}
\ No newline at end of file
diff --git a/src/storybook/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.jsx b/src/storybook/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.jsx
index 22b52ac185..19ed866ac7 100644
--- a/src/storybook/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.jsx
+++ b/src/storybook/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.jsx
@@ -5,11 +5,7 @@ import "./other-contributors-list.scss";
const BASE_CLASS = "monday-other-contributors-list";
const excludedDevelopers = new Set();
-/** excludedDevelopers.add(60314759); // Orr Gotlieb
-excludedDevelopers.add(72390374); // Hadas Farhi
-excludedDevelopers.add(35146205); // Moshe Zemah * */
excludedDevelopers.add(41898282); // github-actions[bot]
-// excludedDevelopers.add(9280709); // Sahar Brodbeker
excludedDevelopers.add(49699333); // dependabot[bot]
export const OtherContributorsList = () => {
@@ -21,14 +17,26 @@ export const OtherContributorsList = () => {
}, []);
const contributors = useMemo(() => {
+ const finalContributors = [];
if (contributorsJson) {
- return contributorsJson
+ // designer contributors
+ finalContributors.push(
+
+ Rotem Dekel
+
+ );
+
+ // developer contributors
+ const developerContributors = contributorsJson
.filter(contributor => !excludedDevelopers.has(contributor.id))
.map(contributor => (
{contributor.login}
));
+
+ finalContributors.push(...developerContributors);
+ return finalContributors;
}
}, [contributorsJson]);
diff --git a/src/storybook/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.scss b/src/storybook/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.scss
index 4e330bda10..af04418c1b 100644
--- a/src/storybook/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.scss
+++ b/src/storybook/stand-alone-documentaion/welcome/other-contributors-list/other-contributors-list.scss
@@ -1,7 +1,8 @@
@import "../../../styles/typography.scss";
+@import "../../../styles/content-spacing";
.monday-other-contributors-list {
- @include small-text;
+ margin-top: $spacing-between-section-items;
&_developer:not(:last-child):after {
@include small-text;
content: ","
diff --git a/src/storybook/stand-alone-documentaion/welcome/principle/principle.jsx b/src/storybook/stand-alone-documentaion/welcome/principle/principle.jsx
index 9565f221db..01b9767b7d 100644
--- a/src/storybook/stand-alone-documentaion/welcome/principle/principle.jsx
+++ b/src/storybook/stand-alone-documentaion/welcome/principle/principle.jsx
@@ -4,10 +4,6 @@ import "./principle.scss";
const PRINCIPLE_VISUAL_ELEMENT = `monday-storybook-principle`;
export const Principle = ({ imgSrc, title, description }) => {
- const principleVisualElement = (
-
-
-
- );
+ const principleVisualElement =
;
return
;
};
diff --git a/src/storybook/stand-alone-documentaion/welcome/principle/principle.scss b/src/storybook/stand-alone-documentaion/welcome/principle/principle.scss
index 26435c19ae..849cd398f7 100644
--- a/src/storybook/stand-alone-documentaion/welcome/principle/principle.scss
+++ b/src/storybook/stand-alone-documentaion/welcome/principle/principle.scss
@@ -11,8 +11,4 @@
justify-content: center;
align-items: center;
}
- &_image {
- height: 126px;
- width: 173px;
- }
}
\ No newline at end of file
diff --git a/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.jsx b/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.jsx
index d9e539a729..4b602ede6d 100644
--- a/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.jsx
+++ b/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.jsx
@@ -1,11 +1,9 @@
import { ComponentName } from "../../../components";
-import { headerBanner } from "../assets";
import "./welcome-header.scss";
const BASE_CLASS = "monday-storybook-welcome-header";
export const WelcomeHeader = () => (
Welcome to the monday.com Work OS Design System
-
);
diff --git a/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.scss b/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.scss
index 39d1be9b4e..d931b14623 100644
--- a/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.scss
+++ b/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.scss
@@ -6,9 +6,11 @@
height: 294px;
display: flex;
align-items: center;
- @include theme-prop(background-color, dark-background-color);
min-width: 650px;
padding-left: 40px;
+ background-repeat: no-repeat;
+ background-size: cover;
+ background-image: url('../assets/WelcomePageCover.png');
&_text {
width: 461px;
diff --git a/src/storybook/stand-alone-documentaion/welcome/welcome.stories.mdx b/src/storybook/stand-alone-documentaion/welcome/welcome.stories.mdx
index 6d1385a525..960a368a35 100644
--- a/src/storybook/stand-alone-documentaion/welcome/welcome.stories.mdx
+++ b/src/storybook/stand-alone-documentaion/welcome/welcome.stories.mdx
@@ -33,9 +33,9 @@ Our design principles were developed based on best practices to ensure top-notch
## Contributors
monday.com’s designers, developers, and writers provide teams with universal assets—elements, components, patterns, and code—and the guidance on how to design and build with them.
We welcome contributions to monday.com design system!
-
Read our contributing guide and help us build and improve our components.
### Meet the client foundations team
-
\ No newline at end of file
+
+