mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Website: add homepage meta title and description to routes. (#14066)
Closes: #13731 Changes: - Added the meta title and description for the Fleet homepage to `website/config/routes.js`.
This commit is contained in:
parent
1b25187453
commit
21e449041f
1 changed files with 5 additions and 1 deletions
6
website/config/routes.js
vendored
6
website/config/routes.js
vendored
|
|
@ -15,7 +15,11 @@ module.exports.routes = {
|
|||
// ╚╩╝╚═╝╚═╝╩ ╩ ╩╚═╝╚═╝╚═╝
|
||||
'GET /': {
|
||||
action: 'view-homepage-or-redirect',
|
||||
locals: { isHomepage: true }
|
||||
locals: {
|
||||
isHomepage: true,
|
||||
pageTitleForMeta: 'Fleet | Open-source device management',
|
||||
pageDescriptionForMeta: 'Open-source device management and security for teams with thousands of laptops and servers. (macOS, Windows, Linux, ChromeOS)'
|
||||
}
|
||||
},
|
||||
|
||||
'GET /company/contact': {
|
||||
|
|
|
|||
Loading…
Reference in a new issue