From a7ff250f2762ccc20fe0931487d8d791f92fb93d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Tue, 23 Jul 2024 21:37:44 +0200 Subject: [PATCH] feat(nx-dev): reprioritize customer logos on landing page (#27061) A follow up PR will replace Amplify logo with AWS ## Current Behavior image ## Expected Behavior image ## Related Issue(s) Fixes # --- nx-dev/ui-home/src/lib/trusted-by.tsx | 82 +++++++++---------- nx-dev/ui-icons/src/index.ts | 2 +- .../customers/{aws-amplify.tsx => aws.tsx} | 0 3 files changed, 42 insertions(+), 42 deletions(-) rename nx-dev/ui-icons/src/lib/customers/{aws-amplify.tsx => aws.tsx} (100%) diff --git a/nx-dev/ui-home/src/lib/trusted-by.tsx b/nx-dev/ui-home/src/lib/trusted-by.tsx index 90d17c55ae3c6..e9b30eef11cb2 100644 --- a/nx-dev/ui-home/src/lib/trusted-by.tsx +++ b/nx-dev/ui-home/src/lib/trusted-by.tsx @@ -1,22 +1,22 @@ import Link from 'next/link'; import { SectionDescription, SectionHeading } from '@nx/nx-dev/ui-common'; import { + AdobeIcon, AwsIcon, - BillIcon, - CapitalOneIcon, - CaterpillarIcon, CiscoIcon, - EpicWebIcon, - FicoIcon, + CypressIcon, + FedExIcon, HiltonIcon, - ManIcon, - RoyalBankOfCanadaIcon, + IntelIcon, + MicrosoftIcon, + RedBullIcon, + RxJSIcon, + SentryIcon, + SevenElevenIcon, ShopifyIcon, StorybookIcon, - TanstackIcon, - TypescriptEslintIcon, + StrapiIcon, VmwareIcon, - WalmartIcon, } from '@nx/nx-dev/ui-icons'; export function TrustedBy(): JSX.Element { @@ -38,70 +38,70 @@ export function TrustedBy(): JSX.Element {
-
-
diff --git a/nx-dev/ui-icons/src/index.ts b/nx-dev/ui-icons/src/index.ts index c8501447541f5..217df3dc7d742 100644 --- a/nx-dev/ui-icons/src/index.ts +++ b/nx-dev/ui-icons/src/index.ts @@ -11,7 +11,7 @@ export * from './lib/customers/7eleven'; export * from './lib/customers/adidas'; export * from './lib/customers/adobe'; export * from './lib/customers/american-airlines'; -export * from './lib/customers/aws-amplify'; +export * from './lib/customers/aws'; export * from './lib/customers/bill'; export * from './lib/customers/bloomberg'; export * from './lib/customers/builder-mitosis'; diff --git a/nx-dev/ui-icons/src/lib/customers/aws-amplify.tsx b/nx-dev/ui-icons/src/lib/customers/aws.tsx similarity index 100% rename from nx-dev/ui-icons/src/lib/customers/aws-amplify.tsx rename to nx-dev/ui-icons/src/lib/customers/aws.tsx