Skip to content

Commit 62e5335

Browse files
author
Siva Guruvareddiar
committed
Add links to feature list
1 parent af7a374 commit 62e5335

File tree

1 file changed

+13
-3
lines changed
  • docusaurus/src/components/HomepageFeatures

1 file changed

+13
-3
lines changed

docusaurus/src/components/HomepageFeatures/index.js

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
import React from 'react';
12
import clsx from 'clsx';
3+
import Link from '@docusaurus/Link';
24
import Heading from '@theme/Heading';
35
import styles from './styles.module.css';
46

@@ -11,6 +13,7 @@ const FeatureList = [
1113
Guides were designed from the ground up to be easily followed and implemented, getting your cloud monitoring up and running quickly.
1214
</>
1315
),
16+
link: '/docs/guides',
1417
},
1518
{
1619
title: 'Signals',
@@ -20,6 +23,7 @@ const FeatureList = [
2023
Gain comprehensive insights into your AWS environment through key metrics, logs, and performance indicators.
2124
</>
2225
),
26+
link: '/docs/signals/alarms',
2327
},
2428
{
2529
title: 'Tools',
@@ -29,6 +33,7 @@ const FeatureList = [
2933
Streamline your AWS monitoring with purpose-built solutions for efficient data collection, analysis, and visualization.
3034
</>
3135
),
36+
link: '/docs/tools/observability_accelerator',
3237
},
3338
{
3439
title: 'Recipes',
@@ -38,6 +43,7 @@ const FeatureList = [
3843
Implement proven AWS observability patterns to quickly solve common monitoring and troubleshooting challenges.
3944
</>
4045
),
46+
link: '/docs/recipes',
4147
},
4248
{
4349
title: 'FAQs',
@@ -47,6 +53,7 @@ const FeatureList = [
4753
Find quick answers to common AWS observability questions, clarifying key concepts and best practices.
4854
</>
4955
),
56+
link: '/docs/faq/adot',
5057
},
5158
{
5259
title: 'Patterns',
@@ -56,14 +63,17 @@ const FeatureList = [
5663
Learn step-by-step AWS observability implementation through comprehensive, easy-to-follow instructional resources.
5764
</>
5865
),
66+
link: '/docs/patterns/multiaccount',
5967
},
6068
];
6169

62-
function Feature({Svg, title, description}) {
70+
function Feature({Svg, title, description, link}) {
6371
return (
6472
<div className={clsx('col col--4')}>
6573
<div className="text--center">
66-
<Svg className={styles.featureSvg} role="img" />
74+
<Link to={link}>
75+
<Svg className={styles.featureSvg} role="img" />
76+
</Link>
6777
</div>
6878
<div className="text--center padding-horiz--md">
6979
<Heading as="h3">{title}</Heading>
@@ -85,4 +95,4 @@ export default function HomepageFeatures() {
8595
</div>
8696
</section>
8797
);
88-
}
98+
}

0 commit comments

Comments
 (0)