fleet/website/api/controllers/view-landing.js
Eric 83736e7b7f
Website: add landing page (#5095)
* 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
2022-04-13 15:12:56 +09:00

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 {};
}
};