From 3783b6a9fe6fdcce6d36a7aa5067db470274b996 Mon Sep 17 00:00:00 2001 From: Cayla Hamann Date: Thu, 11 Jun 2020 10:16:20 -0400 Subject: [PATCH] chore: removed the links from footer --- src/components/Footer.js | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/src/components/Footer.js b/src/components/Footer.js index 0d8b087b2..05d6d4f6e 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -1,11 +1,9 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { Link } from 'gatsby'; import Container from './Container'; -import { link } from '../types'; import styles from './Footer.module.scss'; -const Footer = ({ pages }) => ( +const Footer = () => ( ); -Footer.propTypes = { - pages: PropTypes.arrayOf(link), -}; - export default Footer;