import { ShieldCheck, Mail, ArrowUp, Github, Linkedin, HelpCircle } from "lucide-react"; import { Link } from "react-router-dom"; export default function Footer() { const socialIcons = [ { name: "HuggingFace", url: "https://huggingface.co/embedingHF", icon: ( 🤗 HuggingFace ), }, { name: "GitHub", url: "https://github.com", icon: , }, { name: "LinkedIn", url: "https://linkedin.com", icon: , }, ]; const productLinks = [ { name: "Home Dashboard", path: "/" }, { name: "Technical Specifications", path: "/features" }, { name: "Support Development", path: "/support" }, { name: "Common FAQs", path: "/faq" }, { name: "Privacy & HIPAA Policy", path: "/privacy" }, { name: "Developer Ticket Portal", path: "/contact" }, ]; const scrollToTop = () => { window.scrollTo({ top: 0, behavior: "smooth", }); }; return ( ); }