import React from 'react' import { PhoneCall, Mail, GitHub, Twitter, Linkedin } from 'react-feather' import Link from 'next/link' interface Props {} interface States {} export default class Footer extends React.Component { constructor(props: Props) { super(props) } render() { return ( ) } }