import { HomeIcon, FireIcon, UserGroupIcon, TrendingUpIcon, } from '@heroicons/react/outline' import clsx from 'clsx' const navigation = [ { name: 'Home', href: '#', icon: HomeIcon, current: true }, { name: 'Popular', href: '#', icon: FireIcon, current: false }, { name: 'Communities', href: '#', icon: UserGroupIcon, current: false }, { name: 'Trending', href: '#', icon: TrendingUpIcon, current: false }, ] const communities = [ { name: 'Movies', href: '#' }, { name: 'Food', href: '#' }, { name: 'Sports', href: '#' }, { name: 'Animals', href: '#' }, { name: 'Science', href: '#' }, { name: 'Dinosaurs', href: '#' }, { name: 'Talents', href: '#' }, { name: 'Gaming', href: '#' }, ] export default function Sidebar() { return ( ) }