import Link from 'next/link'; import { FeaturedContentWrap } from './style'; import guides from 'data/guides'; import FeaturedGuide from 'components/featured-guide'; const FeaturedGuides = () => (

Guides mostly visited by the community  View all Guides →

{ guides .filter(({ featured }) => featured) .map(guide => ( )) }
); export default FeaturedGuides;