import { Button } from '@/components/ui/button' import { cn } from '@/lib/utils' import { useDeepBrowsing } from '@/providers/DeepBrowsingProvider' import { useTranslation } from 'react-i18next' export function ShowNewButton({ onClick }: { onClick: () => void }) { const { t } = useTranslation() const { deepBrowsing, lastScrollTop } = useDeepBrowsing() return (