1
0
mirror of https://github.com/hyperspacedev/hyperspace synced 2025-02-07 04:43:20 +01:00

Fix links in About page

This commit is contained in:
Marquis Kurt 2019-04-21 15:10:16 -04:00
parent fc53bdf1f4
commit 98a7f8fe22
2 changed files with 7 additions and 2 deletions

View File

@ -236,8 +236,8 @@ class AboutPage extends Component<any, IAboutPageState> {
</List>
</Paper>
<br/>
<div>
<Typography variant="caption">(C) 2019 {this.state? this.state.brandName: "Hyperspace"} developers. All rights reserved.</Typography>
<div className={classes.pageLayoutFooter}>
<Typography variant="caption">(C) {new Date().getFullYear()} {this.state? this.state.brandName: "Hyperspace"} developers. All rights reserved.</Typography>
<Typography variant="caption" paragraph>{this.state? this.state.brandName: "Hyperspace"} is made possible by the <Link href={"https://material-ui.com"} target="_blank" rel="noreferrer">Material UI</Link> project, <Link href={"https://www.npmjs.com/package/megalodon"} target="_blank" rel="noreferrer">Megalodon</Link> library, and other <Link href={"https://github.com/hyperspacedev/hyperspace/blob/master/package.json"} target="_blank" rel="noreferrer">open source software</Link>.</Typography>
</div>
</div>

View File

@ -169,5 +169,10 @@ export const styles = (theme: Theme) => createStyles({
[theme.breakpoints.up('sm')]: {
display: 'block'
}
},
pageLayoutFooter: {
'& a': {
color: theme.palette.primary.light
}
}
});