diff --git a/nx-dev/ui-contact/src/lib/talk-to-our-engineering-team.tsx b/nx-dev/ui-contact/src/lib/talk-to-our-engineering-team.tsx index 38c19106fefa6..d91739a2d5bca 100644 --- a/nx-dev/ui-contact/src/lib/talk-to-our-engineering-team.tsx +++ b/nx-dev/ui-contact/src/lib/talk-to-our-engineering-team.tsx @@ -1,7 +1,19 @@ import { SectionHeading } from '@nx/nx-dev/ui-common'; import { HubspotForm } from './hubspot-form'; +import { ReactElement } from 'react'; +import { + CapitalOneIcon, + CaterpillarIcon, + ManIcon, + RedwoodJsIcon, + RoyalBankOfCanadaIcon, + ShopifyIcon, + SiriusxmAlternateIcon, + StorybookIcon, + VmwareIcon, +} from '@nx/nx-dev/ui-icons'; -export function TalkToOurEngineeringTeam(): JSX.Element { +export function TalkToOurEngineeringTeam(): ReactElement { return (
@@ -26,116 +38,84 @@ export function TalkToOurEngineeringTeam(): JSX.Element { Fill out the form, and we’ll get back to you to schedule a call or start the discussion on a shared Slack.

-
+ +
+
+

+ “The decision to jump to Nx Cloud was really something we + wanted from the beginning. There's nothing but benefits from + it. Nx means tooling and efficiency around our software + development lifecycle that empowers us to move a lot faster, + ship code faster and more reliably.” +

+
+
+ Justin Schwartzenberger +
+
Justin Schwartzenberger
+
+ Principal Software Engineer, SiriusXM +
+
+
+
+
- + className="size-14 text-black dark:text-white" + />
- + className="size-14 text-[#E40045]" + />
- + className="size-12 text-[#7AB55C]" + />
- + className="size-28 text-black dark:text-white" + />
- + className="size-28 text-black dark:text-white" + />
- + className="size-12 text-[#FF4785]" + />
- + className="size-12 text-[#BF4722]" + />
- + className="size-14 text-[#FFCD11]" + />
diff --git a/nx-dev/ui-contact/src/lib/talk-to-our-sales-team.tsx b/nx-dev/ui-contact/src/lib/talk-to-our-sales-team.tsx index 75adac865641c..978acca7121f9 100644 --- a/nx-dev/ui-contact/src/lib/talk-to-our-sales-team.tsx +++ b/nx-dev/ui-contact/src/lib/talk-to-our-sales-team.tsx @@ -1,7 +1,19 @@ import { SectionHeading } from '@nx/nx-dev/ui-common'; import { HubspotForm } from './hubspot-form'; +import { ReactElement } from 'react'; +import { + CapitalOneIcon, + CaterpillarIcon, + ManIcon, + RedwoodJsIcon, + RoyalBankOfCanadaIcon, + ShopifyIcon, + SiriusxmAlternateIcon, + StorybookIcon, + VmwareIcon, +} from '@nx/nx-dev/ui-icons'; -export function TalkToOurSalesTeam(): JSX.Element { +export function TalkToOurSalesTeam(): ReactElement { return (
@@ -25,116 +37,84 @@ export function TalkToOurSalesTeam(): JSX.Element { Fill out the form, and we’ll get back to you to schedule a call or start the discussion on a shared Slack.

-
+ +
+
+

+ “The decision to jump to Nx Cloud was really something we + wanted from the beginning. There's nothing but benefits from + it. Nx means tooling and efficiency around our software + development lifecycle that empowers us to move a lot faster, + ship code faster and more reliably.” +

+
+
+ Justin Schwartzenberger +
+
Justin Schwartzenberger
+
+ Principal Software Engineer, SiriusXM +
+
+
+
+
- + className="size-14 text-black dark:text-white" + />
- + className="size-14 text-[#E40045]" + />
- + className="size-12 text-[#7AB55C]" + />
- + className="size-28 text-black dark:text-white" + />
- + className="size-28 text-black dark:text-white" + />
- + className="size-12 text-[#FF4785]" + />
- + className="size-12 text-[#BF4722]" + />
- + className="size-14 text-[#FFCD11]" + />
diff --git a/nx-dev/ui-enterprise/src/lib/scale-your-organization.tsx b/nx-dev/ui-enterprise/src/lib/scale-your-organization.tsx index 0749f230a26d0..2572735b1814e 100644 --- a/nx-dev/ui-enterprise/src/lib/scale-your-organization.tsx +++ b/nx-dev/ui-enterprise/src/lib/scale-your-organization.tsx @@ -60,7 +60,7 @@ export function ScaleYourOrganization(): ReactElement {
Justin Schwartzenberger
- Principle Software Engineer, SiriusXM + Principal Software Engineer, SiriusXM
diff --git a/nx-dev/ui-enterprise/src/lib/security.tsx b/nx-dev/ui-enterprise/src/lib/security.tsx index b586474151406..7f395cc8a085d 100644 --- a/nx-dev/ui-enterprise/src/lib/security.tsx +++ b/nx-dev/ui-enterprise/src/lib/security.tsx @@ -52,19 +52,6 @@ export function Security(): ReactElement { SSAE18/SOC 2 type 1 and type 2 reports -
- - European Union - - - GDPR compliance -
diff --git a/nx-dev/ui-icons/src/index.ts b/nx-dev/ui-icons/src/index.ts index 65303d9c40345..4263e84aaad67 100644 --- a/nx-dev/ui-icons/src/index.ts +++ b/nx-dev/ui-icons/src/index.ts @@ -56,6 +56,7 @@ export * from './lib/customers/sainsburys'; export * from './lib/customers/sentry'; export * from './lib/customers/sharp'; export * from './lib/customers/shopify'; +export * from './lib/customers/siriusxm'; export * from './lib/customers/splice'; // export * from './lib/customers/storybook'; // Present in "Technologies". export * from './lib/customers/strapi'; diff --git a/nx-dev/ui-icons/src/lib/customers/siriusxm.tsx b/nx-dev/ui-icons/src/lib/customers/siriusxm.tsx new file mode 100644 index 0000000000000..dd97d3898af1a --- /dev/null +++ b/nx-dev/ui-icons/src/lib/customers/siriusxm.tsx @@ -0,0 +1,35 @@ +import { FC, SVGProps } from 'react'; + +/** + * Use `#0000EB` for a colored version. + */ +export const SiriusxmIcon: FC> = (props) => ( + + SiriusXM + + +); + +/** + * Use `#0000EB` for a colored version. + */ +export const SiriusxmAlternateIcon: FC> = (props) => ( + + + +); diff --git a/nx-dev/ui-powerpack/src/lib/powerpack-features.tsx b/nx-dev/ui-powerpack/src/lib/powerpack-features.tsx index 79f918f92a895..f80ab2e597231 100644 --- a/nx-dev/ui-powerpack/src/lib/powerpack-features.tsx +++ b/nx-dev/ui-powerpack/src/lib/powerpack-features.tsx @@ -173,7 +173,7 @@ export function PowerpackFeatures(): ReactElement { Nx Powerpack is reliably maintained by the Nx team. Nx (the company) adheres to strict security and data-handling standards, including compliance with SOC 2 (Type 1 and - Type 2) and GDPR. + Type 2).