Skip to content

Commit bfa8624

Browse files
Merge pull request #1317 from bluewave-labs/mo-129-may-6-iso-ui
Mo 129 may 6 iso UI
2 parents 4a3ab11 + 854a833 commit bfa8624

File tree

10 files changed

+1374
-239
lines changed

10 files changed

+1374
-239
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { Typography, Stack } from "@mui/material";
2+
3+
const ComingSoonMessage = () => {
4+
<Stack
5+
sx={{
6+
height: 400,
7+
display: "flex",
8+
alignItems: "center",
9+
justifyContent: "center",
10+
backgroundColor: "#F5F6F6",
11+
borderRadius: 2,
12+
p: 4,
13+
}}
14+
>
15+
<Typography variant="h6" sx={{ color: "#13715B", mb: 2 }}>
16+
Coming Soon!
17+
</Typography>
18+
<Typography sx={{ color: "#232B3A", textAlign: "center" }}>
19+
We're currently working on implementing this framework.
20+
<br />
21+
EU AI Act is currently available for your compliance and assessment needs.
22+
</Typography>
23+
</Stack>;
24+
};
25+
26+
export default ComingSoonMessage;

0 commit comments

Comments
 (0)