'use client'; import Image from 'next/image'; import { usePathname } from 'next/navigation'; import { name, contact, location } from '~/lib/data'; export function Sidebar() { const pathname = usePathname(); const isHomePage = pathname === '/'; return ( <> {/* Mobile layout - only on home page */} {isHomePage && (
{`${name[0]?.first} ${name[0]?.last}`}

{name[0]?.first} {name[0]?.last}

{location.map((item) => ( {item.icon && } {item.label} ))}

Contact

{contact.map((item) => ( {item.label} ))}
)} {/* Desktop layout - on all pages */}
{`${name[0]?.first} ${name[0]?.last}`}

{name[0]?.first} {name[0]?.last}

{location.map((item) => ( {item.icon && } {item.label} ))}

Contact

{contact.map((item) => ( {item.label} ))}

© {new Date().getFullYear()} {name[0]?.first} {name[0]?.last}. All rights reserved.

); }