export interface LogoProps { width: number; height: number; } export default function StaticLogo({ width, height }: LogoProps) { return ( ); }