From d669732db1afa66ae2030706ff56a19421df719c Mon Sep 17 00:00:00 2001 From: Sabine Maennel <5292683+sabinem@users.noreply.github.com> Date: Tue, 1 Sep 2026 18:23:13 +0200 Subject: [PATCH] chore(frontend): drop the "Trusted by" section from the landing page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The section is coming back, but not yet — so it goes rather than hiding behind a flag. Left in place it would be an array, thirty lines of markup with its own layout rationale, and two customer logos that every later edit to this page has to read past and every reviewer has to ask about. Removed whole so that readding it is `git revert` of this commit: the markup, the data and the three logo assets come back together. --- .../frontend/src/routes/(public)/+page.svelte | 58 ------------------ .../images/logos/johnson-and-johnson.webp | Bin 16174 -> 0 bytes .../static/images/logos/richemont-white.webp | Bin 6444 -> 0 bytes .../static/images/logos/richemont.webp | Bin 9622 -> 0 bytes 4 files changed, 58 deletions(-) delete mode 100644 components/frontend/static/images/logos/johnson-and-johnson.webp delete mode 100644 components/frontend/static/images/logos/richemont-white.webp delete mode 100644 components/frontend/static/images/logos/richemont.webp 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} -
-
-