Skip to content

Commit 8f612d6

Browse files
feat(quotes): make MiniMax #1 in landing carousel (#503)
Pin MiniMax first and OpenAI second in the landing page carousel so MiniMax is the quote shown on initial load. Also reorder the CAROUSEL_ORGS whitelist (MiniMax, then OpenAI) so the FAQ supporter listing stays consistent. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 2b3e721 commit 8f612d6

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

packages/app/cypress/e2e/landing-performance.cy.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ describe('Landing page performance', () => {
151151

152152
expect([...fonts]).to.have.length(1);
153153
expect([...logos]).to.have.length(1);
154-
expect([...logos][0]).to.eq('/logos/openai.svg');
154+
// MiniMax is pinned first in the carousel order, so it's the initially
155+
// visible supporter the server renders (index 0) and preloads.
156+
expect([...logos][0]).to.eq('/logos/minimax.svg');
155157
});
156158
});
157159

packages/app/src/components/intro-section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { QUOTES, CAROUSEL_ORGS, CAROUSEL_LABELS } from '@/components/quotes/quot
88
const carouselQuotes = QUOTES.filter((q) => (CAROUSEL_ORGS as readonly string[]).includes(q.org));
99

1010
const CAROUSEL_OVERRIDES = {
11-
order: ['OpenAI'] as string[],
11+
order: ['MiniMax'] as string[],
1212
labels: CAROUSEL_LABELS,
1313
};
1414

packages/app/src/components/quotes/quotes-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,7 @@ export const QUOTES: Quote[] = [
353353

354354
/** Orgs featured in the landing page carousel. */
355355
export const CAROUSEL_ORGS = [
356+
'MiniMax',
356357
'OpenAI',
357358
'Microsoft',
358359
'Together AI',
@@ -375,7 +376,6 @@ export const CAROUSEL_ORGS = [
375376
'UC San Diego',
376377
'Red Hat',
377378
'White House',
378-
'MiniMax',
379379
] as const;
380380

381381
/** Display label overrides for carousel orgs. */

0 commit comments

Comments
 (0)