app.js 1.71 KB
// @ts-ignore
import AuthLogo from "./extensions/logo.png";
// @ts-ignore
import MenuLogo from "./extensions/logo.png";
// @ts-ignore
import favicon from "./extensions/favicon.ico";

export default {
  config: {
    // Replace the Strapi logo in auth (login) views
    auth: {
      logo: AuthLogo,
    },
    // Replace the favicon
    head: {
      favicon: favicon,
    },
    // Add a new locale, other than 'en'
    locales: ["en"],
    // Replace the Strapi logo in the main navigation
    menu: {
      logo: MenuLogo,
    },
    // Override or extend the theme
    theme: {
      // overwrite light theme properties
      light: {
        colors: {
          primary100: "#e9fcfc",
          primary200: "#bcf6f5",
          primary500: "#8ff0ee",
          primary600: "#32324d",
          primary700: "#32324d",
          danger700: "#b72b1a",
        },
      },

      // overwrite dark theme properties
      dark: {
        // ...
      },
    },
    // Extend the translations
    translations: {
      en: {
        "Auth.form.welcome.subtitle": "Log in to your Advith account",
        "app.components.LeftMenu.navbrand.title": "Advith",
        "Auth.form.welcome.title": "Advith Admin Panel!",
        "Auth.form.email.placeholder": "Your Email",
        "HomePage.helmet.title": "Advith Admin",
        "app.components.HomePage.welcome.again": "Welcome to Advith Consulting Admin Panel 👋",
        "app.components.HomePage.welcomeBlock.content.again":"We aim to cultivate connections with integrity & transparency across the globe."
      },
    },
    // Disable video tutorials
    tutorials: false,
    // Disable notifications about new Strapi releases
    notifications: { releases: false },
  },

  bootstrap() { },
};