AI Assistant

External Links

The External Links settings page lets you add external link buttons to your documentation site's footer. These provide quick access to your project's GitHub repository, Discord server, social profiles, and other resources.

Click Add Link and configure:

  • Icon (optional) - search and pick from any Lucide icon
  • Title - the display text for the link
  • URL - the target URL

Choosing an icon

The icon picker lets you search through the full Lucide icon set. Type a keyword to filter (e.g. "git-branch", "mail", "globe") and click to select.

Leave the icon unset for a text-only link.

If you edit links.json directly, use Lucide icon names in kebab-case (e.g. git-branch, message-circle, heart).

How it works

Link settings are stored in links.json at the root of your repository:

[
  {
    "title": "GitHub",
    "url": "https://github.com/your-org/your-repo",
    "icon": "git-branch"
  },
  {
    "title": "Discord",
    "url": "https://discord.gg/your-invite",
    "icon": "discord"
  }
]