[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
706 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. import React, { FC } from 'react'
  2. import { Link } from 'react-router-dom'
  3. import { useTheme } from '../hooks'
  4. const Divider: FC = () => <>&nbsp;&nbsp;&#9900;&nbsp;&nbsp;</>
  5. const Footer: FC = () => {
  6. const theme = useTheme()
  7. return (
  8. <footer style={{ color: theme.text }}>
  9. <Link style={{ color: theme.primary }} to="/">Home</Link>
  10. <Divider />
  11. <Link style={{ color: theme.primary }} to="/developers">Developers</Link>
  12. <Divider />
  13. <Link style={{ color: theme.primary }} to="/about">About</Link>
  14. <p>&copy; 2019 Flexor.cc&nbsp;&nbsp;🏾&nbsp;&nbsp;Made in NYC.</p>
  15. </footer>
  16. )
  17. }
  18. export default Footer