export type Recipe = { _type: "Recipe"; author?: { _type: "Person"; name?: string; }; description?: string; image?: string; name?: string; recipeIngredient?: string[]; recipeInstructions?: string[]; datePublished?: string; totalTime?: string; recipeYield?: number; url?: string; keywords?: string[]; };