feat: add src/app/blog/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 07:22:55 +00:00
parent 4d949ca0ef
commit 97e86e1ca9
1 changed files with 11 additions and 0 deletions

11
src/app/blog/page.tsx Normal file
View File

@ -0,0 +1,11 @@
'use client'
import PublicLayout from '@/components/public/PublicLayout'
import BlogListPage from '@/components/public/BlogListPage'
export default function BlogPage() {
return (
<PublicLayout>
<BlogListPage />
</PublicLayout>
)
}