@@ -2,50 +2,49 @@ import clsx from "clsx";
22import Heading from "@theme/Heading" ;
33import 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-
95const 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 >
0 commit comments