diff --git a/src/components/Footer.js b/src/components/Footer.js new file mode 100644 index 0000000..8220429 --- /dev/null +++ b/src/components/Footer.js @@ -0,0 +1,29 @@ +import React from 'react'; +import styled from 'styled-components'; + +const WhiteSection = styled.footer` + background: #ffffff; +`; +const Container = styled.div` + + +`; + + +const Footer = () => { + return ( + +
+ + + + +

© Copyright 2020 Locaft

+

Terms and Conditions

+

Privacy Policy

+
+
+ ) + +} +export default Footer; \ No newline at end of file