Change the links and social icons shown at the bottom of the website.
The bottom of the site (footer) has:
You can change all of this by editing:
config/footer.ts — which links and URLs are usedconfig/messages/en.json and config/messages/es.json — the visible textconfig/footer.ts.export const footerConfig = {
columns: [
{
titleKey: "serverHosting",
links: [
{ labelKey: "minecraftServerHosting", href: "/" },
{ labelKey: "hytaleServerHosting", href: "/" },
// ...
],
},
{
titleKey: "company",
links: [
{ labelKey: "aboutUs", href: "/about" },
{ labelKey: "contactUs", href: "/contact" },
// ...
],
},
// ...
],
socialLinks: [
{ labelKey: "x", href: "/", imageHref: "/social-media/x.svg" },
{ labelKey: "discord", href: "/", imageHref: "/social-media/discord.svg" },
],
};titleKey is the name of the column (“Server Hosting”, “Company”, etc.).links item has:
href — where the link goes (for example /about or /contact).labelKey — the name used to find the text.To change where a link goes:
href value (for example from / to /faq).The footer text is stored under "Footer" in the translation files.
config/messages/en.json."Footer" section. You will see entries like:"Footer": {
"serverHosting": "Server Hosting",
"aboutUs": "About Us",
"faq": "FAQ",
"discord": "Discord",
"copyright": "Copyright © {year} Sifo. All rights reserved."
}"faq": "Help Center"config/messages/es.json."Footer" section, change the same keys for Spanish:"faq": "Centro de ayuda"Remember: The keys (for example
"faq","aboutUs") must exist and match in bothen.jsonandes.json.
You only change the sentences on the right side.
In config/footer.ts, the socialLinks list controls the social icons:
href — URL of your social pageimageHref — icon file under the public folderlabelKey — text in the "Footer" section of the translation filesTo point Discord to your real server:
{ labelKey: "discord", href: "https://discord.gg/your-server", imageHref: "/social-media/discord.svg" }Then, in en.json and es.json, make sure "discord" has the words you want to show.