AI Assistant

External Links

The Footer 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:

  • Title - the display text for the link
  • URL - the target URL
  • Icon (optional) - choose from one of the preset icons

Available icons

You can assign one of these icons to each link:

  • GitHub
  • Twitter / X
  • Discord
  • Slack
  • LinkedIn
  • YouTube
  • Website (globe)
  • Email
  • Docs (book)
  • Code
  • Package
  • RSS
  • Chat
  • Sponsor (heart)

Leave the icon unset for a text-only link.

If you edit links.json directly, use Lucide icon names (e.g. github, 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": "github"
  },
  {
    "title": "Discord",
    "url": "https://discord.gg/your-invite",
    "icon": "discord"
  }
]