-
Notifications
You must be signed in to change notification settings - Fork 320
Expand file tree
/
Copy pathindex.tsx
More file actions
67 lines (63 loc) · 1.78 KB
/
Copy pathindex.tsx
File metadata and controls
67 lines (63 loc) · 1.78 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import clsx from 'clsx';
import Heading from '@theme/Heading';
import styles from './styles.module.css';
type FeatureItem = {
title: string;
image: string;
description: React.ReactElement;
};
const FeatureList: FeatureItem[] = [
{
title: 'Built together. Built in the open.',
image: require('@site/static/img/1.png').default,
description: (
<>
Envoy AI Gateway is the result of the community coming together to address GenAI traffic handling needs using Envoy.
</>
),
},
{
title: 'v0.7 Release now available',
image: require('@site/static/img/3.png').default,
description: (
<>
The v0.7 Release of Envoy AI Gateway is now available. See the <a href="/release-notes/v0.7">release notes</a> for more information.
</>
),
},
{
title: 'Get involved in the community',
image: require('@site/static/img/2.png').default,
description: (
<>
Join our community on Slack, join the conversation on GitHub, and attend our Monday community meetings. See links in footer.
</>
),
},
];
function Feature({title, image, description}: FeatureItem) {
return (
<div className={clsx('col col--4')}>
<div className="text--center">
<img src={image} className={styles.featureSvg} alt={title} />
</div>
<div className="text--center padding-horiz--md">
<Heading as="h3">{title}</Heading>
<p>{description}</p>
</div>
</div>
);
}
export default function HomepageFeatures(): React.ReactElement {
return (
<section className={styles.features}>
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}