qudoco-fe/components/landing-page/content-popular.tsx

21 lines
618 B
TypeScript
Raw Normal View History

import type { PublicArticle } from "@/lib/articles-public";
import type { NewsServicesTab } from "@/constants/news-services";
import NewsServicesArticleSection from "@/components/landing-page/news-services-article-section";
2026-02-17 09:05:22 +00:00
type Props = {
articlesByTab: Record<NewsServicesTab, PublicArticle[]>;
};
2026-02-17 09:05:22 +00:00
export default function ContentPopular({ articlesByTab }: Props) {
2026-02-17 09:05:22 +00:00
return (
<NewsServicesArticleSection
id="konten-terpopuler"
title="Konten Terpopuler"
articlesByTab={articlesByTab}
showViews
exploreHref="#konten-terbaru"
exploreLabel="Lihat konten terbaru"
/>
2026-02-17 09:05:22 +00:00
);
}