export function Image({ path, alt, title, className, width, height, style, }: { path: string; alt: string; title?: string; className?: string; width?: number; height?: number; style?: React.CSSProperties; }) { return ( {alt} ); }