import PropTypes from "prop-types" import { linkPropTypes, mediaPropTypes } from "utils/types" import NextImage from "./image" import CustomLink from "./custom-link" const Footer = ({ footer }) => { return ( ) } Footer.propTypes = { footer: PropTypes.shape({ logo: mediaPropTypes.isRequired, columns: PropTypes.arrayOf( PropTypes.shape({ id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) .isRequired, title: PropTypes.string.isRequired, links: PropTypes.arrayOf(linkPropTypes), }) ), smallText: PropTypes.string.isRequired, }), } export default Footer