Skip to content

Commit ff644b9

Browse files
docs(website): add note about being evaluated for production
1 parent 64522aa commit ff644b9

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

packages/overmind-website/src/components/FrontPage/index.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ const FrontPage: SFC = () => {
4646
management to a minimum. Making you a <strong>happier</strong> and
4747
more <strong>productive</strong> developer!
4848
</div>
49+
<div className={styles.evaluated}>
50+
<strong>Note!</strong> Overmind is currently in release candidate
51+
and is being evaluated for production. Please join us and battle
52+
test. We are committed to nail any last bugs and optimizations
53+
required
54+
</div>
4955
</div>
5056
<div
5157
className={css(

packages/overmind-website/src/components/FrontPage/styles.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,21 @@ export const wrapper = css`
1717
}
1818
`
1919

20+
export const evaluated = css`
21+
background-color: var(--color-white-2);
22+
color: var(--color-dark-1);
23+
padding: var(--padding-4);
24+
border-radius: 3px;
25+
margin-top: 50px;
26+
max-width: 700px;
27+
> strong {
28+
color: red;
29+
}
30+
`
31+
2032
export const summary = css`
2133
margin-top: 50px;
34+
max-width: 700px;
2235
position: relative;
2336
font-size: var(--font-size-4);
2437
text-align: center;

0 commit comments

Comments
 (0)