()
| 90 | } |
| 91 | |
| 92 | export default function HomepageFeatures(): JSX.Element { |
| 93 | const isJapanese = useIsJapanese(); |
| 94 | return ( |
| 95 | <section className={clsx("bg-lavender text-white", styles.features)}> |
| 96 | <div className="container"> |
| 97 | <SectionHeader |
| 98 | heading={componentData.heading} |
| 99 | jaHeading={isJapanese ? componentData.jaHeading : ""} |
| 100 | subheading={componentData.subheading} |
| 101 | extraClass={`${isJapanese ? styles.headerJa : styles.header}`} |
| 102 | /> |
| 103 | <div className={clsx(styles.featuredList)}> |
| 104 | {FeatureList.map((props, idx) => ( |
| 105 | <Feature key={idx} {...props} /> |
| 106 | ))} |
| 107 | </div> |
| 108 | </div> |
| 109 | </section> |
| 110 | ); |
| 111 | } |
nothing calls this directly
no test coverage detected