Init(Coore): add to repo
This commit is contained in:
15
components/Blog.js
Executable file
15
components/Blog.js
Executable file
@@ -0,0 +1,15 @@
|
||||
import BG from '../public/BG.png'
|
||||
import BlogCard from '@/components/BlogCard'
|
||||
|
||||
export default function Blog() {
|
||||
return(
|
||||
<div className="flex flex-col items-center w-full rounded-3xl" >
|
||||
<span className="text-4xl p-8 text-white">آخرین مطالب بلاگ</span>
|
||||
<div className="w-full grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||
<BlogCard image={BG} />
|
||||
<BlogCard image={BG} />
|
||||
<BlogCard image={BG} />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user