'use client'; import { Github, Globe, GraduationCap, Linkedin, Mail, Phone, School } from 'lucide-react'; import Image from 'next/image'; import { usePathname } from 'next/navigation'; const schoolInfo = [ { icon: School, label: 'Bucknell University', href: 'https://bucknell.edu' }, { label: 'Computer Science and Engineering', } ] const contactInfo = [ { icon: Mail, label: 'Personal Email', href: 'mailto:sean@soconnor.dev' }, { icon: Mail, label: 'University Email', href: 'mailto:sso005@bucknell.edu' }, { icon: Phone, label: 'Phone', href: 'tel:+16316016555' }, { icon: Globe, label: 'Website', href: 'https://soconnor.dev', external: true }, { icon: Linkedin, label: 'LinkedIn', href: 'https://linkedin.com/in/bu-soconnor', external: true }, { icon: Github, label: 'GitHub', href: 'https://github.com/soconnor0919', external: true } ]; export function Sidebar() { const pathname = usePathname(); const isHomePage = pathname === '/'; return ( <> {/* Mobile layout - only on home page */} {isHomePage && (
© 2024 Sean O'Connor. All rights reserved.