import React from 'react' interface ThumbnailProps { path: string; alt?: string; } const Thumbnail = ({ path, alt }: ThumbnailProps) => { return (