blog collaboration in landing
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user