Sub-sub title
This commit is contained in:
parent
3fe4fb5c82
commit
849ed5a624
|
|
@ -3,6 +3,9 @@ import { createStyles, makeStyles, Theme } from "@material-ui/core/styles";
|
||||||
import Link from "@material-ui/core/Link";
|
import Link from "@material-ui/core/Link";
|
||||||
import Typography from "@material-ui/core/Typography";
|
import Typography from "@material-ui/core/Typography";
|
||||||
|
|
||||||
|
const cadCadLink =
|
||||||
|
"https://medium.com/block-science/cadcad-filling-a-critical-gap-in-open-source-data-science-fcd0d3faa8ed";
|
||||||
|
|
||||||
const useStyles = makeStyles((theme: Theme) =>
|
const useStyles = makeStyles((theme: Theme) =>
|
||||||
createStyles({
|
createStyles({
|
||||||
title: {
|
title: {
|
||||||
|
|
@ -12,6 +15,10 @@ const useStyles = makeStyles((theme: Theme) =>
|
||||||
color: theme.palette.text.secondary,
|
color: theme.palette.text.secondary,
|
||||||
margin: theme.spacing(3, 0, 0)
|
margin: theme.spacing(3, 0, 0)
|
||||||
},
|
},
|
||||||
|
subsubtitle: {
|
||||||
|
color: theme.palette.text.secondary,
|
||||||
|
opacity: 0.6
|
||||||
|
},
|
||||||
lightBulb: {
|
lightBulb: {
|
||||||
verticalAlign: "middle",
|
verticalAlign: "middle",
|
||||||
marginRight: theme.spacing(1)
|
marginRight: theme.spacing(1)
|
||||||
|
|
@ -53,6 +60,10 @@ export default function Header() {
|
||||||
<Typography className={classes.subtitle}>
|
<Typography className={classes.subtitle}>
|
||||||
Experiment and test augmented token bonding curves
|
Experiment and test augmented token bonding curves
|
||||||
</Typography>
|
</Typography>
|
||||||
|
<Typography className={classes.subsubtitle}>
|
||||||
|
A narrative showcase of <Link href={cadCadLink}>cadCAD</Link>
|
||||||
|
's capabilities
|
||||||
|
</Typography>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
#root {
|
#root,
|
||||||
|
body {
|
||||||
background-color: #152128;
|
background-color: #152128;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue