Skip to content

Commit f2c44d7

Browse files
committed
add value proposition to site
1 parent 6cc82a4 commit f2c44d7

10 files changed

Lines changed: 20 additions & 48 deletions

src/components/HomepageFeatures/index.js

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,50 +2,49 @@ import clsx from "clsx";
22
import Heading from "@theme/Heading";
33
import styles from "./styles.module.css";
44

5-
// import rev from "@site/static/img/chkware_revolutionize_api_test.svg"
6-
// import acc from "@site/static/img/chkware_accelerate_api_dev.svg"
7-
// import def from "@site/static/img/chkware_define_expectations.svg"
8-
95
const FeatureList = [
106
{
11-
title: "Revolutionize Your API Testing – Achieve Up to 4x Faster Automation!",
12-
Svg: require("@site/static/img/chkware_revolutionize_api_test.svg").default,
13-
// Image: rev,
7+
title:
8+
"Revolutionize Your API Testing – Achieve Up to 4x Faster Automation!",
9+
imageData: require("@site/static/img/chkware_revolutionize_api_test.png")
10+
.default,
1411
description: (
1512
<>
16-
Boost efficiency and deliver results with unmatched speed and reliability.
13+
Boost efficiency and deliver results with unmatched speed and
14+
reliability.
1715
</>
1816
),
1917
},
2018
{
21-
title: "Accelerate Your API Development – Launch Projects Faster Than Ever!",
22-
Svg: require("@site/static/img/chkware_accelerate_api_dev.svg").default,
23-
// Image: acc,
19+
title:
20+
"Accelerate Your API Development – Launch Projects Faster Than Ever!",
21+
imageData: require("@site/static/img/chkware_accelerate_api_dev.png")
22+
.default,
2423
description: (
2524
<>
26-
Streamline your workflow with tools designed for speedy delivery and precision in mind.
25+
Streamline your workflow with tools designed for speedy delivery and
26+
precision in mind.
2727
</>
2828
),
2929
},
3030
{
3131
title: "Define Your Expectations – Let Us Handle the Details!",
32-
Svg: require("@site/static/img/chkware_define_expectations.svg").default,
33-
// Image: def,
32+
imageData: require("@site/static/img/chkware_define_expectations.png")
33+
.default,
3434
description: (
3535
<>
36-
Simplify API testing with low-code automation that delivers accuracy and robustness.
36+
Simplify API testing with low-code automation that delivers accuracy and
37+
robustness.
3738
</>
3839
),
3940
},
4041
];
4142

42-
function Feature({ Svg, title, description }) {
43-
// function Feature({ Image, title, description }) {
43+
function Feature({ imageData, title, description }) {
4444
return (
4545
<div className={clsx("col col--4")}>
4646
<div className="text--center">
47-
<Svg className={styles.featureSvg} role="img" />
48-
{/* <Image className={styles.featureSvg} /> */}
47+
<img src={imageData} className={styles.featureSvg} />
4948
</div>
5049
<div className="text--center padding-horiz--md">
5150
<Heading as="h3">{title}</Heading>

src/components/HomepageFeatures/styles.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
}
77

88
.featureSvg {
9-
height: 200px;
10-
width: 200px;
9+
height: auto;
10+
width: 300px;
1111
}
41.3 KB
Loading

static/img/chkware_accelerate_api_dev.svg

Lines changed: 0 additions & 9 deletions
This file was deleted.
29.6 KB
Loading

static/img/chkware_define_expectations.svg

Lines changed: 0 additions & 9 deletions
This file was deleted.
34 KB
Loading

static/img/chkware_revolutionize_api_test.svg

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

static/img/docusaurus.png

-5.02 KB
Binary file not shown.

static/img/favicon.ico

-3.54 KB
Binary file not shown.

0 commit comments

Comments
 (0)