Website: update order of quotes on landing pages. (#27939)

Changes:
- Updated the order of quotes on landing pages
- Updated the order of quotes on the /testimonials page
This commit is contained in:
Eric
2025-04-07 12:05:18 -05:00
committed by GitHub
parent e1cd206c26
commit 80a2521739
4 changed files with 45 additions and 41 deletions
+4 -3
View File
@@ -26,16 +26,17 @@ module.exports = {
// Specify an order for the testimonials on this page using the last names of quote authors
let testimonialOrderForThisPage = [
'Scott MacVicar',
'Mike Meyer',
'Luis Madrigal',
'Tom Larkin',
'Bart Reardon',
'Kenny Botelho',
'Erik Gomez',
'Chandra Majumdar',
'Eric Tan',
'Mike Meyer',
'Matt Carr',
'Luis Madrigal',
'Nico Waisman',
'Dan Grzelak',
'Tom Larkin',
];
// Filter the testimonials by product category
+7 -7
View File
@@ -35,21 +35,21 @@ module.exports = {
// Specify an order for the testimonials on this page using the last names of quote authors
let testimonialOrderForThisPage = [
'Eric Tan',
'Kenny Botelho',
'Ahmed Elshaer',
'Luis Madrigal',
'Arsenio Figueroa',
'Brendan Shaklovitz',
'Arsenio Figueroa',
'Luis Madrigal',
'Andre Shields',
'Tom Larkin',
'Eric Tan',
'Charles Zaffery',
'Kenny Botelho',
'Scott MacVicar',
'Erik Gomez',
'Bart Reardon',
'Mike Arpaia',
'Chandra Majumdar',
'Justin LaBo',
'Charles Zaffery',
'Tom Larkin',
'tom larkin',
];
// Filter the testimonials by product category and the filtered list we built above.
testimonialsForScrollableTweets = _.filter(testimonialsForScrollableTweets, (testimonial)=>{
+10 -9
View File
@@ -25,16 +25,17 @@ module.exports = {
// Specify an order for the testimonials on this page using the last names of quote authors
let testimonialOrderForThisPage = [
'Wes Whetstone',
'Kenny Botelho',
'Andre Shields',
'Erik Gomez',
'Arsenio Figueroa',
'Eric Tan',
'Chandra Majumdar',
'Nico Waisman',
'Dan Grzelak',
'Luis Madrigal',
'Arsenio Figueroa',
'Bart Reardon',
'Andre Shields',
'Wes Whetstone',
'Nico Waisman',
'Chandra Majumdar',
'Kenny Botelho',
'Erik Gomez',
'Eric Tan',
'Dan Grzelak',
'Justin LaBo'
];
+24 -22
View File
@@ -27,15 +27,15 @@ module.exports = {
// Filter the testimonials by product category
let testimonialOrderForMdm = [
'Scott MacVicar',
'Chandra Majumdar',
'Nico Waisman',
'Kenny Botelho',
'Eric Tan',
'Dan Grzelak',
'Erik Gomez',
'Matt Carr',
'Mike Meyer',
'Tom Larkin',
'Kenny Botelho',
'Erik Gomez',
'Chandra Majumdar',
'Eric Tan',
'Matt Carr',
'Nico Waisman',
'Dan Grzelak',
];
let testimonialsForMdm = _.filter(testimonials, (testimonial)=>{
return _.contains(testimonial.productCategories, 'Device management') && _.contains(testimonialOrderForMdm, testimonial.quoteAuthorName);
@@ -49,13 +49,15 @@ module.exports = {
return testimonialOrderForMdm.indexOf(a.quoteAuthorName) - testimonialOrderForMdm.indexOf(b.quoteAuthorName);
});
let testimonialOrderForSoftwareManagement = [
'Luis Madrigal',
'Arsenio Figueroa',
'Bart Reardon',
'Andre Shields',
'Wes Whetstone',
'Erik Gomez',
'Nico Waisman',
'Chandra Majumdar',
'Kenny Botelho',
'Arsenio Figueroa',
'Andre Shields',
'Nico Waisman',
'Erik Gomez',
'Eric Tan',
'Dan Grzelak',
];
@@ -71,21 +73,21 @@ module.exports = {
return testimonialOrderForSoftwareManagement.indexOf(a.quoteAuthorName) - testimonialOrderForSoftwareManagement.indexOf(b.quoteAuthorName);
});
let testimonialOrderForObservability = [
'Eric Tan',
'Arsenio Figueroa',
'Scott MacVicar',
'Chandra Majumdar',
'Kenny Botelho',
'Luis Madrigal',
'Brendan Shaklovitz',
'Erik Gomez',
'Charles Zaffery',
'Ahmed Elshaer',
'Brendan Shaklovitz',
'Arsenio Figueroa',
'Luis Madrigal',
'Andre Shields',
'Mike Arpaia',
'Tom Larkin',
'Eric Tan',
'Charles Zaffery',
'Kenny Botelho',
'Scott MacVicar',
'Erik Gomez',
'Mike Arpaia',
'Chandra Majumdar',
'Justin LaBo',
'Bart Reardon',
'tom larkin',
];
let testimonialsForObservability = _.filter(testimonials, (testimonial)=>{
return _.contains(testimonial.productCategories, 'Observability') && _.contains(testimonialOrderForObservability, testimonial.quoteAuthorName);