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

# Platform Feature Guides

> Guides for using Discord's features across your game, app, and server experience.

export const ImageCard = ({img, href, title, children, imageHeight = 120, imageFade = false, imageOffset = 0}) => {
  return <div className="MDXImageCard image-card-wrapper" style={{
    position: 'relative',
    cursor: 'pointer',
    marginTop: '0.5rem',
    marginBottom: '0.5rem'
  }}>
      <a href={href} aria-label={title} className="MDXImageCard image-card-link" style={{
    position: 'absolute',
    inset: 0,
    zIndex: 1
  }} />
      <div className="MDXImageCard image-card" style={{
    display: 'flex',
    flexDirection: 'column',
    borderRadius: '1rem',
    overflow: 'hidden',
    height: '100%'
  }}>
        <div style={{
    height: `${imageHeight}px`,
    width: '100%',
    overflow: 'hidden',
    flexShrink: 0,
    backgroundColor: '#242429',
    ...imageFade && ({
      maskImage: 'linear-gradient(to bottom, black 30%, transparent 100%)',
      WebkitMaskImage: 'linear-gradient(to bottom, black 30%, transparent 100%)'
    })
  }}>
          <img src={img} alt={title} style={{
    width: '100%',
    height: '100%',
    objectFit: 'cover',
    objectPosition: `center calc(50% - ${imageOffset}px)`,
    display: 'block',
    margin: 0
  }} />
        </div>
        <div style={{
    display: 'flex',
    flexDirection: 'column',
    padding: '1.25rem 1.5rem',
    flex: 1
  }}>
          <p className="MDXImageCard image-card-title" style={{
    margin: 0,
    fontWeight: 600,
    fontSize: '1rem'
  }}>
            {title}
          </p>
          {children && <p className="MDXImageCard image-card-description" style={{
    margin: '0.25rem 0 0',
    fontSize: '1rem',
    lineHeight: '1.5rem'
  }}>
              {children}
            </p>}
        </div>
      </div>
    </div>;
};

## Account Linking

<ImageCard title="What is Account Linking?" href="/developers/platform/account-linking" img="https://mintcdn.com/discord/KbTJiI51tEBr5wj-/images/headers/docs-accountlinking-hero.png?fit=max&auto=format&n=KbTJiI51tEBr5wj-&q=85&s=2dcb400fc6d7a44754ec098a5c6b8350" width="1336" height="540" data-path="images/headers/docs-accountlinking-hero.png">
  An introduction to account linking and its benefits for your game or app.
</ImageCard>

## Rich Presence

<ImageCard title="Rich Presence Best Practices" href="/developers/rich-presence/best-practices" img="https://mintcdn.com/discord/eCuA2RUd7jZAoO2Y/images/rich-presence-examples.png?fit=max&auto=format&n=eCuA2RUd7jZAoO2Y&q=85&s=bb589b8839ebf6dbf05af5ef795bf8dd" width="2040" height="600" data-path="images/rich-presence-examples.png">
  Best practices for using Rich Presence to create engaging game integrations on Discord.
</ImageCard>
