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