mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-20 20:01:22 +00:00
git-subtree-dir: deployment git-subtree-mainline: 284b7cc0f94be3338d3d7fd16ed91dd2abdfa4ba git-subtree-split: 47fbabf1b428a7b6d0d70ca0015ee55ddeb70b42
25 lines
796 B
JavaScript
25 lines
796 B
JavaScript
// this file is duplicated in `backend/src/config/logos.js` and `webapp/constants/logos.js` and replaced on rebranding
|
|
// this are the paths in the webapp
|
|
export default {
|
|
LOGO_HEADER_PATH: '/img/custom/logo-horizontal.svg',
|
|
LOGO_HEADER_WIDTH: '130px',
|
|
LOGO_HEADER_CLICK: {
|
|
// externalLink: {
|
|
// url: 'https://ocelot.social',
|
|
// target: '_blank',
|
|
// },
|
|
externalLink: null,
|
|
internalPath: {
|
|
to: {
|
|
name: 'index',
|
|
},
|
|
scrollTo: '.main-navigation',
|
|
},
|
|
},
|
|
LOGO_SIGNUP_PATH: '/img/custom/logo-squared.svg',
|
|
LOGO_WELCOME_PATH: '/img/custom/logo-squared.svg',
|
|
LOGO_LOGOUT_PATH: '/img/custom/logo-squared.svg',
|
|
LOGO_PASSWORD_RESET_PATH: '/img/custom/logo-squared.svg',
|
|
LOGO_MAINTENACE_RESET_PATH: '/img/custom/logo-squared.svg',
|
|
}
|