create component page blog item
This commit is contained in:
@@ -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
|
||||
@@ -0,0 +1,9 @@
|
||||
function BlogPage() {
|
||||
return (
|
||||
<div className="padding-responsive">
|
||||
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default BlogPage
|
||||
Reference in New Issue
Block a user