@digifi-los/reactapp
Version:
90 lines (89 loc) • 2.13 kB
JavaScript
;
const IndexManifest = {
component: 'Hero',
props: {
size: 'isFullheight',
},
children: [{
component: 'HeroBody',
props: {},
children: [{
component: 'Container',
props: {},
children: [{
component: 'Columns',
children: [{
component: 'Column',
props: {
size: 'is3',
},
},
{
component: 'Column',
props: {
'style': {
'textAlign': 'center',
},
},
children: [{
component: 'Title',
props: {
'style': {
'textAlign': 'center',
},
},
children: 'Welcome',
},
{
component: 'Image',
props: {
style: {
margin: 'auto',
},
src: '/favicon.png',
size: 'is128X128',
},
windowprops: {
alt: ['document', 'title', ],
},
},
],
},
{
component: 'Column',
props: {
size: 'is3',
},
},
],
}, ],
}, ],
}, ],
};
// const periodic = require('periodicjs');
const utilities = require('../../../utilities');
const reactapp = utilities.reactapp();
module.exports = () => {
return {
'containers': {
[`${reactapp.manifest_prefix}`]: {
'layout': IndexManifest,
'resources': {},
'onFinish': 'render',
'pageData': {
'title': 'Home',
'navLabel': 'Home',
},
},
[`${reactapp.manifest_prefix}home`]: {
'layout': IndexManifest,
'resources': {},
'onFinish': 'render',
'pageData': {
'title': 'Home',
'navLabel': 'Home',
},
},
},
};
};