Change the contact options your customers can use.
The Contact page shows several cards (ticket, Discord, email) with buttons.
You will edit:
config/contact.ts — which contact options exist and their links"Contact" in config/messages/en.json and config/messages/es.json — titles and descriptionsconfig/contact.ts.export const contactCards = [
{
titleKey: "openTicketTitle",
descriptionKey: "openTicketDescription",
buttonLabelKey: "openTicketButton",
href: "/",
},
{
titleKey: "discordServerTitle",
descriptionKey: "discordServerDescription",
buttonLabelKey: "discordServerButton",
href: "https://discord.com",
},
{
titleKey: "sendEmailTitle",
descriptionKey: "sendEmailDescription",
buttonLabelKey: "sendEmailButton",
href: "mailto:support@sifo.example",
},
];href:mailto:.You can remove a card by deleting it from the list, or add a new one by copying an item and changing the keys and link.
config/messages/en.json."Contact" section and edit:"title" and "description" — texts at the top of the page."openTicketTitle", "openTicketDescription", "openTicketButton" — first card."discordServerTitle", "discordServerDescription", "discordServerButton" — second card."sendEmailTitle", "sendEmailDescription", "sendEmailButton" — email card.config/messages/es.json."Contact" section, use the same keys with your Spanish text.Always keep the keys identical in both language files. Only change the sentences so each language looks correct.