import Link from 'next/link'; import { FeaturedContentWrap } from './style'; import roadmaps from 'data/roadmaps'; import RoadmapBlock from 'components/roadmap-block'; const FeaturedRoadmaps = () => (

Featured Content

List of roadmaps mostly visited by the community  View all Roadmaps →

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