Skip to content

Commit 451b1cb

Browse files
committed
chore: remove unused undraw_docusaurus_mountain.svg asset
1 parent 961423b commit 451b1cb

File tree

10 files changed

+7
-388
lines changed

10 files changed

+7
-388
lines changed

src/components/HomepageFeatures/index.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import styles from './styles.module.css';
55

66
type FeatureItem = {
77
title: string;
8-
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
8+
icon: string;
99
description: ReactNode;
1010
};
1111

1212
const FeatureList: FeatureItem[] = [
1313
{
1414
title: 'Scorecard',
15-
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
15+
icon: "img/logos/scorecard.png",
1616
description: (
1717
<>
1818
The scorecard app is a performance monitoring tool that allows users to track the comparative performance of indicators over time and against different organization units and/or levels. With easy to use colour coded outputs, the scorecard is meant to allow users to make data-driven decisions using the performance outlined on via the scorecard app’s outputs.
@@ -21,7 +21,7 @@ const FeatureList: FeatureItem[] = [
2121
},
2222
{
2323
title: 'Bottleneck Analysis (BNA)',
24-
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
24+
icon: "img/logos/bna.png",
2525
description: (
2626
<>
2727
Bottleneck analysis (BNA) is a structured analysis of the determinants of coverage for a wide range of interventions delivered through the health sector, useful to supporting targeted operational planning. It is a systematic, outcome-based approach to equitable health programming and real-time monitoring that strengthens the health system, complementing and building on what exists.
@@ -30,7 +30,7 @@ const FeatureList: FeatureItem[] = [
3030
},
3131
{
3232
title: 'Action Tracker',
33-
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
33+
icon: "img/logos/bna-action-tracker.png",
3434
description: (
3535
<>
3636
The action tracker is a management tool that helps improve effective coverage of priority interventions at district and community level, covering various intervention such as maternal, newborn, and child health (MNCH), HIV, and nutrition.
@@ -39,7 +39,7 @@ const FeatureList: FeatureItem[] = [
3939
},
4040
{
4141
title: 'Standalone Action Tracker',
42-
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
42+
icon: "img/logos/standalone-action-tracker.png",
4343
description: (
4444
<>
4545
The action tracker is a management tool that helps improve effective coverage of priority interventions at district and community level, covering various interventions such as maternal, newborn, and child health (MNCH), HIV, and nutrition.
@@ -48,11 +48,11 @@ const FeatureList: FeatureItem[] = [
4848
},
4949
];
5050

51-
function Feature({title, Svg, description}: FeatureItem) {
51+
function Feature({title, icon, description}: FeatureItem) {
5252
return (
5353
<div className={clsx('col col--4')}>
5454
<div className="text--center">
55-
<Svg className={styles.featureSvg} role="img"/>
55+
<img src={icon} className={styles.featureSvg} role="img"/>
5656
</div>
5757
<div className="text--center padding-horiz--md">
5858
<Heading as="h3">{title}</Heading>
-54.4 KB
Binary file not shown.

static/img/docusaurus.png

-5.02 KB
Binary file not shown.
12.4 KB
Loading

static/img/logos/bna.png

12.9 KB
Loading

static/img/logos/scorecard.png

7.45 KB
Loading
11.9 KB
Loading

static/img/undraw_docusaurus_mountain.svg

Lines changed: 0 additions & 171 deletions
This file was deleted.

static/img/undraw_docusaurus_react.svg

Lines changed: 0 additions & 170 deletions
This file was deleted.

static/img/undraw_docusaurus_tree.svg

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)