Last updated

Customize the footer of your Booyaka documentation site by modifying the footer configuration in your booyaka.config.yaml (or booyaka.config.json) file. The footer can include links, copyright information, and other relevant details.

To configure the footer, add the following section to your configuration file:

footer:
  # Enable or disable the footer
  enabled: true
  # Footer content can include text, links, and HTML
  navigation:
    - text: "Privacy Policy"
      link: "/privacy-policy"
    - text: "Terms of Service"
      link: "/terms-of-service"
  copyright: "© 2024 Your Company Name. All rights reserved."

Restart your Booyaka server or rebuild your static site to see the changes reflected in the footer section of your documentation site.