UNPKG

717 BJavaScriptView Raw
1module.exports = res => `export const PROJECT_TYPE = '${res.type}';
2
3export const PROJECT_NAME = '${res.name}';
4${res.type === 'github' ? `export const PROJECT_ORG = \'${res.org}\';` : ''}
5export const PROJECT_URL = ${res.type === 'github' ? '`https://github.com/${PROJECT_ORG}/${PROJECT_NAME}`' : `'${res.phabUrl}'`};
6export const PROJECT_DESC = '${res.desc}';
7
8export const PROJECTS = {};
9
10export const HOME_HEADING = '${res.desc}';
11
12export const HOME_RIGHT = null;
13
14export const HOME_BULLETS = [{
15 text: 'Designed for React',
16 desc: 'Seemless integration.',
17 img: 'images/icon-react.svg',
18}, {
19 text: 'Totally ready for production',
20 img: 'images/icon-layers.svg',
21}];
22
23export const ADDITIONAL_LINKS = [];
24`;