{/* Title */}
{note.title || (language === 'fr' ? 'Sans titre' : 'Untitled')}
{/* Preview - 2 lines max */}
{note.content?.substring(0, 80) || ''}
{note.content && note.content.length > 80 && '...'}
{/* Footer with time and indicators */}
{/* Time - left */}
{timeAgo}
{/* Indicators - right */}
{/* Notebook indicator */}
{note.notebookId && (
)}
{/* Labels indicator */}
{note.labels && note.labels.length > 0 && (
)}
{/* Hover indicator - top right */}