Search code examples
node.jsreactjscomponentsadminadmin-bro

Change text on login page in admin bro


The login page in admin-bro says 'Welcome!'. I need to change it to something else. is it possible in AdminBro??

PS: I'm using version AdminBro v1.6.6. PPS: I've already tried this and the corresponding links. It doesn't work for me. Is it because of the version I have? Thanks in Advance!


Solution

  • Inside your adminbro index file:

    
    const locale = {
      translations: {
        labels: {
          // change Heading for Login
          loginWelcome: '',
        },
        messages: {
          loginWelcome: '',
        },
      },
    };
    
    const adminBro = new AdminBro({
      // databases: [db],
      resources: allResources,
      rootPath: '/admin',
      locale,
      branding: {
        companyName: '',
        softwareBrothers: false,
        logo: '',
      },
    });