"use client"; import { Badge, Card, Typography } from "poyraz-ui/atoms"; import { ArticleCard, NewsCard, Pagination, PaginationContent, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, } from "poyraz-ui/molecules"; import { BLOG_ARTICLES, BLOG_CATEGORIES, BLOG_NEWS, RECENT_COMMENTS, } from "@/data/blog"; export function BlogContent() { return (
{BLOG_NEWS.map((post) => ( ))}
Kategoriler
{BLOG_CATEGORIES.map((category, index) => ( {category} ))}
Son yorumlar
{RECENT_COMMENTS.map((comment) => ( {comment.author} {comment.text} {comment.date} ))}
{BLOG_ARTICLES.map((post) => ( ))}
1 2 3
); }