export function Image({ src, alt, title }: { src: string; alt?: string; title?: string }) { return (
{alt
{alt && (
{alt}
)}
) }