import React from 'react' import { motion } from 'framer-motion' import { Github, Linkedin, Mail, Heart, Sparkles, BookOpen, Brain, Code, Twitter } from 'lucide-react' const Footer = () => { const currentYear = new Date().getFullYear() const footerLinks = { product: [ { name: 'Features', href: '#features' }, { name: 'AI Agents', href: '#agents' }, { name: 'Pricing', href: '#pricing' }, { name: 'Roadmap', href: '#roadmap' } ], resources: [ { name: 'Documentation', href: '#docs' }, { name: 'API Reference', href: '#api' }, { name: 'Tutorials', href: '#tutorials' }, { name: 'Blog', href: '#blog' } ], company: [ { name: 'About Us', href: '#about' }, { name: 'Careers', href: '#careers' }, { name: 'Contact', href: '#contact' }, { name: 'Privacy Policy', href: '#privacy' } ] } const socialLinks = [ { icon: Github, href: 'https://github.com', label: 'GitHub' }, { icon: Linkedin, href: 'https://linkedin.com', label: 'LinkedIn' }, { icon: Twitter, href: 'https://twitter.com', label: 'Twitter' }, { icon: Mail, href: 'mailto:contact@adaptivelearn.com', label: 'Email' } ] const features = [ { icon: Brain, text: 'AI-Powered Learning' }, { icon: BookOpen, text: 'Adaptive Content' }, { icon: Code, text: 'Interactive Coding' }, { icon: Sparkles, text: 'Multi-Agent System' } ] return ( ) } export default Footer