From b22b6c0e66b2dab389e14d75becaf9da0af8307e Mon Sep 17 00:00:00 2001 From: Mike McNeil Date: Wed, 27 Nov 2024 21:17:44 -0600 Subject: [PATCH] Website: Add redirect and broaden URL route (#24235) --- website/config/routes.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/website/config/routes.js b/website/config/routes.js index 622cfa298c..b0f301d1e7 100644 --- a/website/config/routes.js +++ b/website/config/routes.js @@ -293,10 +293,10 @@ module.exports.routes = { } }, - 'GET /customer-stories': { + 'GET /testimonials': { action: 'view-testimonials', locals: { - pageTitleForMeta: 'Customer stories', + pageTitleForMeta: 'What people are saying', pageDescriptionForMeta: 'See what people are saying about Fleet.' } }, @@ -331,6 +331,7 @@ module.exports.routes = { // ``` // 'GET /docs/using-fleet/learn-how-to-use-fleet': '/docs/using-fleet/fleet-for-beginners', // ``` + 'GET /customer-stories': '/testimonials', 'GET /try': '/get-started', 'GET /docs/deploying/fleet-public-load-testing': '/docs/deploying/load-testing', 'GET /handbook/customer-experience': '/handbook/customers',