import { FaXTwitter, FaLinkedin, FaFacebook } from "react-icons/fa6"; import { Home } from "lucide-react"; const navigation = [ { title: "Products", links: [ { name: "VAR", href: "/#code-security" }, { name: "Credit Transfers", href: "/#why-charter" }, { name: "Credit Accounts", href: "/#ai-chatbot" }, { name: "Loan Origination", href: "/#ai-chatbot" }, { name: "Loan Purchase", href: "/#ai-chatbot" }, ], }, { title: "Support", links: [ { name: "Pricing", href: "/pricing" }, { name: "FAQ", href: "/faq" }, { name: "Demo", href: "/contact" }, { name: "Contact", href: "/contact" }, ], }, { title: "Company", links: [ { name: "About", href: "/about" }, { name: "Terms of Service", href: "/terms" }, { name: "Privacy Policy", href: "/privacy" }, ], }, ]; const socialLinks = [ { icon: FaXTwitter, href: "https://twitter.com", label: "Twitter" }, { icon: FaFacebook, href: "https://facebook.com", label: "Facebook" }, { icon: FaLinkedin, href: "https://linkedin.com", label: "LinkedIn" }, ]; export default function Footer() { return ( ); }