Skip to content

Commit 4da9fad

Browse files
authored
refactor: update partners and supporters sections by removing unused categories and cleaning up content
1 parent d737364 commit 4da9fad

File tree

4 files changed

+7
-113
lines changed

4 files changed

+7
-113
lines changed

apps/site/layouts/Post.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Preview from '@node-core/ui-components/Common/Preview';
22
import type { FC, PropsWithChildren } from 'react';
33

4-
import Link from '#site/components/Link';
4+
// import Link from '#site/components/Link';
55
import WithAvatarGroup from '#site/components/withAvatarGroup';
66
import WithBlogCrossLinks from '#site/components/withBlogCrossLinks';
77
import WithFooter from '#site/components/withFooter';
@@ -12,7 +12,7 @@ import { mapAuthorToCardAuthors } from '#site/util/author';
1212
import { mapBlogCategoryToPreviewType } from '#site/util/blog';
1313

1414
import styles from './layouts.module.css';
15-
import PartnersLogoList from '../components/Common/Partners/PartnersLogoList';
15+
// import PartnersLogoList from '../components/Common/Partners/PartnersLogoList';
1616

1717
const PostLayout: FC<PropsWithChildren> = ({ children }) => {
1818
const { frontmatter } = useClientContext();
@@ -41,7 +41,7 @@ const PostLayout: FC<PropsWithChildren> = ({ children }) => {
4141
{children}
4242

4343
<WithBlogCrossLinks />
44-
{type === 'vulnerability' && (
44+
{/* {type === 'vulnerability' && (
4545
<div className="mt-3">
4646
<hr />
4747
<section className="flex-col! mt-4 flex w-full gap-4">
@@ -56,7 +56,7 @@ const PostLayout: FC<PropsWithChildren> = ({ children }) => {
5656
<PartnersLogoList categories="security" />
5757
</section>
5858
</div>
59-
)}
59+
)} */}
6060
</main>
6161
</div>
6262

apps/site/pages/en/about/partners.mdx

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Partners & Supporters
33
layout: about
44
---
55

6-
# Partners
6+
# Partners & Supporters
77

88
The Node.js community is enriched by a vibrant network of partners who contribute
99
in diverse ways. Through these collaborations, we maintain our resilient infrastructure,
@@ -20,30 +20,6 @@ without we can't test and release new versions of Node.js.
2020

2121
<PartnersLogoList categories="infrastructure" maxLength={null} sort="name" />
2222

23-
## Security
24-
25-
The security partners help us to provide new security releases in a timely manner, ensuring
26-
properly good practices for vulnerability disclosure and remediation. Their contributions are
27-
crucial to ensure that the Node.js ecosystem remains secure and resilient against vulnerabilities.
28-
29-
<PartnersLogoList categories="security" maxLength={null} sort="name" />
30-
31-
## Releases
32-
33-
The release partners help us to provide new releases, ensuring that new features and improvements
34-
are delivered to the Node.js ecosystem in a timely manner. Their contributions are essential
35-
to the ongoing development and evolution of Node.js.
36-
37-
<PartnersLogoList categories="release" maxLength={null} sort="name" />
38-
39-
## Services
40-
41-
The service partners help us to provide a range of services that support the Node.js project.
42-
Their contributions are vital to ensuring that nodejs maintainers have access to the tools and
43-
resources they need to build and maintain this project.
44-
45-
<PartnersLogoList categories="service" maxLength={null} sort="name" />
46-
4723
## Supporters
4824

4925
Supporters are individuals and organizations that provide financial support through

apps/site/types/partners.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ export interface Partners {
1616
weight: number;
1717
}
1818

19-
export type PartnerCategory =
20-
| 'infrastructure'
21-
| 'security'
22-
| 'esp'
23-
| 'release'
24-
| 'service';
19+
export type PartnerCategory = 'infrastructure' | 'esp';
2520

2621
export interface Supporters {
2722
name: string;
Lines changed: 1 addition & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
[
2-
{
3-
"id": "RACKSPACE",
4-
"name": "Rackspace",
5-
"href": "https://www.rackspace.com",
6-
"weight": 3,
7-
"categories": ["infrastructure"]
8-
},
92
{
103
"id": "CLOUDFLARE",
114
"name": "Cloudflare",
@@ -20,41 +13,13 @@
2013
"weight": 2,
2114
"categories": ["infrastructure"]
2215
},
23-
{
24-
"id": "SENTRY",
25-
"name": "Sentry",
26-
"href": "https://sentry.io",
27-
"weight": 1,
28-
"categories": ["service"]
29-
},
30-
{
31-
"id": "CROWDIN",
32-
"name": "Crowdin",
33-
"href": "https://crowdin.com",
34-
"weight": 1,
35-
"categories": ["service"]
36-
},
3716
{
3817
"id": "HERODEVS",
3918
"name": "HeroDevs",
4019
"href": "https://herodevs.com",
4120
"weight": 3,
4221
"categories": ["security", "esp", "release"]
4322
},
44-
{
45-
"id": "NODESOURCE",
46-
"name": "NodeSource",
47-
"href": "https://nodesource.com",
48-
"weight": 2,
49-
"categories": ["security", "release"]
50-
},
51-
{
52-
"id": "DATADOG",
53-
"name": "Datadog",
54-
"href": "https://www.datadoghq.com",
55-
"weight": 2,
56-
"categories": ["security"]
57-
},
5823
{
5924
"id": "DIGITALOCEAN",
6025
"name": "DigitalOcean",
@@ -64,51 +29,9 @@
6429
},
6530
{
6631
"id": "MICROSOFT",
67-
"name": "Microsoft",
32+
"name": "Microsoft Azure",
6833
"href": "https://microsoft.com",
6934
"categories": ["infrastructure"],
7035
"weight": 2
71-
},
72-
{
73-
"id": "IBM",
74-
"name": "IBM",
75-
"href": "https://www.ibm.com",
76-
"categories": ["infrastructure", "release"],
77-
"weight": 3
78-
},
79-
{
80-
"id": "SCALEWAY",
81-
"name": "Scaleway",
82-
"href": "https://www.scaleway.com",
83-
"categories": ["infrastructure"],
84-
"weight": 2
85-
},
86-
{
87-
"id": "ARM",
88-
"name": "ARM",
89-
"href": "https://www.arm.com",
90-
"categories": ["infrastructure"],
91-
"weight": 2
92-
},
93-
{
94-
"id": "EQUINIXMETAL",
95-
"name": "Equinix Metal",
96-
"href": "https://www.equinix.com",
97-
"categories": ["infrastructure"],
98-
"weight": 2
99-
},
100-
{
101-
"id": "OPENSSF",
102-
"name": "OpenSSF",
103-
"href": "https://openssf.org/",
104-
"weight": 2,
105-
"categories": ["security"]
106-
},
107-
{
108-
"id": "VLT",
109-
"name": "Vlt",
110-
"href": "https://www.vlt.sh",
111-
"weight": 2,
112-
"categories": ["release"]
11336
}
11437
]

0 commit comments

Comments
 (0)