mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
83736e7b7f
* dedupe animated arrow styles, create btn-animated-arrow mixin * add landing page, landing-layout. styles * update route and metadata * mobile footer styles * lint fix * Update layout-landing.ejs * Update landing.ejs
28 lines
258 B
JavaScript
Vendored
28 lines
258 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View landing',
|
|
|
|
|
|
description: 'Display "Landing" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/landing'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|