From 98a7f8fe22f6de59a4f97d73cc0748f5600b086e Mon Sep 17 00:00:00 2001 From: Marquis Kurt Date: Sun, 21 Apr 2019 15:10:16 -0400 Subject: [PATCH] Fix links in About page --- src/pages/About.tsx | 4 ++-- src/pages/PageLayout.styles.tsx | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/pages/About.tsx b/src/pages/About.tsx index efef331..4c7a63b 100644 --- a/src/pages/About.tsx +++ b/src/pages/About.tsx @@ -236,8 +236,8 @@ class AboutPage extends Component {
-
- (C) 2019 {this.state? this.state.brandName: "Hyperspace"} developers. All rights reserved. +
+ (C) {new Date().getFullYear()} {this.state? this.state.brandName: "Hyperspace"} developers. All rights reserved. {this.state? this.state.brandName: "Hyperspace"} is made possible by the Material UI project, Megalodon library, and other open source software.
diff --git a/src/pages/PageLayout.styles.tsx b/src/pages/PageLayout.styles.tsx index 28ab27f..43d2731 100644 --- a/src/pages/PageLayout.styles.tsx +++ b/src/pages/PageLayout.styles.tsx @@ -169,5 +169,10 @@ export const styles = (theme: Theme) => createStyles({ [theme.breakpoints.up('sm')]: { display: 'block' } + }, + pageLayoutFooter: { + '& a': { + color: theme.palette.primary.light + } } }); \ No newline at end of file