> ## Documentation Index
> Fetch the complete documentation index at: https://docs.incident.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Shoutouts

export const SlackPreview = ({snapshot, alt, maxWidth, caption}) => {
  const slug = snapshot.replace(/\.json$/, '').replace(/\//g, '--').replace(/[^a-zA-Z0-9-]/g, '-').replace(/-{2,}/g, '-').replace(/^-|-$/g, '').toLowerCase();
  const light = `/images/slack_generated_screenshots/${slug}-light.png`;
  const dark = `/images/slack_generated_screenshots/${slug}-dark.png`;
  return <>
<img src={light} alt={alt} className="block dark:hidden" style={maxWidth ? {
    maxWidth
  } : undefined} />
<img src={dark} alt={alt} className="hidden dark:block" style={maxWidth ? {
    maxWidth
  } : undefined} />
{caption && <p style={{
    fontSize: '14px',
    color: 'var(--content-tertiary)',
    marginTop: '8px',
    textAlign: 'center'
  }}>
{caption}
</p>}
</>;
};

Sometimes, you need to shoutout a contribution by a coworker during an incident. Now you can with the shoutout command.

1. In an incident channel, type the command /inc shoutout or click the ' Give a shoutout' button.

<img src="https://mintcdn.com/incidentio-18bb4170/guW7jJx4LsrwZJ6K/images/help-centre/shoutouts/screenshot-1.png?fit=max&auto=format&n=guW7jJx4LsrwZJ6K&q=85&s=122c8dca6e2bab706bd5bc37e7de38c9" alt="" width="3024" height="1804" data-path="images/help-centre/shoutouts/screenshot-1.png" />

2. Then select the user you want to shoutout, and write a message highlighting how awesome they are!

<Frame>
  <SlackPreview snapshot="Modal--Shoutouts--Create/default.json" alt="Give a shoutout modal in Slack" />
</Frame>

3. You can customize where shoutouts get posted in [the Automation settings](https://app.incident.io/~/settings/automation). This way you can collect shoutouts in a separate #gratitude channel.

<img src="https://mintcdn.com/incidentio-18bb4170/guW7jJx4LsrwZJ6K/images/help-centre/shoutouts/screenshot-3.png?fit=max&auto=format&n=guW7jJx4LsrwZJ6K&q=85&s=42ba819cf553366db2df8bdcb2a666e9" alt="" width="3544" height="1912" data-path="images/help-centre/shoutouts/screenshot-3.png" />
