Files
mehraein-front/app/home/components/BlogsSection.tsx
T
hamid zarghami 36763aace0 home blog section
2026-07-19 15:35:37 +03:30

20 lines
489 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;