import { Photo, PhotoDateRange } from '@/photo'; import { pathForRecipe, pathForRecipeImage } from '@/app/paths'; import OGTile, { OGTilePropsCore } from '@/components/og/OGTile'; import { descriptionForRecipePhotos, titleForRecipe } from '.'; import { useAppText } from '@/i18n/state/client'; export default function RecipeOGTile({ recipe, photos, count, dateRange, ...props }: { recipe: string photos: Photo[] count?: number dateRange?: PhotoDateRange } & OGTilePropsCore) { const appText = useAppText(); return ( ); };