import Link from 'next/link'; import { siteConfig } from '@/lib/config'; import { getAllPostsSorted, getAllTagsWithCount } from '@/lib/posts'; export function RightSidebar() { const latest = getAllPostsSorted().slice(0, 5); const tags = getAllTagsWithCount().slice(0, 5); return ( ); }