From b3ba3c3f4a0ceb735d7e593da365ca0f4d431b46 Mon Sep 17 00:00:00 2001 From: Sebastian Beltran Date: Sat, 25 Oct 2025 19:30:44 +0000 Subject: [PATCH] chore(partners): add MacStadium --- .../public/static/partners/constants.json | 7 ++++++ .../Icons/PartnerLogos/MacStadium/Favicon.tsx | 23 +++++++++++++++++++ .../Icons/PartnerLogos/MacStadium/Logo.tsx | 23 +++++++++++++++++++ .../Icons/PartnerLogos/MacStadium/index.ts | 4 ++++ .../src/Icons/PartnerLogos/index.ts | 2 ++ 5 files changed, 59 insertions(+) create mode 100644 packages/ui-components/src/Icons/PartnerLogos/MacStadium/Favicon.tsx create mode 100644 packages/ui-components/src/Icons/PartnerLogos/MacStadium/Logo.tsx create mode 100644 packages/ui-components/src/Icons/PartnerLogos/MacStadium/index.ts diff --git a/apps/site/public/static/partners/constants.json b/apps/site/public/static/partners/constants.json index d104e990479d9..93597ade6a192 100644 --- a/apps/site/public/static/partners/constants.json +++ b/apps/site/public/static/partners/constants.json @@ -34,6 +34,13 @@ "categories": ["infrastructure"], "weight": 2 }, + { + "id": "MACSTADIUM", + "name": "MacStadium", + "href": "https://macstadium.com", + "categories": ["infrastructure"], + "weight": 2 + }, { "id": "NODESOURCE", "name": "NodeSource", diff --git a/packages/ui-components/src/Icons/PartnerLogos/MacStadium/Favicon.tsx b/packages/ui-components/src/Icons/PartnerLogos/MacStadium/Favicon.tsx new file mode 100644 index 0000000000000..33577a572230f --- /dev/null +++ b/packages/ui-components/src/Icons/PartnerLogos/MacStadium/Favicon.tsx @@ -0,0 +1,23 @@ +import type { FC, SVGProps } from 'react'; + +const MacStadiumFavicon: FC> = props => ( + + + + +); + +export default MacStadiumFavicon; diff --git a/packages/ui-components/src/Icons/PartnerLogos/MacStadium/Logo.tsx b/packages/ui-components/src/Icons/PartnerLogos/MacStadium/Logo.tsx new file mode 100644 index 0000000000000..e4a8e0a0890c2 --- /dev/null +++ b/packages/ui-components/src/Icons/PartnerLogos/MacStadium/Logo.tsx @@ -0,0 +1,23 @@ +import type { FC, SVGProps } from 'react'; + +const MacStadiumFavicon: FC> = props => ( + + + + +); + +export default MacStadiumFavicon; diff --git a/packages/ui-components/src/Icons/PartnerLogos/MacStadium/index.ts b/packages/ui-components/src/Icons/PartnerLogos/MacStadium/index.ts new file mode 100644 index 0000000000000..b4cd37328b21d --- /dev/null +++ b/packages/ui-components/src/Icons/PartnerLogos/MacStadium/index.ts @@ -0,0 +1,4 @@ +import Favicon from './Favicon'; +import Logo from './Logo'; + +export { Favicon, Logo }; diff --git a/packages/ui-components/src/Icons/PartnerLogos/index.ts b/packages/ui-components/src/Icons/PartnerLogos/index.ts index fe46cde4ce60d..2280b28fd5533 100644 --- a/packages/ui-components/src/Icons/PartnerLogos/index.ts +++ b/packages/ui-components/src/Icons/PartnerLogos/index.ts @@ -6,6 +6,7 @@ import * as DIGITALOCEAN from './DigitalOcean'; import * as EQUINIXMETAL from './EquinixMetal'; import * as HERODEVS from './HeroDevs'; import * as IBM from './IBM'; +import * as MACSTADIUM from './MacStadium'; import * as MICROSOFT from './Microsoft'; import * as NODESOURCE from './NodeSource'; import * as OPENSSF from './OpenSSF'; @@ -24,6 +25,7 @@ export { EQUINIXMETAL, HERODEVS, IBM, + MACSTADIUM, MICROSOFT, NODESOURCE, OPENSSF,