Every Mintlify site needs a mint.json file with the core configuration settings. Learn more about the global configuration settings.

Name

The name of your company or project. Used for the global title format.
"name": "Sellufy"
Path to logo image or object with path to “light” and “dark” mode logo images.
"logo": {
  "light": "/logo/light.svg",
  "dark": "/logo/dark.svg",
  "href": "https://sellufy.com"
}

Favicon

Path to the favicon image.
"favicon": "/favicon.svg"

Colors

Hex color codes for your global theme.
"colors": {
  "primary": "#0D9373",
  "light": "#07C983",
  "dark": "#0D9373"
}
An array of groups with all the pages within that group.
"navigation": [
  {
    "group": "Get Started",
    "pages": ["introduction"]
  }
]
An object of social media accounts where the key:property pair represents the social media platform and the account url.
"footerSocials": {
  "x": "https://x.com/sellufy",
  "github": "https://github.com/sellufy",
  "linkedin": "https://linkedin.com/company/sellufy"
}