-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathenvironments.js
More file actions
34 lines (33 loc) · 1.49 KB
/
Copy pathenvironments.js
File metadata and controls
34 lines (33 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import React from 'react';
import Layout from '@theme/Layout';
import EcosystemGrid from '@site/src/components/EcosystemGrid';
import styles from '@site/src/components/HomepageContent/styles.module.css';
export default function Environments() {
return (
<Layout
title='Environments'
description='Licenses, package ecosystems, programming languages, operating systems, vulnerability sources, and other environments supported by AboutCode tools. and data'
>
<main>
<section className={styles.sectionContainer}>
<div
className={styles.sectionHeader}
style={{ marginBottom: '15px', marginTop: '30px' }}
>
<h1>Environments</h1>
</div>
<div className={styles.sectionIntro}>
<p>AboutCode tools support a large number of licenses,
package ecosystems, programming languages, operating
systems, binary and archive formats, and vulnerability
data sources, all identified using{' '}
<a href="https://packageurl.org">Package-URL (PURL)</a> or
SPDX license expressions.</p>
</div>
<EcosystemGrid />
</section>
<div style={{ marginBottom: '50px' }}></div>
</main>
</Layout>
);
}