'use client' import { RiPlanetFill, RiPlanetLine, } from '@remixicon/react' import Link from 'next/link' import { useSelectedLayoutSegment } from 'next/navigation' import { useTranslation } from 'react-i18next' import { cn } from '@/utils/classnames' type ExploreNavProps = { className?: string } const ExploreNav = ({ className, }: ExploreNavProps) => { const { t } = useTranslation() const selectedSegment = useSelectedLayoutSegment() const activated = selectedSegment === 'explore' return ( { activated ? : }
{t('menus.explore', { ns: 'common' })}
) } export default ExploreNav