'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 && (
© {new Date().getFullYear()} {name[0]?.first} {name[0]?.last}. All rights reserved.