"use client" import Image from "next/image" interface ImageWithCaptionProps { src: string alt: string caption: string width?: number height?: number } export function ImageWithCaption({ src, alt, caption, width = 800, height = 450 }: ImageWithCaptionProps) { return (
{alt}
{caption}
) }