mirror of
https://github.com/fleetdm/fleet
synced 2026-05-08 17:50:52 +00:00
* 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
27 lines
258 B
JavaScript
Vendored
27 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 {};
|
|
|
|
}
|
|
|
|
|
|
};
|