import { Link } from 'react-router-dom'; import { GraduationCap, MapPin, Phone, Mail, Camera, Send, Globe, Play, ArrowRight } from 'lucide-react'; const quickLinks = [ { label: 'Home', path: '/' }, { label: 'Notes & PYQs', path: '/notes' }, { label: 'AI Assistant', path: '/ai-assistant' }, { label: 'Campus Map', path: '/campus' }, { label: 'Events', path: '/events' }, { label: 'Community', path: '/community' }, ]; const resources = [ { label: 'Student Handbook', path: '#' }, { label: 'Academic Calendar', path: '#' }, { label: 'ERP Portal', path: '#' }, { label: 'Library Portal', path: '#' }, { label: 'Exam Results', path: '#' }, { label: 'Fee Payment', path: '#' }, ]; export default function Footer() { return ( ); }