blog collaboration in landing

This commit is contained in:
hamid zarghami
2025-03-26 23:47:51 +03:30
parent 0ac093ecd9
commit 2a76161a2f
9 changed files with 175 additions and 16 deletions
+21
View File
@@ -0,0 +1,21 @@
import BlogItem from '@/components/BlogItem'
import SectionHeader from '@/components/SectionHeader'
import { FC } from 'react'
const Blog: FC = () => {
return (
<div className='mt-24 max-w-maxWidth mx-auto'>
<SectionHeader
title='بلاگ داناک'
/>
<div className='flex gap-8 mt-16 items-center'>
<BlogItem />
<BlogItem />
<BlogItem />
</div>
</div>
)
}
export default Blog