add new images disk

This commit is contained in:
MacRimi 2025-04-15 19:52:30 +02:00
parent 5426fc4f14
commit 5022905047
3 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
"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 (
<figure className="my-4">
<Image
src={src || "/placeholder.svg"}
alt={alt}
width={width}
height={height}
className="rounded-lg shadow-md w-full"
/>
<figcaption className="text-center text-sm text-gray-600 mt-2">{caption}</figcaption>
</figure>
)
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB