fleet/website/api/controllers/view-platform.js
eashaw 001626eae8
Add /platform page (#3858)
* platform page and images

* add hrefs and link styles

* update responsive layout and images

* remove waves, lint fixes

* page locals

* Update new-license.ejs

* Revert "Update new-license.ejs"

This reverts commit ade27acf43c6373993f74febe89881ea0a47f944.

* Update platform.ejs

* reorder topnav, adjust mobile styles

* add href, fix padding

* a couple of style tweaks

• Reduced space between sections.
• Center-aligned images and text vertically.

Co-authored-by: Mike Thomas <mthomas@fleetdm.com>
2022-01-25 12:40:16 +09:00

28 lines
261 B
JavaScript
Vendored

module.exports = {
friendlyName: 'View platform',
description: 'Display "Platform" page.',
exits: {
success: {
viewTemplatePath: 'pages/platform'
}
},
fn: async function () {
// Respond with view.
return {};
}
};