'use client'; import clsx from 'clsx'; import { Icon, Link } from '@theme/components'; import { usePathname } from 'next/navigation'; import { ROUTES } from 'routes'; export default function AccountBackButton() { const pathname = usePathname(); const accountMenuRegex = new RegExp(`^${ROUTES.ACCOUNT}/?$`).test(pathname); return (
); }