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

Featured Content

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

{ roadmaps .filter(({ featured }) => featured) .map(roadmap => (

{ roadmap.title }

{ roadmap.featuredDescription || roadmap.description }

)) }
); export default FeaturedRoadmaps;