mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-03 04:10:43 +00:00
17 lines
498 B
TypeScript
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 };
|