From ce53202d370406b0916dc6d38b3f72e4bfcf76bb Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 13:57:05 +0000 Subject: [PATCH] Add src/components/footer/FooterLinksColumns/FooterLinksColumns.js --- .../FooterLinksColumns/FooterLinksColumns.js | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/components/footer/FooterLinksColumns/FooterLinksColumns.js 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;