569d887d1e
Renaming the package so any further PRs directed to the website are targeted to the reworked code instead of diverging. Once merged, I will start preparing this for deployment to dev to test before releasing to prod. Any improvements will also be applied to this package. I avoided making significant changes to API routes so nothing breaks, but will test it thoroughly today to confirm. That said, everything is ported - double checked. Big diff PR, impossible to review, but last one! No more rebuilds.
13 lines
429 B
TypeScript
13 lines
429 B
TypeScript
import { type ClientLogoKey } from './client-logo-config';
|
||
|
||
// How wide each customer logo renders at its base size. The catalog thumbnail
|
||
// and the detail hero both scale from these (×1.4 and ×1.6 respectively).
|
||
export const CLIENT_LOGO_DISPLAY_WIDTHS: Record<ClientLogoKey, number> = {
|
||
'nine-dots': 72,
|
||
'alternative-partners': 220,
|
||
netzero: 180,
|
||
'act-education': 110,
|
||
w3villa: 150,
|
||
'elevate-consulting': 160,
|
||
};
|