--- import { getCollection } from "astro:content"; import { Icon } from "astro-icon/components"; const collection = await getCollection("skills"); const skills = await Promise.all( collection.map(async (item) => { const { Content } = await item.render(); return { ...item, Content }; }), ); ---
{entry.data.title}