50 lines
586 B
JavaScript
50 lines
586 B
JavaScript
module.exports = function(mw) {
|
|
return {
|
|
public: [
|
|
{
|
|
title: 'Home',
|
|
path: '/'
|
|
},
|
|
{
|
|
title: 'Process'
|
|
},
|
|
{
|
|
title: 'Services',
|
|
pages: [
|
|
{
|
|
title: 'Entertainment',
|
|
},
|
|
{
|
|
title: 'Security',
|
|
},
|
|
{
|
|
title: 'Integration',
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: 'Markets'
|
|
},
|
|
{
|
|
title: 'About'
|
|
},
|
|
{
|
|
title: 'Contact'
|
|
}
|
|
|
|
],
|
|
|
|
//redirects: [
|
|
// [ '/coupon','/kupongen' ],
|
|
//],
|
|
|
|
//admin: [
|
|
// {
|
|
// title: 'Dashboard',
|
|
// path: '/',
|
|
// template: 'admin/pages/index'
|
|
// }
|
|
//]
|
|
};
|
|
};
|