Init(Coore): add to repo

This commit is contained in:
2026-04-24 16:20:36 +03:30
commit 893cdcb89c
91 changed files with 13751 additions and 0 deletions

15
components/Blog.js Executable file
View 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>
)
}