MCPcopy Create free account
hub / github.com/IABTechLab/uid2docs / HomepageFeatures

Function HomepageFeatures

src/components/HomepageFeatures/index.tsx:92–111  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

90}
91
92export 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}

Callers

nothing calls this directly

Calls 1

useIsJapaneseFunction · 0.90

Tested by

no test coverage detected