diff --git a/mint.json b/mint.json index edd49b756..691e2521c 100644 --- a/mint.json +++ b/mint.json @@ -213,10 +213,78 @@ ] } ], - "footerSocials": { - "github": "https://github.com/mintlify", - "slack": "https://mintlify.com/community", - "x": "https://x.com/mintlify" + "footer": { + "socials": { + "x": "https://x.com/mintlify", + "linkedin": "https://www.linkedin.com/company/mintlify", + "github": "https://github.com/mintlify", + "slack": "https://mintlify.com/community" + }, + "links": [ + { + "title": "Resources", + "links": [ + { + "label": "Customers", + "url": "https://mintlify.com/customers" + }, + { + "label": "Enterprise", + "url": "https://mintlify.com/enterprise" + }, + { + "label": "Request Preview", + "url": "https://mintlify.com/preview" + }, + { + "label": "Integrations", + "url": "https://mintlify.com/docs/integrations/analytics/overview" + }, + { + "label": "Templates", + "url": "https://github.com/mintlify/themes" + }, + { + "label": "Wall of Love", + "url": "https://mintlify.com/love" + } + ] + }, + { + "title": "Company", + "links": [ + { + "label": "Careers", + "url": "https://mintlify.com/careers" + }, + { + "label": "Blog", + "url": "https://mintlify.com/blog" + }, + { + "label": "Public Roadmap", + "url": "https://feedback.mintlify.com/roadmap" + }, + { + "label": "Security", + "url": "https://mintlify.com/security/responsible-disclosure" + } + ] + }, + { + "title": "Legal", + "links": [ + { + "label": "Privacy Policy", + "url": "https://mintlify.com/legal/privacy" + }, + { + "label": "Terms of Service", + "url": "https://mintlify.com/legal/terms" + } + ] + } + ] }, "analytics": { "ga4": { diff --git a/settings/global.mdx b/settings/global.mdx index 0c3ca6b5e..3ce100a1f 100644 --- a/settings/global.mdx +++ b/settings/global.mdx @@ -335,28 +335,50 @@ Example: - - An object of social media accounts where the key:property pair represents the social media platform and the account url. - - Example: + +An object to configure the footer with socials and links. +Example: ```json -{ - "x": "https://x.com/mintlify", - "website": "https://mintlify.com" +"footer": { + "socials": { "x": "https://x.com/mintlify", "website": "https://mintlify.com" }, + "links": [ + { + "title": "Column 1", + "links": [ + { "label": "Column 1 Link 1", "url": "https://mintlify.com" }, + { "label": "Column 1 Link 2", "url": "https://mintlify.com" } + ] + }, + { + "title": "Column 2", + "links": [ + { "label": "Column 2 Link 1", "url": "https://mintlify.com" }, + { "label": "Column 2 Link 2", "url": "https://mintlify.com" } + ] + } + ] } ``` - - - One of the following values `website`, `facebook`, `x`, `youtube`, `discord`, `slack`, `github`, `linkedin`, `instagram`, `hacker-news` - - Example: `x` - - - The URL to the social platform. - - Example: `https://x.com/mintlify` - - + + + One of the following values `website`, `facebook`, `x`, `youtube`, `discord`, `slack`, `github`, `linkedin`, `instagram`, `hacker-news`, `medium`, `telegram`, `twitter` + + Example: `x` + + + The URL to the social platform. + + Example: `https://x.com/mintlify` + + + + + Title of the column + + + The link items in the column. External urls that starts with `https://` or `http://` will be opened in new tab. + +