Skip to content
Type something to search...

The footer contains following essential elements that you can customize using the links below:

To modify the copyright text and footer description, locate the appropriate i81n file for the desired language. Update it as follows:

Example: English (en.json)

en.json
"footer": {
"quick_links": "Quick Links",
"legal": "Legal",
"resources": "Resources",
"description": "Upstart is a San Francisco-based design and technology company founded in 2016. Their mission is to democratize design by making professional branding tools accessible to everyone.",
"copyright": "Copyright {{ year }} / All Rights Reserved By Upstart / Built with love using [Astro Themes](https://getastrothemes.com/)"
}

Example: French (fr.json)

fr.json
"footer": {
"quick_links": "Liens rapides",
"legal": "Juridique",
"resources": "Ressources",
"description": "Upstart est une entreprise de design et de technologie basée à San Francisco, fondée en 2016. Leur mission est de démocratiser le design en rendant les outils de branding professionnels accessibles à tous.",
"copyright": "Droits d'auteur {{ year }} / Tous droits réservés par Upstart / Construit avec amour [Astro Themes](https://getastrothemes.com/)"
}
  1. Open src/i18n/en.json (for English) or another language file, such as src/i18n/fr.json (for French).
  2. Locate the "description" & "copyright" section.
  3. Update the those values.

Note: If you are not using the multilingual feature, you can update the copyright and footer description directly in the config.toml file

config.toml
footer_description = "" # Check src/i18n/en.json and src/i18n/fr.json for changing the footer description in different languages
# For changing footer description and footer copyright in different languages see src/i18n/en.json and src/i18n/fr.json
[settings.copyright]
enable = true
text = "" # Check src/i18n/en.json and src/i18n/fr.json for changing the copyright text in different languages