import { Plus, Home, History, Settings } from 'lucide-react' export default function Sidebar({ activeTab, onTabChange }) { const navItems = [ { id: 'create', label: 'Make an Archive Post', icon: Plus }, { id: 'feed', label: 'My Feed', icon: Home }, { id: 'history', label: 'History', icon: History }, { id: 'settings', label: 'Settings', icon: Settings } ] return ( ) }