import { Mail, Linkedin, Github } from 'lucide-react'; import { useTheme } from '../contexts/ThemeContext'; interface Props { isOutOfCollege?: boolean; } const Footer: React.FC = ({ isOutOfCollege }) => { const { theme } = useTheme(); return (

Let's Connect

Ready to collaborate on something amazing? I'm always excited to discuss new opportunities and innovative projects.

Email Me {isOutOfCollege && ( LinkedIn )} GitHub
); }; export default Footer;