docs(core): add zephyr cloud to partners page (#31472)
<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior PR Adds Zephyr Cloud to Partners Page ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
This commit is contained in:
parent
022789202e
commit
2ac98045e6
@ -99,6 +99,7 @@ export * from './lib/partners/e-square';
|
||||
export * from './lib/partners/briebug';
|
||||
export * from './lib/partners/liveloveapp';
|
||||
export * from './lib/partners/nstudio';
|
||||
export * from './lib/partners/zephry-cloud';
|
||||
|
||||
// PODCASTS
|
||||
export * from './lib/podcasts/amazon-music';
|
||||
|
||||
20
nx-dev/ui-icons/src/lib/partners/zephry-cloud.tsx
Normal file
20
nx-dev/ui-icons/src/lib/partners/zephry-cloud.tsx
Normal file
@ -0,0 +1,20 @@
|
||||
import { FC, SVGProps } from 'react';
|
||||
|
||||
export const ZephyrCloudIcon: FC<SVGProps<SVGSVGElement>> = (props) => {
|
||||
return (
|
||||
<svg
|
||||
width="693"
|
||||
height="692"
|
||||
viewBox="0 0 693 692"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<title>Zephyr Cloud</title>
|
||||
<path
|
||||
d="M318.837 1.48979C373.442 -2.47234 423.944 7.10877 473.949 24.0661C521.843 40.3079 571.026 52.724 619.332 67.8149C628.925 70.8118 642.264 76.769 644.481 84.1715C646.659 91.4421 638.853 104.203 632.019 111.252C592.605 151.905 552.18 191.578 512.331 231.349C576.626 337.343 541.361 435.609 487.122 488.655C428.191 546.29 330.265 571.589 234.404 512.616C215.584 531.604 196.879 550.475 176.984 570.546C215.347 600.589 260.19 619.467 309.916 625.251C463.438 643.107 595.771 545.664 624.377 394.181C631.843 354.646 629.953 315.155 619.682 276.154C618.025 269.864 615.876 263.604 615.13 257.193C613.052 239.326 625.235 222.669 641.996 219.607C657.971 216.688 671.166 225.727 676.965 243.56C736.771 427.481 622.447 633.539 434.599 680.279C360.336 698.757 288.185 693.155 216.176 666.337C170.1 649.177 121.542 638.747 74.4037 624.301C64.7716 621.349 51.3665 615.537 49.066 608.136C46.7931 600.824 54.296 587.812 61.1084 580.784C100.526 540.118 141.008 500.482 180.896 460.73C116.153 352.185 153.427 254.373 207.795 202.049C265.323 146.685 362.83 119.861 459.571 179.872C478.35 160.97 497.104 142.093 517.047 122.019C478.91 92.0989 435.305 73.3394 386.949 67.2924C230.604 47.7413 97.1273 145.455 68.7143 300.271C60.8584 343.076 64.6788 385.779 76.6033 427.787C82.0653 447.029 74.5966 462.736 58.2436 469.833C39.5533 477.945 22.8645 469.587 16.4415 447.868C-10.444 356.955 -3.63505 268.467 41.4377 185.009C100.46 75.7221 193.836 15.7408 318.837 1.48979ZM247.506 393.823C302.21 339.151 356.913 284.479 411.801 229.623C359.724 196.039 286.705 206.496 243.693 252.856C201.662 298.16 194.321 368.483 229.227 415.87C234.907 408.881 240.233 402.327 247.506 393.823ZM295.999 473.686C357.496 494.465 418.507 475.36 454.982 423.901C484.936 381.643 487.936 317.842 464.3 287.504C404.259 347.554 343.835 407.987 283.343 468.488C284.884 469.198 288.907 471.054 295.999 473.686Z"
|
||||
fill="#0F0E0D"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
};
|
||||
@ -7,6 +7,7 @@ import {
|
||||
BriebugIcon,
|
||||
LiveLoveAppIcon,
|
||||
NStudioIcon,
|
||||
ZephyrCloudIcon,
|
||||
} from '@nx/nx-dev/ui-icons';
|
||||
import { useEffect, useMemo, useState } from 'react';
|
||||
import { Partner } from './partner';
|
||||
@ -79,6 +80,19 @@ export function PartnersList(): JSX.Element {
|
||||
tagline: "Craftsmanship perfected 'n' ways for your goals.",
|
||||
capabilities: ['Typescript', 'Swift', 'Kotlin', 'NativeScript'],
|
||||
},
|
||||
{
|
||||
name: 'Zephyr Cloud',
|
||||
logo: <ZephyrCloudIcon aria-hidden="true" className="mb-4 h-14" />,
|
||||
href: 'https://zephyr-cloud.io/',
|
||||
location: 'US',
|
||||
tagline: 'The only sane way to do micro-frontends and mini-apps.',
|
||||
capabilities: [
|
||||
'Micro-frontends',
|
||||
'Mini-apps',
|
||||
'Deployment',
|
||||
'Module Federation',
|
||||
],
|
||||
},
|
||||
],
|
||||
[]
|
||||
);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user