diff --git a/app/home/Home.tsx b/app/home/Home.tsx index 2f1ac66..e596515 100644 --- a/app/home/Home.tsx +++ b/app/home/Home.tsx @@ -1,5 +1,6 @@ import BannerSection from "./components/BannerSection"; import BestSellerCategories from "./components/BestSellerCategories"; +import BlogsSection from "./components/BlogsSection"; import CategorySection from "./components/CategorySection"; import OrderByApplication from "./components/OrderByApplication"; import OrderRegistrationSteps from "./components/OrderRegistrationSteps"; @@ -16,6 +17,7 @@ const Home = () => { + ); }; diff --git a/app/home/components/BlogCard.tsx b/app/home/components/BlogCard.tsx new file mode 100644 index 0000000..3f95d28 --- /dev/null +++ b/app/home/components/BlogCard.tsx @@ -0,0 +1,21 @@ +import BlogImage from "@/assets/images/blog-image.png"; +import { ArrowLeft } from "iconsax-reactjs"; +import Image from "next/image"; +import { FC } from "react"; + +const BlogCard: FC = () => { + return ( +
+ Blog Image +
۰۴ تیر ۱۴۰۵
+
راهنمای انتخاب بنر مناسب
+

با انواع بنر، کاربردها و نکات مهم انتخاب آشنا شوید تا بهترین گزینه را متناسب با نیاز و بودجه خود انتخاب کنید.

+
+
مشاهده
+ +
+
+ ); +}; + +export default BlogCard; diff --git a/app/home/components/BlogsSection.tsx b/app/home/components/BlogsSection.tsx new file mode 100644 index 0000000..f40f9f3 --- /dev/null +++ b/app/home/components/BlogsSection.tsx @@ -0,0 +1,19 @@ +import GridWrapper from "@/app/components/GridWrapper"; +import { FC } from "react"; +import BlogCard from "./BlogCard"; + +const BlogsSection: FC = () => { + return ( +
+
مقالات ما
+ + + + + + +
+ ); +}; + +export default BlogsSection; diff --git a/assets/images/blog-image.png b/assets/images/blog-image.png new file mode 100644 index 0000000..06f2662 Binary files /dev/null and b/assets/images/blog-image.png differ