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

Guides mostly visited by the community  View all Guides →

{ getFeaturedGuides() .map(guide => ( )) }
); export default FeaturedGuides;