Skip to content

Commit bbec95a

Browse files
committed
update elixir web 0.5
1 parent 87106e6 commit bbec95a

22 files changed

+348
-159
lines changed

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
work correctly both with client-side routing and a non-root public URL.
2323
Learn how to configure a non-root public URL by running `npm run build`.
2424
-->
25-
<title>Elixir - go from data to knowledge</title>
25+
<title>Elixir | Where data teams do their best work</title>
2626
<meta name="description" content="Elixir">
27-
<meta name="keywords" content="Elixir, go from data to knowledge">
27+
<meta name="keywords" content="Elixir | Where data teams do their best work">
2828
<meta name="author" content="ciusji">
2929
</head>
3030
<body style="font-family: 'Arial', sans-serif;">

src/components/Footer/Footer.js

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from "react";
22
import Grid from "@material-ui/core/Grid";
3-
import {Typography} from "../Wrappers";
43
import Divider from "@material-ui/core/Divider";
54
import Button from "@material-ui/core/Button";
65
import InputBase from "@material-ui/core/InputBase";
@@ -14,6 +13,7 @@ import GitHubLogo from "../../images/github.svg";
1413

1514
export default function Footer() {
1615
const classes = useStyles();
16+
const currentYear = new Date().getFullYear();
1717

1818
return (
1919
<div className={classes.root}>
@@ -32,21 +32,20 @@ export default function Footer() {
3232
<Grid container>
3333
<Grid item xs={2} className={classes.footerBody}>
3434
<b className={classes.title2}>ElixirNote</b>
35-
<p className={classes.body2} onClick={() => window.open("https://github.com/ElixirNote", "_target")}>About
36-
Us</p>
37-
<p className={classes.body2}
38-
onClick={() => window.open("https://github.com/ElixirNote", "_target")}>Terms</p>
35+
<p className={classes.body2} onClick={() => window.open("https://github.com/ElixirNote", "_target")}>About Us</p>
36+
<p className={classes.body2} onClick={() => window.open("https://github.com/ElixirNote/elixirnote/blob/main/LICENSE", "_target")}>License</p>
37+
<p className={classes.body2} onClick={() => window.open("https://ciusji.gitbook.io/elixirnote/", "_target")}>Document</p>
38+
<p className={classes.body2} onClick={() => window.open("https://ciusji.gitbook.io/elixirnote/appendix/faq", "_target")}>FAQs</p>
3939
</Grid>
4040
<Grid item xs={2} className={classes.footerBody}>
4141
<b className={classes.title2}>GuinsooLab</b>
42-
<p className={classes.body2}
43-
onClick={() => window.open("https://github.com/GuinsooLab", "_target")}>GuinsooLab Stack</p>
44-
<p className={classes.body2}
45-
onClick={() => window.open("https://guinsoolab.github.io/glab", "_target")}>GuinsooLab Solutions</p>
46-
<p className={classes.body2}
47-
onClick={() => window.open("https://github.com/Spotrix", "_target")}>Spotrix</p>
48-
<p className={classes.body2}
49-
onClick={() => window.open("https://github.com/IreliaTable", "_target")}>IreliaTable</p>
42+
<p className={classes.body2} onClick={() => window.open("https://ciusji.gitbook.io/guinsoolab/solutions/guinsoolab-console", "_target")}>Console</p>
43+
<p className={classes.body2} onClick={() => window.open("https://ciusji.gitbook.io/guinsoolab/solutions/guinsoolab-finance", "_target")}>Finance</p>
44+
<p className={classes.body2} onClick={() => window.open("https://ciusji.gitbook.io/guinsoolab/solutions/guinsoolab-infrastructure", "_target")}>Infrastructure</p>
45+
<p className={classes.body2} onClick={() => window.open("https://ciusji.gitbook.io/guinsoolab/solutions/guinsoolab-nextgen-bi", "_target")}>NextGen BI</p>
46+
<p className={classes.body2} onClick={() => window.open("https://github.com/Spotrix", "_target")}>Spotrix</p>
47+
<p className={classes.body2} onClick={() => window.open("https://github.com/ElixirNote", "_target")}>ElixirNote</p>
48+
<p className={classes.body2} onClick={() => window.open("https://github.com/LeonaLog", "_target")}>Leona</p>
5049
</Grid>
5150
<Grid item xs={2} className={classes.footerBody}>
5251
<b className={classes.title2}>Community</b>
@@ -59,16 +58,21 @@ export default function Footer() {
5958
<b className={classes.title2}>Subscribe</b>
6059
<p className={classes.body3}>Stay up to date with our latest news.</p>
6160
<InputBase className={classes.input} placeholder={"Enter email address"}/>
62-
<Button className={classes.button}>Subscribe</Button>
61+
<Button variant={"outlined"} className={classes.button}>Subscribe</Button>
6362
</Grid>
6463
<Grid item xs={1} className={classes.footerBody}/>
6564
</Grid>
6665
</Grid>
6766
</Grid>
6867
<Divider className={classes.appDivider}/>
69-
<Typography className={classes.copyright}>
70-
© 2021-2022 ElixirNote & GuinsoooLab
71-
</Typography>
68+
<p className={classes.copyright}>
69+
© 2021-{currentYear} ElixirNote & GuinsoooLab
70+
<br/>
71+
<br/>
72+
<span>GuinsooLab, Guinsoo, and the Guinsoo feather logo are either registered trademarks or trademarks of the GuinsooLab.</span>
73+
<br/>
74+
<span>All other products or name brands are trademarks of their respective holders, including the Guinsoolab, and Guinsoo resources.</span>
75+
</p>
7276
</Grid>
7377
<Grid item xs={1} />
7478
</Grid>

src/components/Footer/styles.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ export default makeStyles((theme) => ({
105105
padding: theme.spacing(1),
106106
marginTop: theme.spacing(2),
107107
marginBottom: theme.spacing(2),
108-
backgroundColor: "#1fdc6b",
108+
backgroundColor: theme.palette.primary.main,
109+
fontWeight: 800,
109110
color: "white",
110111
textTransform: "Capitalize",
111112
"&:hover": {
112-
backgroundColor: "#1fdc6b",
113-
fontWeight: 800,
113+
borderColor: theme.palette.primary.main,
114114
cursor: "pointer",
115115
},
116116
},
@@ -122,9 +122,8 @@ export default makeStyles((theme) => ({
122122
marginBottom: theme.spacing(5),
123123
},
124124
copyright: {
125-
display: "flex",
126-
width: "100%",
127125
color: theme.palette.text.hint,
128126
marginBottom: theme.spacing(2),
127+
fontSize: 12,
129128
},
130129
}));

src/components/Header/Header.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ export default function Header() {
1717

1818
return (
1919
<AppBar
20-
id="attr"
21-
position="fixed"
2220
elevation={0}
2321
className={classes.appBar}>
2422
<Toolbar className={classes.toolbar}>
@@ -44,13 +42,13 @@ export default function Header() {
4442
className={classes.subTitle}
4543
onClick={() => window.open("https://ciusji.gitbook.io/elixirnote/solutions/solutions", "_target")}
4644
>
47-
Solution
45+
Solutions
4846
</p>
4947
<p
5048
className={classes.subTitle}
5149
onClick={() => window.open("https://ciusji.gitbook.io/elixirnote/appendix/faq", "_target")}
5250
>
53-
FAQ
51+
FAQs
5452
</p>
5553
<div className={classes.grow} />
5654
<div>

src/components/Header/styles.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ export default makeStyles(theme => {
99
easing: theme.transitions.easing.sharp,
1010
duration: theme.transitions.duration.leavingScreen,
1111
}),
12-
backgroundColor: "#ffffff",
12+
backgroundColor: "transparent",
1313
fontWeight: "bold",
14-
color: theme.palette.text.primary,
14+
color: theme.palette.background.light,
1515
},
1616
toolbar: {
1717
paddingLeft: theme.spacing(2),
@@ -33,14 +33,14 @@ export default makeStyles(theme => {
3333
textAlign: "center",
3434
"&:hover": {
3535
cursor: "pointer",
36-
color: "#1fdc6b",
36+
color: theme.palette.primary.main,
3737
},
3838
},
3939
gap: {
4040
marginRight: theme.spacing(10),
4141
},
4242
buttonDownload: {
43-
backgroundColor: "#1fdc6b",
43+
backgroundColor: theme.palette.primary.main,
4444
color: "#fff",
4545
fontWeight: "bold",
4646
padding: "8px 32px",

src/components/Svg/ActionFeature.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const useStyles = makeStyles(theme => ({
2424
marginBottom: theme.spacing(3),
2525
},
2626
buttonDownload: {
27-
backgroundColor: "#1fdc6b",
27+
backgroundColor: theme.palette.primary.main,
2828
padding: "8px 32px",
2929
paddingBottom: 8,
3030
borderRadius: 4,
@@ -46,7 +46,7 @@ export default function ActionFeature() {
4646
<Button
4747
variant={"contained"}
4848
className={classes.buttonDownload}
49-
onClick={() => window.open("https://github.com/ElixirNote/elixirnote/releases", "_target")}
49+
onClick={() => window.open("https://ciusji.gitbook.io/elixirnote/guides/installation", "_target")}
5050
>
5151
Download
5252
</Button>

src/components/Title/styles.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default makeStyles(theme => ({
88
flexDirection: "column",
99
},
1010
featureTitle: {
11-
color: theme.palette.text.primary,
11+
color: theme.palette.background.light,
1212
fontWeight: 500,
1313
fontSize: 40,
1414
display: "flex",
@@ -20,7 +20,7 @@ export default makeStyles(theme => ({
2020
justifyContent: "center",
2121
textAlign: "center",
2222
width: "100vw",
23-
color: theme.palette.text.secondary,
23+
color: theme.palette.text.hint,
2424
fontSize: 16,
2525
lineHeight: 2,
2626
},

src/images/Data_Spot_0.png

-360 KB
Binary file not shown.

src/images/Data_Spot_1.png

-412 KB
Binary file not shown.

src/images/Data_Spot_2.png

-327 KB
Binary file not shown.

src/images/Data_Spot_3.png

-118 KB
Binary file not shown.

src/images/auora.webp

33.2 KB
Binary file not shown.

src/images/bg-actions.svg

Lines changed: 8 additions & 5 deletions
Loading

0 commit comments

Comments
 (0)