17 lines
498 B
TypeScript

/**
* Defines the props for the feedback mailto: link
* @type {object}
*/
const feedback = { mail: 'wherehows-dev@linkedin.com', subject: 'WhereHows Feedback', title: 'Provide Feedback' };
/**
* Defines the properties for the navigation bar avatar
* @type {object}
*/
const avatar = {
url: 'https://cinco.corp.linkedin.com/api/profile/[username]/picture/?access_token=2rzmbzEMGlHsszQktFY-B1TxUic',
fallbackUrl: '/assets/assets/images/default_avatar.png'
};
export { feedback, avatar };