create component page blog item

This commit is contained in:
Ehsan
2024-07-12 16:56:38 +03:30
parent 7b825e52c0
commit 03e3cc3177
2 changed files with 21 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import BlogPage from '@/components/blog';
import Layout from '@/components/layout';
function Blog() {
return (
<Layout title='وبلاگ' name='blog'>
<BlogPage />
</Layout>
)
}
export default Blog
+9
View File
@@ -0,0 +1,9 @@
function BlogPage() {
return (
<div className="padding-responsive">
</div>
)
}
export default BlogPage