You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.2 KiB
66 lines
2.2 KiB
import React from "react"; |
|
import CommentIcon from "../../MiniComponents/CommentIcon"; |
|
|
|
const BlogDesign5 = ({ |
|
blogTitle, |
|
blogExcerpt, |
|
featuredImage, |
|
blogAuthor, |
|
blogAuthorImg, |
|
blogComments, |
|
}) => { |
|
return ( |
|
<div className="flex items-strech justify-around p-4 rounded-md shadow-md bg-white"> |
|
<img src={featuredImage} alt="blogImage" /> |
|
<div className="flex-1 flex flex-col justify-between mr-4 py-2"> |
|
<div className="flex flex-col"> |
|
{blogTitle && ( |
|
<h2 className="text-base text-justify text-[#646464] font-sansbold leading-6"> |
|
{blogTitle} |
|
</h2> |
|
)} |
|
{blogExcerpt && ( |
|
<p className="mt-4 text-justify text-sm text-[#646464] leading-6"> |
|
{blogExcerpt} |
|
</p> |
|
)} |
|
</div> |
|
<div className="w-full flex item-center justify-between mt-2"> |
|
{blogAuthor && ( |
|
<div className="flex items-center"> |
|
<img src={blogAuthorImg} alt="author" className="w-8" /> |
|
<p className="mr-2 text-sm text-[#818181]">{blogAuthor}</p> |
|
</div> |
|
)} |
|
{blogComments && ( |
|
<div className="flex items-center"> |
|
<p className="ml-2 text-sm text-[#818181]">{blogComments}</p> |
|
<CommentIcon |
|
commentClassName="w-7" |
|
commentNum={"26"} |
|
className="w-5 h-5 bg-[#818181] text-white text-[10px] font-sansbold absolute top-0 right-0 transform translate-x-1 -translate-y-2" |
|
/> |
|
</div> |
|
)} |
|
</div> |
|
</div> |
|
</div> |
|
); |
|
}; |
|
|
|
export default BlogDesign5; |
|
|
|
BlogDesign5.defaultProps = { |
|
blogTitle: `آیا مواد غذای پر فیبر و مفید هستند؟`, |
|
blogExcerpt: `در این قسمت یک توضیح بسیار کوتاه یا عادی در مورد ارور نوشته خواهد |
|
شد. طراح سعی می کند تا این متن را بیشتر از خد انتظار بلند کند تا |
|
دیگران متوجه شوند. |
|
`, |
|
|
|
featuredImage: "images/blog-featured-image.jpg", |
|
|
|
blogAuthor: `حامد دژبانی نسب`, |
|
blogAuthorImg: "images/blog-author.png", |
|
|
|
blogComments: `زمان مطالعه 30 دقیقه`, |
|
};
|
|
|