mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-02-25 03:52:59 +01:00
29 lines
1009 B
JavaScript
29 lines
1009 B
JavaScript
import Link from 'next/link';
|
|
import formatDate from 'date-fns/format'
|
|
|
|
import { Author, AuthorImage, AuthorName, BlockLink, BlockMeta, BlockSubtitle, BlockTitle, PublishDate } from './style';
|
|
import { findByUsername } from 'lib/author';
|
|
|
|
const FeaturedGuide = ({ guide }) => {
|
|
const author = findByUsername(guide.author) || {};
|
|
return (
|
|
<div className="col-xl-4 col-lg-6 col-md-6 col-sm-12 col-12 grid-item-container">
|
|
<Link href={ guide.url } passHref>
|
|
<BlockLink>
|
|
<BlockTitle>{ guide.title }</BlockTitle>
|
|
<BlockSubtitle>{ guide.featuredDescription || guide.description }</BlockSubtitle>
|
|
<BlockMeta>
|
|
<Author>
|
|
<AuthorImage src={ author.picture } />
|
|
<AuthorName>{ author.name }</AuthorName>
|
|
</Author>
|
|
<PublishDate>{ formatDate(new Date(guide.createdAt), 'MMMM d, yyyy') }</PublishDate>
|
|
</BlockMeta>
|
|
</BlockLink>
|
|
</Link>
|
|
</div>
|
|
)
|
|
};
|
|
|
|
export default FeaturedGuide;
|