-
- {features.map((feature, stableIdx) => (
-
- {feature.description}
-
- ))}
-
-
-
-
- {features[activeFeature].content}
-
-
-
+
+
+ {features.map((feature, stableIdx) => (
+
+ {feature.description}
+
+ ))}
+
+
+
+
+ {features[activeFeature].content}
+
+
-
+
);
};
const FeaturesCarousel = ({ features, heading }) => {
return (
-
-
-
{heading ? heading : "Features"}
-
- {features.map((feature, stableIdx) => (
-
-
- {feature.description}
-
-
- {features[stableIdx].content}
-
+
+
{heading ? heading : "Features"}
+
+ {features.map((feature, stableIdx) => (
+
+
+ {feature.description}
+
+
+ {features[stableIdx].content}
- ))}
-
-
-
+
+ ))}
+
+
);
};
@@ -98,7 +97,7 @@ const Feature = ({ children, title, active, onClick, learnMoreLink, id, Element
? learnMoreLink.startsWith("/")
? (
- Explore
+ Explore
)
: (
@@ -108,7 +107,7 @@ const Feature = ({ children, title, active, onClick, learnMoreLink, id, Element
target="_blank"
rel="noopener noreferrer"
>
- Explore
+ Explore
)
: null} {/* No link rendered if learnMoreLink is empty */}