@@ -8,18 +8,50 @@ export const PluginsLayout: React.FC<{
88} > = ( { title, children } ) => {
99 return (
1010 < FlexBox fullWidth padding = "lg2" flexDirection = "column" >
11- < H2 style = { { fontWeight : 500 } } > { title } </ H2 >
12- < FlexBox fullWidth justifyContent = "flex-end" >
13- < Paragraph color = "grey" style = { { fontSize : '14px' } } >
14- Check out our easy to read{ ' ' }
15- < a
16- href = "https://docs.zenml.io/user-guide/advanced-guide/leverage-community-contributed-plugins"
17- target = "__blank"
18- rel = "noopener noreferrer"
19- >
20- docs
21- </ a >
22- </ Paragraph >
11+ < FlexBox flexDirection = "row" style = { { gap : '8px' } } >
12+ < FlexBox flexDirection = "column" >
13+ < H2 style = { { fontWeight : 500 } } > { title } </ H2 >
14+
15+ < Paragraph style = { { marginTop : '8px' } } >
16+ The ZenML Hub is a{ ' ' }
17+ < a
18+ target = "_blank"
19+ rel = "noopener noreferrer"
20+ href = "https://blog.zenml.io/zenml-hub-launch/"
21+ >
22+ plugin system
23+ </ a > { ' ' }
24+ that allows users to contribute and consume stack component flavors,
25+ pipelines, steps, materializers, and other pieces of code seamlessly
26+ in their ML pipelines. Below are a list of community contributed
27+ plugins. If you would like to create your own plugin, click{ ' ' }
28+ < a
29+ target = "_blank"
30+ rel = "noopener noreferrer"
31+ href = "https://docs.zenml.io/starter-guide/collaborate/zenml-hub"
32+ >
33+ here
34+ </ a >
35+ .
36+ </ Paragraph >
37+ </ FlexBox >
38+ < FlexBox
39+ fullWidth
40+ flexDirection = "column"
41+ alignItems = "end"
42+ justifyContent = "flex-end"
43+ >
44+ < Paragraph color = "grey" style = { { fontSize : '14px' , flexShrink : 0 } } >
45+ Check out our easy to read{ ' ' }
46+ < a
47+ href = "https://docs.zenml.io/starter-guide/collaborate/zenml-hub"
48+ target = "__blank"
49+ rel = "noopener noreferrer"
50+ >
51+ docs
52+ </ a >
53+ </ Paragraph >
54+ </ FlexBox >
2355 </ FlexBox >
2456
2557 { children }
0 commit comments