import Image from 'next/image'; import { useId } from 'react'; export default function FeatureImage({ src, width, height, alt, }: { src: string; width: number | `${number}`; height: number | `${number}`; alt: string; }) { const id = useId(); const delay = (id.charCodeAt(1) % 5) + 0.5; return (
{alt}
); }