import React, { useMemo } from "react"; import Typography from "components/typography/Typography"; import CategoryCard from "components/Cards/CategoryCard"; import { SVGMedicine, SVGAgricultural, SVGHumanitarian, SVGSocials, SVGTechnicsAndTechology, SVGFundamental, } from "components/icons"; const categories = [ { id: 1, title: "Medical", count: 5617813, icon: }, { id: 2, title: "Technics and Technology", count: 5617813, icon: , }, { id: 3, title: "Fundamental", count: 5617813, icon: }, { id: 4, title: "Humanitarian", count: 5617813, icon: }, { id: 5, title: "Argicultural", count: 5617813, icon: }, { id: 6, title: "Social", count: 5617813, icon: }, ]; export function FeaturedArticles() { const categoryCards = useMemo( () => categories.map((category) => ( )), categories ); return ( Featured articles Select the category of science you are interested in {categoryCards} ); }