diff --git a/src/components/footer/FooterLinksColumns/FooterLinksColumns.js b/src/components/footer/FooterLinksColumns/FooterLinksColumns.js new file mode 100644 index 0000000..9316ecc --- /dev/null +++ b/src/components/footer/FooterLinksColumns/FooterLinksColumns.js @@ -0,0 +1,70 @@ +import React from 'react'; +import { Facebook, Twitter, Github, Linkedin } from 'lucide-react'; + +function FooterLinksColumns() { + const footerLinks = { + Product: ['Features', 'Pricing', 'Documentation', 'API Reference'], + Company: ['About', 'Blog', 'Careers', 'Press'], + Resources: ['Community', 'Support', 'Status', 'Security'], + Legal: ['Privacy', 'Terms', 'Cookies', 'Licenses'] + }; + + const socialLinks = [ + { icon: , href: '#' }, + { icon: , href: '#' }, + { icon: , href: '#' }, + { icon: , href: '#' } + ]; + + return ( + + ); +} + +export default FooterLinksColumns;