fix: apply seo agent improvements to src/components/public/BlogPageClient.tsx
This commit is contained in:
parent
03f402a4cc
commit
4b96de56d4
|
|
@ -0,0 +1,13 @@
|
|||
'use client'
|
||||
import PublicLayout from '@/components/public/PublicLayout'
|
||||
import BlogListPage from '@/components/public/BlogListPage'
|
||||
|
||||
export default function BlogPageClient() {
|
||||
return (
|
||||
<PublicLayout>
|
||||
<main id="main-content" aria-label="Blog posts list">
|
||||
<BlogListPage />
|
||||
</main>
|
||||
</PublicLayout>
|
||||
)
|
||||
}
|
||||
Loading…
Reference in New Issue