Skip to content

Commit 0f270ba

Browse files
refactor: switch quote carousel from blacklist to whitelist
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7217621 commit 0f270ba

1 file changed

Lines changed: 15 additions & 14 deletions

File tree

packages/app/src/components/page-content.tsx

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -297,20 +297,21 @@ export function PageContent({ initialTab = 'inference' }: { initialTab?: string
297297
</p>
298298
<div className="mt-4 pt-4 border-t border-border/50">
299299
<QuoteCarousel
300-
quotes={QUOTES.filter(
301-
(q) =>
302-
![
303-
'NVIDIA',
304-
'AMD',
305-
'Supermicro',
306-
'Vultr',
307-
'Prime Intellect',
308-
'DatologyAI',
309-
'Stas Bekman',
310-
'Firmus',
311-
'Adaptive ML',
312-
'Baseten',
313-
].includes(q.org),
300+
quotes={QUOTES.filter((q) =>
301+
[
302+
'OpenAI',
303+
'Microsoft',
304+
'Together AI',
305+
'vLLM',
306+
'GPU Mode',
307+
'PyTorch Foundation',
308+
'Oracle',
309+
'CoreWeave',
310+
'Nebius',
311+
'Crusoe',
312+
'TensorWave',
313+
'SGLang',
314+
].includes(q.org),
314315
)}
315316
overrides={{
316317
order: ['OpenAI'],

0 commit comments

Comments
 (0)