"use client"; import { usePathname } from "next/navigation"; import { name, contact, location } from "~/lib/data"; import { ImageWithSkeleton } from "~/components/ui/image-with-skeleton"; export function Sidebar() { const pathname = usePathname(); const isHomePage = pathname === "/"; return ( <> {/* Mobile layout - horizontal intro bar only on home page */} {isHomePage && (
© {new Date().getFullYear()} {name[0]?.first} {name[0]?.last}