'use client'; interface NavLogoProps { onLogoClick: () => void; } export const NavLogo = ({ onLogoClick }: NavLogoProps) => { return ( ); };