Configuration
Footer Configuration
Configure footer links and social media
Social Links
Add social media links to the footer:
{
"footer": {
"socials": {
"website": "https://example.com",
"github": "https://github.com/example",
"discord": "https://discord.gg/example",
"x": "https://x.com/example",
"linkedin": "https://linkedin.com/company/example"
}
}
}
Supported Social Platforms
website- Your websitegithub- GitHub profile/orggitlab- GitLab profile/orgdiscord- Discord server inviteslack- Slack workspacex- X (Twitter) profilelinkedin- LinkedIn company/profilefacebook- Facebook pageinstagram- Instagram profileyoutube- YouTube channelmedium- Medium publicationthreads- Threads profilereddit- Reddit community
Footer Link Sections
Add organized link sections:
{
"footer": {
"links": [
{
"header": "Resources",
"items": [
{
"label": "Documentation",
"href": "/"
},
{
"label": "Guides",
"href": "/getting-started"
},
{
"label": "Changelog",
"href": "/changelog"
}
]
},
{
"header": "Community",
"items": [
{
"label": "Discord",
"href": "https://discord.gg/example"
},
{
"label": "GitHub",
"href": "https://github.com/example"
}
]
},
{
"header": "Legal",
"items": [
{
"label": "Privacy Policy",
"href": "/privacy"
},
{
"label": "Terms of Service",
"href": "/terms"
}
]
}
]
}
}
Complete Example
{
"footer": {
"socials": {
"website": "https://example.com",
"github": "https://github.com/example",
"discord": "https://discord.gg/example",
"x": "https://x.com/example",
"linkedin": "https://linkedin.com/company/example"
},
"links": [
{
"header": "Resources",
"items": [
{
"label": "Documentation",
"href": "/"
},
{
"label": "Guides",
"href": "/getting-started"
}
]
},
{
"header": "Community",
"items": [
{
"label": "Discord",
"href": "https://discord.gg/example"
}
]
}
]
}
}
Footer sections automatically arrange in columns based on screen size.