home blog section

This commit is contained in:
hamid zarghami
2026-07-19 15:35:37 +03:30
parent 35beea16bd
commit 36763aace0
4 changed files with 42 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import GridWrapper from "@/app/components/GridWrapper";
import { FC } from "react";
import BlogCard from "./BlogCard";
const BlogsSection: FC = () => {
return (
<div className="mt-[120px] px-[120px]">
<div className="text-2xl font-bold">مقالات ما</div>
<GridWrapper desktop={4} mobile={1} className="mt-12">
<BlogCard />
<BlogCard />
<BlogCard />
<BlogCard />
</GridWrapper>
</div>
);
};
export default BlogsSection;