import { Link } from 'react-router-dom'; import CategoryBadge from './CategoryBadge'; export default function RecipeCard({ recipe }) { return ( {recipe.thumbnail_url && ( {recipe.name} )}

{recipe.name}

{recipe.description && (

{recipe.description}

)}
{recipe.tiktok_author && @{recipe.tiktok_author}} {recipe.ingredients?.length || 0} Zutaten {recipe.steps?.length || 0} Schritte
); }