import React from "react"; import blogFeaturedImage2 from "../../../assets/images/blog-featured-image2.jpg"; import blogAuthorImg from "../../../assets/images/blog-author.png"; import commentIcon from "../../../assets/icons/black-comment-icon.svg"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import {} from "@fortawesome/free-brands-svg-icons"; import { faComment } from "@fortawesome/free-solid-svg-icons"; const BlogDesign3 = ({ blogSubTitle, blogAuthor, blogComments, blogTitleColor, blogCommentAuthorTextColor, }) => { return (
{/* title holder */}

طراحی بلاگ 3

آدرس: blogs/design3

{/* blog UI Design3 */}
{/* */}

آیا مواد غذای پر فیبر و مفید هستند؟

{blogSubTitle && (

نظر شما چیه

)}
{blogAuthor && (

حامد دژبانی نسب

)} {blogComments && (

زمان مطالعه 30 دقیقه

26
{" "}
)}
); }; export default BlogDesign3; //different text colors i used: // text-darkBlueTextColor2 // text-productTitle // text-lightGrayTextColor BlogDesign3.defaultProps = { blogTitleColor: "text-lightGrayTextColor", blogCommentAuthorTextColor: "text-lightGrayTextColor", blogSubTitle: true, blogAuthor: true, blogComments: true, };