import Link from 'next/link'; import { plazaPath } from '@/lib/site'; export function FeedTabs({ sort, categorySlug, }: { sort: 'hot' | 'new'; categorySlug?: string; }) { const base = categorySlug ? plazaPath(`cat/${categorySlug}`) : plazaPath(); return (