app.js
1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// @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() { },
};