feat: add BlogPage and BlogContent components with blog data integration

This commit is contained in:
Poyraz Avsever
2026-03-10 11:40:17 +03:00
parent 529ad01e51
commit e2b9f24d50
4 changed files with 316 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
import { BlogContent } from "@/components/blog-content";
export default function BlogPage() {
return <BlogContent />;
}