import React from 'react' import { Heart } from 'lucide-react' import Link from '../Link' import Text from '../Text' import css from './Footer.module.styl' import Image from 'next/image' import { Icon } from '../interfaces' import Container from '../Container' import Row from '../Row' import Col from '../Col' interface Props { text?: string company?: string links?: Array<{ path: string name: string }> socials?: Array<{ href: string icon: Icon | string }> } export default class Footer extends React.Component { public render = () => ( ) }