diff --git a/src/components/ShowNewButton/index.tsx b/src/components/ShowNewButton/index.tsx
deleted file mode 100644
index 7b6aabe2..00000000
--- a/src/components/ShowNewButton/index.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-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 (
-
800 ? '-translate-y-10' : ''
- )}
- >
-
-
- )
-}