interface LogoProps { width?: number; height?: number; } export default function Logo({ width = 100, height = 100 }: LogoProps) { return ( ); }