mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
21 lines
714 B
JavaScript
21 lines
714 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: 'https://yunite.org/',
|
|
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',
|
|
}
|