fleet/website/api/controllers/imagine/view-rapid-7-alternative.js
Jarod Reyes d6f57a8e23
Added a Rapid7 landing page for campaign. (#12353)
Created Rapid7 landing page in `/imagine`

From Mike T:

Sorry for the bombardment of commits. 

Here's a breakdown of those
commits and changes:
 

- I increased the max-width of the hero text area for M-size breakpoints
and above to suit the content better.


- During my review, I noticed that the local-preview-generated changes
to `.sailsrc` had been pushed, but in my attempt to fix I deleted the
file rather than the diff.


- Attempted to revert back to my previous commit, but this was my first
attempt at removing a commit, so I wasn’t sure if it was successful.


- In the end, I re-pushed `.sailsrc` from `main`. - 

Crisis averted in
a very roundabout way 🙏🏻

# Checklist for submitter

- [x] Manual QA by Mike T

---------

Co-authored-by: Mike Thomas <[email protected]>
Co-authored-by: Mike Thomas <[email protected]>
Co-authored-by: Eric <[email protected]>
2023-06-16 06:57:26 +09:00

27 lines
302 B
JavaScript
Vendored

module.exports = {
friendlyName: 'View rapid 7 alternative',
description: 'Display "Rapid 7 alternative" page.',
exits: {
success: {
viewTemplatePath: 'pages/imagine/rapid-7-alternative'
}
},
fn: async function () {
// Respond with view.
return {};
}
};