--- import { getCollection } from 'astro:content'; import { slugify } from '../lib/slug'; const posts = await getCollection('blog', ({ data }) => !data.draft); const categories = [...new Set(posts.flatMap((p) => p.data.categories))].sort(); const telegramGroups = [ { label: 'Amatör Telsizci', href: 'https://t.me/amatortelsizci' }, { label: 'Amatör Radyocular Derneği', href: 'https://t.me/ym1ktc' }, { label: 'Çevrim Zamanı', href: 'https://t.me/cevrim_zamani' }, { label: 'ARV73 Topluluk', href: 'https://t.me/qrv73topluluk' }, ]; ---