import type { PublicArticle } from "@/lib/articles-public"; import type { NewsServicesTab } from "@/constants/news-services"; import NewsServicesArticleSection from "@/components/landing-page/news-services-article-section"; type Props = { articlesByTab: Record; }; export default function ContentPopular({ articlesByTab }: Props) { return ( ); }