Title
Description
Create titles that match the different languages your dashboard supports.
Implementation
Example:
export default function AdminDashboard() {
return (
<MarkusAdmin
title={ en: 'Admin Dashboard', de: 'Admin-Dashboard' }
/>
)
}
tip
The default option is "en". For each new language you add in translations, you should also add a title. Create a new element and create a new option "de" in it for deutsch for deutsch translation, as in the example.