import { FeaturedContentWrap } from './style'; import roadmaps from 'content/roadmaps'; import FeaturedRoadmap from 'components/featured-roadmap'; const FeaturedRoadmaps = () => (

Roadmaps mostly visited by the community  View all Roadmaps →

{ roadmaps .filter(({ featured }) => featured) .map(roadmap => ( )) }
); export default FeaturedRoadmaps;