diff --git a/components/frontend/src/routes/(public)/+page.svelte b/components/frontend/src/routes/(public)/+page.svelte index 099ec808..c0bfe748 100644 --- a/components/frontend/src/routes/(public)/+page.svelte +++ b/components/frontend/src/routes/(public)/+page.svelte @@ -63,30 +63,6 @@ return GRADIENTS[i % GRADIENTS.length]!; } - // Organisations that have run a hackathon with us. Deliberately not SDSC, - // ETH or EPFL, which stood here before: SDSC *is* the ETH/EPFL joint - // venture, so listing them under "Trusted by" is listing ourselves. They - // keep their billing in AppFooter's row of institution logos. - // - // A dark asset where one is needed, and no `invert` fallback — the rule the - // institution logos relied on does not survive a coloured mark. Inverting - // J&J's red gives cyan; inverting Richemont's navy gives pale orange. - const TRUSTED_BY = [ - { - name: 'Johnson & Johnson', - // Red reads on both canvases, so one asset serves both. - logoUrl: '/images/logos/johnson-and-johnson.webp', - }, - { - name: 'Richemont', - // Navy all but vanishes on the dark canvas, so this one ships as a - // light/dark pair — the same failure that made Durham University - // invisible on the experimental branch. - logoUrl: '/images/logos/richemont.webp', - logoDarkUrl: '/images/logos/richemont-white.webp', - }, - ]; - @@ -220,40 +196,6 @@ - -
-

Trusted by

- -
- {#each TRUSTED_BY as org (org.name)} -
- {#if org.logoDarkUrl} - {org.name} - - {:else} - {org.name} - {/if} -
- {/each} -
-
-