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.

68 lines
2.5 KiB

3 years ago
import React from "react";
3 years ago
import blogImage from "../../../assets/images/blog-featured-image.jpg";
import blogAuthorImg from "../../../assets/images/blog-author.png";
import commentIcon from "../../../assets/icons/black-comment-icon.svg";
3 years ago
const BlogDesign4 = () => {
3 years ago
return (
3 years ago
<section className="w-4/12 mx-auto p-4 bg-white rounded-md shadow-md my-20 mb-8">
3 years ago
{/* title holder */}
<div className="flex items-center justify-between mb-6">
<h2 className="text-black bg-pink-200 p-2 rounded text-base">
طراحی بلاگ 4
</h2>
</div>
<div className="mb-6">
<p className="leading-10">
آدرس:
<span className="bg-blue-400 text-white rounded shadow-sm px-2 py-1 mx-2">
blogs/design4
</span>
</p>
</div>
{/* blog UI Design4 */}
3 years ago
<div className="flex items-center justify-between relative py-2 px-4 rounded-xl border border-gray-300">
3 years ago
<img
src={blogImage}
alt=""
className="h-full transform translate-x-1/3"
/>
<div className="w-full transform translate-x-10">
3 years ago
<h2 className="text-base text-grayTextColor">
3 years ago
آیا مواد غذای پر فیبر و مفید هستند؟
</h2>
{/* {blogExcerpt && ( */}
3 years ago
<p className="text-sm text-justify leading-6 my-3 text-grayTextColor">
3 years ago
در این قسمت یک توضیح بسیار کوتاه یا عادی در مورد ارور نوشته خواهد
شد. طراح سعی می کند تا این متن را بیشتر از خد انتظار بلند کند تا
دیگران متوجه شوند.
</p>
{/* // )} */}
<div className=" flex item-center justify-between mt-5">
{/* {blogAuthor && ( */}
<div className=" flex items-center">
3 years ago
<img src={blogAuthorImg} alt="" className="w-7 h-7" />
<p className="text-xs text-lightGrayTextColor font-light mr-2">
3 years ago
حامد دژبانی نسب
</p>
</div>
{/* // )} */}
{/* {blogComments && ( */}
<div className=" flex items-center">
3 years ago
<p className="text-xs text-lightGrayTextColor font-light ml-2">
3 years ago
زمان مطالعه 30 دقیقه
</p>
3 years ago
<img src={commentIcon} alt="" className="w-7 h-7" />
3 years ago
</div>
{/* // )} */}
</div>
</div>
</div>
</section>
);
3 years ago
};
export default BlogDesign4;