@asaleh37/ui-base 1.2.20 → 1.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/common/Home.tsx +22 -24
- package/src/assets/logo.png +0 -0
package/package.json
CHANGED
|
@@ -8,30 +8,28 @@ import AttachmentPanel from "../templates/attachment/AttachmentPanel";
|
|
|
8
8
|
|
|
9
9
|
const Home: React.FC = () => {
|
|
10
10
|
return (
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
// </div>
|
|
34
|
-
// </Box>
|
|
11
|
+
<Box
|
|
12
|
+
sx={{
|
|
13
|
+
display: "flex",
|
|
14
|
+
flexDirection: "column",
|
|
15
|
+
alignItems: "center",
|
|
16
|
+
justifyContent: "center",
|
|
17
|
+
flex: 1,
|
|
18
|
+
fontSize: 24,
|
|
19
|
+
fontWeight: "bold",
|
|
20
|
+
}}
|
|
21
|
+
>
|
|
22
|
+
<img src="logo.png" style={{ margin: 5 }} />
|
|
23
|
+
<div>Welcome to Ezzsteel Flat Product Management System</div>
|
|
24
|
+
<div style={{ fontSize: 16 }}>
|
|
25
|
+
Use side menu [
|
|
26
|
+
<FontAwesomeIcon
|
|
27
|
+
icon="bars"
|
|
28
|
+
style={{ marginLeft: 10, marginRight: 10 }}
|
|
29
|
+
/>
|
|
30
|
+
] to navigate to your authorized system modules
|
|
31
|
+
</div>
|
|
32
|
+
</Box>
|
|
35
33
|
);
|
|
36
34
|
};
|
|
37
35
|
|
package/src/assets/logo.png
DELETED
|
Binary file
|