'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; const TABS = [ { href: '/feed/all', label: '전체' }, { href: '/feed/foryou', label: '추천' }, { href: '/feed/following', label: '팔로잉' } ] as const; export default function FeedTabs() { const pathname = usePathname(); return ( ); }