Skip to content

Commit 4aadf3f

Browse files
Merge pull request #388 from zenml-io/UAT
2 parents d659e31 + 326b58b commit 4aadf3f

File tree

4 files changed

+72
-45
lines changed

4 files changed

+72
-45
lines changed

src/ui/layouts/common/layouts/AuthenticatedLayout/DeploymentBanner/index.tsx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,24 @@ function DeploymentBanner() {
66
<aside className={styles.deploymentBanner}>
77
<p className={styles.deploymentBanner__paragraph}>
88
ZenML is running locally. In order to run your pipelines in the cloud,
9-
you need to deploy ZenML. See the{' '}
9+
you need to{' '}
1010
<a
1111
target="_blank"
1212
rel="noopener noreferrer"
1313
href="https://docs.zenml.io/platform-guide/set-up-your-mlops-platform/deploy-zenml"
14+
>
15+
deploy ZenML yourself
16+
</a>
17+
, or spin up ZenML with one-click using the{' '}
18+
<a
19+
target="_blank"
20+
rel="noopener noreferrer"
21+
href="https://sandbox.zenml.io/"
1422
>
1523
{' '}
16-
docs
17-
</a>{' '}
18-
to learn how.
24+
MLOps Platform Sandbox
25+
</a>
26+
.
1927
</p>
2028
</aside>
2129
);

src/ui/layouts/plugins/ListPlugins/index.tsx

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -122,33 +122,6 @@ const ListPlugins: React.FC = () => {
122122

123123
<Filters currentFilters={filters} updateFilters={setFilters} />
124124
</FlexBox>
125-
<FlexBox style={{ flexDirection: 'column', gap: '12px' }}>
126-
<Paragraph style={{ fontSize: '20px', fontWeight: 600 }}>
127-
ZenML Hub: Streamlining MLOps Collaboration with Reusable Components
128-
</Paragraph>
129-
<Paragraph>
130-
The ZenML Hub is a{' '}
131-
<a
132-
target="_blank"
133-
rel="noopener noreferrer"
134-
href="https://blog.zenml.io/zenml-hub-launch/"
135-
>
136-
plugin system
137-
</a>{' '}
138-
that allows users to contribute and consume stack component flavors,
139-
pipelines, steps, materializers, and other pieces of code seamlessly
140-
in their ML pipelines. Below are a list of community contributed
141-
plugins. If you would like to create your own plugin, click{' '}
142-
<a
143-
target="_blank"
144-
rel="noopener noreferrer"
145-
href="https://docs.zenml.io/user-guide/advanced-guide/leverage-community-contributed-plugins"
146-
>
147-
here
148-
</a>
149-
.
150-
</Paragraph>
151-
</FlexBox>
152125

153126
{/* list plugins */}
154127
<FlexBox flexWrap={true} padding="lg">

src/ui/layouts/plugins/shared/Layout.tsx

Lines changed: 44 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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}

src/ui/layouts/stacks/Header/index.tsx

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,36 @@ const HeaderWithButtons: React.FC<{
6363
// className={cn(styles.header, 'd-none d-md-block')}
6464
className={styles.header2}
6565
>
66-
<FlexBox className="d-none d-md-flex">
66+
<FlexBox flexDirection="column" className="d-none d-md-flex">
6767
<Paragraph
6868
style={{
6969
fontSize: '42px',
7070
fontWeight: 'bold',
7171
lineHeight: '48px',
7272
color: '#424240',
73+
marginBottom: '8px',
7374
}}
7475
>
7576
{title}
7677
</Paragraph>
78+
<Paragraph>
79+
Don't have any MLOps infrastructure deployed? Check out the{' '}
80+
<a
81+
target="_blank"
82+
rel="noopener noreferrer"
83+
href="https://sandbox.zenml.io"
84+
style={{ color: '#443E99' }}
85+
>
86+
MLOps Platform Sandbox
87+
</a>{' '}
88+
to get a production-ready stack in seconds.
89+
</Paragraph>
7790
</FlexBox>
7891

7992
<FlexBox
80-
alignItems="center"
93+
alignItems="end"
8194
flexWrap
95+
style={{ height: '100%' }}
8296
justifyContent="flex-end"
8397
className={styles.rightWrapper}
8498
>

0 commit comments

Comments
 (0)