import { Photo, descriptionForPhoto, titleForPhoto, } from '@/photo'; import { PhotoSetCategory } from '../category/set'; import { absolutePathForPhotoImage, pathForPhoto } from '@/app/paths'; import OGTile from '@/components/OGTile'; export type OGLoadingState = 'unloaded' | 'loading' | 'loaded' | 'failed'; export default function PhotoOGTile({ photo, loadingState: loadingStateExternal, riseOnHover, onLoad, onFail, retryTime, onVisible, ...categories }: { photo: Photo loadingState?: OGLoadingState onLoad?: () => void onFail?: () => void riseOnHover?: boolean retryTime?: number onVisible?: () => void } & PhotoSetCategory) { return ( ); };