diff --git a/landing/footer.react.js b/landing/footer.react.js index 1f378d027..d966d65ed 100644 --- a/landing/footer.react.js +++ b/landing/footer.react.js @@ -1,149 +1,151 @@ // @flow import { faTwitter, faGithub } from '@fortawesome/free-brands-svg-icons'; import { faExternalLinkAlt } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import classNames from 'classnames'; import * as React from 'react'; import { NavLink } from 'react-router-dom'; import css from './footer.css'; import typography from './typography.css'; const navLinkProps = { activeStyle: { color: 'white', fontWeight: '500', }, }; function Footer(): React.Node { const logoClassName = classNames([typography.heading2, css.logo]); const navLinkClassName = classNames([typography.paragraph1, css.links]); const legalTextClassName = classNames([ typography.paragraph2, css.copyrightText, ]); const legalLinksClassName = classNames([typography.paragraph2, css.links]); + const currentYear = new Date().getFullYear(); + return ( ); } export default Footer;