import React from 'react'; import styled from 'styled-components'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faFacebook, faTwitter, faInstagram } from "@fortawesome/free-brands-svg-icons"; import { faEnvelope } from "@fortawesome/free-solid-svg-icons"; import { Container } from 'react-bootstrap'; const ContainerPadded = styled(Container)` padding: 7% 15%; `; const WhiteSection = styled.footer` background: ${ props => props.background || "white"}; `; const FontIcon = styled(FontAwesomeIcon)` margin: 20px 10px; `; const Footer = (props) => { return (

© Copyright 2020 Locaft

Terms and Conditions

Privacy Policy

) } export default Footer;