import React from 'react'; import { motion } from 'framer-motion'; import { Github, Twitter, Mail } from 'lucide-react'; const Footer: React.FC = () => { const currentYear = new Date().getFullYear(); return (
{/* Brand */}

Job Apply AI

Automate your job applications with intelligent AI-powered CV tailoring.

{/* Links */}

Features

    {['Job Scraping', 'CV Tailoring', 'Batch Processing'].map((item) => (
  • {item}
  • ))}
{/* Documentation */}

Resources

    {['Documentation', 'GitHub', 'Support'].map((item) => (
  • {item}
  • ))}
{/* Social */}

Follow

{[ { icon: Github, href: '#' }, { icon: Twitter, href: '#' }, { icon: Mail, href: '#' }, ].map((social, idx) => ( ))}
{/* Bottom */}

© {currentYear} Job Apply AI. All rights reserved.

Privacy Terms
); }; export default Footer;